Searched defs:input (Results 101 - 125 of 165) sorted by relevance

1234567

/illumos-gate/usr/src/cmd/diff/
H A Ddiff.h151 FILE *input[2]; /* two input files */ variable
183 char tempfile[2][16]; /* used when comparing against std input */
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_tab.c128 tab_count_args(const char *input, uint_t *flags) argument
133 index = input;
167 tab_copy_args(char *input, int argc, mdb_arg_t *argv) argument
172 index = input;
288 * Match against global symbols if the input is not a dcmd
/illumos-gate/usr/src/cmd/sgs/elfedit/common/
H A D_elfedit.h181 } input; member in struct:__anon1464
/illumos-gate/usr/src/cmd/fs.d/pcfs/fsck/
H A Dpcfs_common.c63 * Global variables related to input questions
298 char input[80]; local
307 if (fgets(input, sizeof (input), stdin) == NULL) {
313 if (input[0] == (int)*a)
/illumos-gate/usr/src/cmd/hal/hald/
H A Dhald_runner.c478 /* Run a helper program using the commandline, with input as infomation on
483 gchar *input, gboolean error_on_stderr,
502 dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &input);
481 hald_runner_run_method(HalDevice *device, const gchar *command_line, char **extra_env, gchar *input, gboolean error_on_stderr, guint32 timeout, HalRunTerminatedCB cb, gpointer data1, gpointer data2) argument
/illumos-gate/usr/src/cmd/sulogin/
H A Dsulogin.c659 static char input[PASS_MAX + 1]; local
661 char *rval = input;
678 if (c == EOF && i == 0) { /* ^D, no input */
683 input[i++] = (char)c;
686 input[i] = '\0';
/illumos-gate/usr/src/uts/common/crypto/io/
H A Ddca_rsa.c102 /* The input length should not be bigger than the modulus */
110 * For decryption, verify, and verifyRecover, the input length should
132 /* For decrypt and verify, the input should not be less than output */
149 "dca_rsastart: input larger (numerically) than modulus!");
186 * Since the max RSA input size is 256 bytes (2048 bits), the firstx
632 crypto_key_t *key, crypto_data_t *input, crypto_data_t *output,
655 if (input == output) {
660 rv = dca_rsastart(&ctx, input, output, req, mode);
630 dca_rsaatomic(crypto_provider_handle_t provider, crypto_session_id_t session_id, crypto_mechanism_t *mechanism, crypto_key_t *key, crypto_data_t *input, crypto_data_t *output, int kmflag, crypto_req_handle_t req, int mode) argument
/illumos-gate/usr/src/stand/lib/sock/
H A Dsocket_impl.h93 * "target" is needed for input prior to IP address assignment. It may
133 struct inetgram *inq; /* input queue */
140 int (*input[APP_LVL])(int); member in struct:inetboot_socket
/illumos-gate/usr/src/uts/common/io/usb/clients/video/usbvc/
H A Dusbvc_v4l2.c541 struct v4l2_input input; local
545 USBVC_COPYIN(input);
547 if (input.index != 0) { /* Support only one INPUT now */
552 (void) strncpy((char *)input.name, "Camera Terminal",
553 sizeof (input.name));
554 input.type = V4L2_INPUT_TYPE_CAMERA;
555 USBVC_COPYOUT(input);
562 int input_idx = 0; /* Support only one input now */
578 if (input_idx != 0) { /* Support only one input now */
751 * Find a frame which has the closest image size as the input arg
[all...]
/illumos-gate/usr/src/lib/libadm/common/
H A Dckdate.c302 ckdate_val(char *fmt, char *input) argument
318 input = p_date(input, LD, UD, STDIG);
319 if (!input)
324 input = p_eday(input, LD2, UD);
325 if (!input)
330 input = p_date(input, LM, UM, STDIG);
331 if (!input)
410 char input[MAX_INPUT]; local
[all...]
/illumos-gate/usr/src/cmd/localedef/
H A Dscanner.c18 * This file contains the "scanner", which tokenizes the input files
40 static FILE *input = stdin; variable
205 input = stdin;
207 if (input != stdin)
208 (void) fclose(input);
209 if ((input = fopen(fname, "r")) == NULL) {
234 c = getc(input);
248 if (ungetc(c, input) < 0) {
/illumos-gate/usr/src/cmd/lp/cmd/
H A Dlpforms.c157 FILE *input = 0; local
231 if (input)
233 if (!(input = fopen(optarg, "r"))) {
354 input = stdin;
416 ((*action)(form, input, &alert, u)));
424 return ((*action)(form, input, &alert, u));
441 FILE * input,
446 add_alert (form, input, new_alert, u)
448 FILE * input;
453 return (add_form(form, input, p_new_aler
439 add_alert( char * form, FILE * input, FALERT * p_new_alert, char * u ) argument
458 add_form( char * form, FILE * input, FALERT * p_new_alert, char * u ) argument
[all...]
/illumos-gate/usr/src/cmd/lp/lib/filters/
H A Dinsfilter.c259 * Find a pipeline that will convert the input-type to the
380 * algorithm. It is given an input-type and output-type and finds a
381 * filter-pipline that will convert the input-type into the
396 * the input-type and output-type and satisfies the criteria. If one
405 * pairs of filters where one in the pair can accept the input-type
408 * together--one that accepts as input the output-type of the first
409 * in the pair, and produces as output the input-type of the second
412 * where the input-type is the output-type; with trivial cases it
448 TYPE *input,
454 instantiate(pline, input, outpu
446 instantiate( _FILTER **pline, TYPE *input, TYPE *output, int (*verify)(_FILTER *, void *), void *criteria ) argument
[all...]
/illumos-gate/usr/src/common/crypto/sha2/
H A Dsha2.c618 * input: uint8_t * : place to store the converted big endian numbers
620 * size_t : the length of the input in bytes
625 Encode(uint8_t *_RESTRICT_KYWD output, uint32_t *_RESTRICT_KYWD input, argument
634 *((uint32_t *)(output + j)) = input[i];
639 output[j] = (input[i] >> 24) & 0xff;
640 output[j + 1] = (input[i] >> 16) & 0xff;
641 output[j + 2] = (input[i] >> 8) & 0xff;
642 output[j + 3] = input[i] & 0xff;
650 Encode64(uint8_t *_RESTRICT_KYWD output, uint64_t *_RESTRICT_KYWD input, argument
659 *((uint64_t *)(output + j)) = input[
792 const uint8_t *input = inptr; local
[all...]
/illumos-gate/usr/src/lib/auditd_plugins/remote/
H A Dtransport.c601 * cycles the poll() call in timeout seconds (waits for input from server).
722 send_record(struct hostlist_s *hostlptr, const char *input, size_t in_len, argument
863 (void) memcpy((char *)in_buf.value + sizeof (seq_n), input, in_len);
/illumos-gate/usr/src/lib/auditd_plugins/syslog/
H A Dsysplugin.c136 * The parameters input here select which classes to allow.
147 char *input, *ip, c; local
157 input = malloc(strlen(flags) + 1);
158 if (input == NULL)
161 ip = input;
169 if (getauditflagsbin(input, &tmask) == 0) {
180 free(input);
186 * current audit record. The input is 1 for success, -1 for
495 * filter() parse input; toss if not wanted.
497 * the input valu
505 filter(const char *input, uint64_t sequence, char *output, size_t in_len, size_t out_len) argument
793 auditd_plugin(const char *input, size_t in_len, uint64_t sequence, char **error) argument
[all...]
/illumos-gate/usr/src/cmd/od/
H A Dod.c51 static FILE *input = NULL; variable
326 if (input != NULL) {
327 if ((input = freopen(files[curfile], "r", input)) !=
330 return (input);
333 if ((input = fopen(files[curfile], "r")) != NULL) {
335 return (input);
355 while ((input != NULL) && (b->navail < (2 * blocksize))) {
360 (void) fclose(input);
361 input
[all...]
/illumos-gate/usr/src/cmd/pcitool/
H A Dpcitool_ui.c80 static int parse_nexus_opts(char *input, uint64_t *flags_arg, uint8_t *bank_arg,
86 static int parse_device_opts(char *input, uint64_t *flags_arg,
89 static int parse_ino_opts(char *input, uint64_t *flags_arg,
91 static int parse_msi_opts(char *input, uint64_t *flags_arg, uint16_t *msi_arg);
92 static int parse_intr_set_opts(char *input, uint64_t *flags_arg,
94 static int parse_probeone_opts(char *input, uint64_t *flags_arg,
261 /* parse input to get ino value. */
282 /* parse input to get msi value. */
311 /* parse input to get ino value. */
386 /* For interrupt, parse input t
898 parse_nexus_opts(char *input, uint64_t *flags_arg, uint8_t *bank_arg, uint64_t *base_addr_arg) argument
1057 parse_device_opts( char *input, uint64_t *flags_arg, uint8_t *bus_arg, uint8_t *device_arg, uint8_t *func_arg, uint8_t *bank_arg) argument
1289 parse_ino_opts(char *input, uint64_t *flags_arg, uint32_t *cpu_arg, uint8_t *ino_arg) argument
1356 parse_msi_opts(char *input, uint64_t *flags_arg, uint16_t *msi_arg) argument
1409 parse_intr_set_opts(char *input, uint64_t *flags_arg, uint32_t *cpu_arg) argument
1435 parse_probeone_opts( char *input, uint64_t *flags_arg, uint8_t *bus_arg, uint8_t *device_arg, uint8_t *func_arg) argument
[all...]
/illumos-gate/usr/src/cmd/mailx/
H A Dinit.c84 FILE *input; /* Current command input file */ variable
85 int intty; /* True if standard input a tty */
/illumos-gate/usr/src/cmd/sgs/gprof/common/
H A Dprintgprof.c851 int input; local
859 while ((input = getc(blurbfile)) != EOF)
860 (void) putchar(input);
/illumos-gate/usr/src/cmd/infocmp/
H A Dinfocmp.c332 Output the 'ko' termcap string. This is a list of all of the input
333 keys that input the same thing as the corresponding output strings.
339 *addko(char *output, char *input, char *koptr) argument
342 inptr = tgetstr(input, (char **)0);
/illumos-gate/usr/src/cmd/kbd/
H A Dkbd.c334 char input[8]; /* 8 chars is enough for numbers */ local
354 (void) printf(gettext("Invalid input. "
355 "Please input a number "
357 (void) memset(input, 0, 8);
359 (void) fgets(input, 8, stdin);
360 if (strlen(input) > 4) {
364 if (input[0] == '\n') {
370 for (i = 0; i < (strlen(input) - 1); i++) {
371 if ((input[i] < '0') ||
372 (input[
[all...]
/illumos-gate/usr/src/cmd/sgs/unifdef/common/
H A Dunifdef.c45 FILE *input; variable
154 if ((input = fopen(filename, "r")) != NULL) {
156 (void) fclose(input);
163 input = stdin;
171 /* types of input lines: */
329 if (getlin(tline, sizeof (tline), input, NO) == EOF)
/illumos-gate/usr/src/cmd/luxadm/
H A Dfcalupdate.c799 char input[1024]; local
801 input[0] = '\0';
812 (void) gets(input);
814 if ((strcmp(input, MSGSTR(4535, "y")) == 0) ||
815 (strcmp(input, MSGSTR(40, "yes")) == 0)) {
817 } else if ((strcmp(input, MSGSTR(4536, "n")) == 0) ||
818 (strcmp(input, MSGSTR(45, "no")) == 0)) {
822 (void) fprintf(stderr, MSGSTR(4538, "Invalid input\n"));
/illumos-gate/usr/src/cmd/format/
H A Dio.c103 * This routine pushes the given character back onto the input stream.
113 * This routine checks the input stream for an eof condition.
122 * This routine gets the next token off the input stream. A token is
222 * This routine checks if a token is already present on the input line
231 * This routine flushes the rest of an input line if there is known
438 * This routine is the basis for all input into the program. It
439 * understands the semantics of a set of input types, and provides
440 * consistent error messages for all input. It allows for default
444 input(type, promptstr, delim, param, deflt, cmdflag) function
471 * Optional integer input ha
[all...]

Completed in 93 milliseconds

1234567