Home
last modified time | relevance | path

Searched refs:input (Results 1 – 25 of 493) sorted by path

12345678910>>...20

/illumos-gate/exception_lists/
H A Dcopyright84 usr/src/cmd/localedef/data/manual-input.UTF-8
585 # Various bits from the mdb test suite that represent literal input to
/illumos-gate/usr/src/boot/common/
H A Dhelp.common289 The command prompt is displayed when the loader is waiting for input.
334 # Tread DRead input from the terminal
338 The read command reads a line of input from the terminal. If the
339 -t argument is specified, it will return nothing if no input has been
343 If -p is specified, <prompt> is printed before reading input. No
H A Dinterp.c97 char *input = NULL; in interact() local
123 while ((input = linenoise(prompt())) != NULL) { in interact()
125 bf_run(input); in interact()
126 linenoiseHistoryAdd(input); in interact()
127 free(input); in interact()
203 char *cp, input[256]; /* big enough? */ in include() local
216 while (fgetstr(input, sizeof(input), fd) >= 0) { in include()
218 cp = input; in include()
/illumos-gate/usr/src/boot/forth/
H A Dcheck-password.4th41 create readval readmax allot \ input obtained (up to readmax characters)
42 variable readlen \ input length
59 \ Check key pressed (see loader(8)) and input limit
94 : read ( c-addr/u -- ) \ Expects string prompt as stack input
116 0 readlen ! \ Reset input to NULL
118 readlen @ 1 - dup readlen ! \ Decrement input length
H A Dmenusets.4th326 \ adjust input to be both positive and no-higher than 65535
332 \ methodology (referencing the original numeric stack-input), or if-
354 \ string [portion] representing the original numeric input.
358 \ truncate to original numeric stack-input
364 \ variables or we have a string representing the numeric stack-input
367 \ For example, if the stack-input is 1 and menuset_name1 is NOT set
386 \ represents the value of $menuset_name1 (given 1 as stack-input):
H A Dsupport.4th579 \ classifiers for various character classes in the input line
624 \ manipulation of input line
/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/
H A Dsha256.c232 Encode64(uint8_t *output, uint64_t *input, size_t len) in Encode64() argument
236 output[j] = (input[i] >> 56) & 0xff; in Encode64()
237 output[j + 1] = (input[i] >> 48) & 0xff; in Encode64()
238 output[j + 2] = (input[i] >> 40) & 0xff; in Encode64()
239 output[j + 3] = (input[i] >> 32) & 0xff; in Encode64()
240 output[j + 4] = (input[i] >> 24) & 0xff; in Encode64()
241 output[j + 5] = (input[i] >> 16) & 0xff; in Encode64()
242 output[j + 6] = (input[i] >> 8) & 0xff; in Encode64()
243 output[j + 7] = input[i] & 0xff; in Encode64()
/illumos-gate/usr/src/cmd/abi/appcert/etc/
H A Detc.warn.in82 WARNING:libXinput:gettext("calls obsolete input library libXinput.so.0"):libXinput.so.0|*|*DIRECT*:
/illumos-gate/usr/src/cmd/abi/spectrans/spec2trace/
H A Dparseproto.y632 static char *input = NULL; /* current place in the input stream */ variable
837 if ((c = *input) == '\0') in getch()
840 input++; in getch()
849 *(--input) = c; in ungetch()
1991 input = str; in decl_Parse()
/illumos-gate/usr/src/cmd/acpi/iasl/
H A Daslsupport.l221 while ((c = input()) != '\n' && c != EOF) in AslDoLineDirective()
595 while (((c = input ()) != '*') && (c != EOF)) in AslDoComment()
632 if (((c1 = input ()) != '/') && (c1 != EOF)) in AslDoComment()
714 while (((c = input ()) != '\n') && (c != EOF)) in AslDoCommentType2()
786 while ((StringChar = input()) != EOF) in AslDoStringLiteral()
H A Dprparser.l294 while (((c = input ()) != '*') && (c != EOF)) in PrDoCommentType1()
302 if (((c = input ()) != '/') && (c != EOF)) in PrDoCommentType1()
335 while (((c = input ()) != '\n') && (c != EOF)) in PrDoCommentType2()
/illumos-gate/usr/src/cmd/ast/libast/amd64/FEATURE/
H A Dsignal175 "Stopped (tty input)",
/illumos-gate/usr/src/cmd/ast/libast/i386/FEATURE/
H A Dsignal175 "Stopped (tty input)",
/illumos-gate/usr/src/cmd/ast/libast/sparc/FEATURE/
H A Dsignal175 "Stopped (tty input)",
/illumos-gate/usr/src/cmd/ast/libast/sparcv9/FEATURE/
H A Dsignal175 "Stopped (tty input)",
/illumos-gate/usr/src/cmd/ast/libshell/common/tests/
H A Dsun_solaris_builtin_tail.sh149 input=$'1\n2\n3\n4'
158 input=$'1\n2\n3\n4'
167 input=$'1\n2\n3\n4'
176 input=$'1\n2\n3\n4'
186 input=$'1\n2\n3\n4'
195 input=$'1\n2\n3\n4'
204 input=$'1\n2\n3\n4'
213 input=$'1\n2\n3\n4'
222 input=$'1\n2\n3\n4'
231 input=$'1\n2\n3\n4'
[all …]
/illumos-gate/usr/src/cmd/audio/include/
H A DAudioLib.h71 Audio* input); // input data stream
/illumos-gate/usr/src/cmd/audio/utilities/
H A DAudioLib.cc73 Audio* input) // input data stream in Audio_WriteOutputFile() argument
90 err = AudioCopy(input, outf); in Audio_WriteOutputFile()
/illumos-gate/usr/src/cmd/auditd/
H A Ddoorway.c108 static void input(void *, void *, int, door_desc_t *, int);
457 doorfd = door_create((void(*)())input, 0, in auditd_thread_init()
1125 input(void *cookie, void *argp, int arg_size, door_desc_t *dp, in input() function
/illumos-gate/usr/src/cmd/awk/
H A DDIVERGENCES2 - We allow an unlimited number of input program files
H A Dawk.h316 extern int input(void);
391 #ifndef input
392 extern int input(void);
H A Dlex.c97 int c = input(); in peek()
110 c = input(); in gettok()
221 (void) input(); in yylex()
224 (void) input(); in yylex()
233 (void) input(); in yylex()
239 (void) input(); in yylex()
245 (void) input(); in yylex()
249 (void) input(); in yylex()
259 (void) input(); in yylex()
268 (void) input(); in yylex()
[all …]
H A Dlib.c697 while ((c = input()) != EOF && c != '\0') in bracecheck()
806 while ((c = input()) != '\n' && c != '\0' && c != EOF) { in eprint()
/illumos-gate/usr/src/cmd/backup/restore/
H A Dinteractive.c311 #define rawname input /* save space by reusing input buffer */
358 (void) fgets(input, sizeof (input), terminal); in getcmd()
359 } while (!feof(terminal) && input[0] == '\n'); in getcmd()
365 for (cp = &input[strlen(input) - 2]; in getcmd()
366 cp >= &input[0] && isspace((uchar_t)*cp); in getcmd()
372 if ((strlen(input) + 2) > MAXCOMPLEXLEN) { in getcmd()
380 if (cp == &input[0]) in getcmd()
386 cp = copynext(input, cmd, cmdsiz); in getcmd()
445 copynext(char *input, char *output, size_t outsize) in copynext() argument
921 if (*input == '\0') in setpagercmd()
[all …]
/illumos-gate/usr/src/cmd/bhyve/
H A Drfb.c1270 bool input; in rfb_client_tx_thread() local
1274 input = atomic_exchange(&c->rc_input_detected, false); in rfb_client_tx_thread()
1279 if ((++counter & 1) != 0 || input) { in rfb_client_tx_thread()

12345678910>>...20