Home
last modified time | relevance | path

Searched refs:input (Results 126 – 150 of 493) sorted by relevance

12345678910>>...20

/illumos-gate/usr/src/lib/libfru/libfru/
H A DnameSyntaxLex.l35 #undef input
37 #define input()(*gParserString++) macro
/illumos-gate/usr/src/lib/iconv_modules/euro/utils/test/
H A DMakefile137 %.out: input
140 /usr/bin/iconv -f $$FROM -t $$TO input > $@
142 input: geninput target
149 $(RM) -r *out input geninput
/illumos-gate/usr/src/cmd/svc/svccfg/
H A Dsvccfg.l44 #ifdef input
45 #undef input
56 static int input(void);
205 input(void)
/illumos-gate/usr/src/cmd/sgs/tsort/common/
H A Dtsort.c89 FILE *input = stdin; in main() local
111 input = zfopen(EERROR, argv[1], "r"); in main()
116 input = zfopen(EERROR, argv[2], "r"); in main()
122 x = fscanf(input, FORMAT, precedes, follows); in main()
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/hash_provider/
H A Dhash_ksha1.c47 unsigned int icount, krb5_const krb5_data *input, in k5_sha1_hash() argument
61 if (k5_ef_hash(context, icount, input, output)) in k5_sha1_hash()
/illumos-gate/usr/src/lib/auditd_plugins/syslog/
H A Dsysplugin.c149 char *input, *ip, c; in setmask() local
159 input = malloc(strlen(flags) + 1); in setmask()
160 if (input == NULL) in setmask()
163 ip = input; in setmask()
171 if (getauditflagsbin(input, &tmask) == 0) { in setmask()
182 free(input); in setmask()
507 filter(const char *input, uint64_t sequence, char *output, in filter() argument
559 ctx.adr.adr_stream = (char *)input; in filter()
560 ctx.adr.adr_now = (char *)input; in filter()
795 auditd_plugin(const char *input, size_t in_len, uint64_t sequence, char **error) in auditd_plugin() argument
[all …]
/illumos-gate/usr/src/cmd/mandoc/
H A Dmansearch.c554 const char *oldoutput, *sep, *input; in buildoutput() local
562 input = page->name; in buildoutput()
565 input = page->sect; in buildoutput()
568 input = page->arch; in buildoutput()
569 if (input == NULL) in buildoutput()
570 input = "all\0"; in buildoutput()
573 input = NULL; in buildoutput()
577 if (input != NULL) { in buildoutput()
578 sz = lstlen(input, 3) + 1; in buildoutput()
581 lstcat(output, &i, input, " # "); in buildoutput()
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/raw/
H A Draw_encrypt.c55 const krb5_data *ivec, const krb5_data *input, in krb5_raw_encrypt() argument
58 return((*(enc->encrypt))(context, key, ivec, input, output)); in krb5_raw_encrypt()
/illumos-gate/usr/src/uts/common/io/sfxge/
H A Dsfxge_hash.c51 toeplitz_hash(const uint32_t *cache, const uint8_t *input, in toeplitz_hash() argument
55 for (; datalen != 0; datalen--, pos++, input++) { in toeplitz_hash()
56 hash ^= cache[pos * (UINT8_MAX + 1) + *input]; in toeplitz_hash()
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/crypto/keyhash_provider/
H A Dhmac_md5.c47 const krb5_data *input, krb5_data *output) in k5_hmac_md5_hash() argument
109 (CK_BYTE_PTR)input->data, (CK_ULONG)input->length)) != CKR_OK) { in k5_hmac_md5_hash()
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/keyhash_provider/
H A Dk_hmac_md5.c49 const krb5_data *input, krb5_data *output) in k5_hmac_md5_hash() argument
121 hash_input[1].data = input->data; in k5_hmac_md5_hash()
122 hash_input[1].length = input->length; in k5_hmac_md5_hash()
/illumos-gate/usr/src/cmd/vi/port/
H A Dex_cmds2.c213 if (input) { in error0()
214 input = strend(input) - 1; in error0()
215 if (*input == '\n') in error0()
217 input = 0; in error0()
/illumos-gate/usr/src/cmd/oamuser/user/
H A Duseradd.c773 valid_input(path_opt_t opt, const char *input) in valid_input() argument
777 if (REL_PATH(input)) { in valid_input()
778 errmsg(M_RELPATH, input); in valid_input()
781 if (stat(input, &statbuf) == -1) { in valid_input()
782 errmsg(M_INVALID, input, "path"); in valid_input()
788 errmsg(M_INVALID, input, "shell"); in valid_input()
793 errmsg(M_INVALID, input, "directory"); in valid_input()
/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/lib/iconv_modules/euro/utils/gentbl/
H A DMakefile169 %.tbl: gen_% %.head input copyright
170 ./$< input > $@.tmp
182 input: geninput target
197 %.out: input
200 /usr/bin/iconv -f $$FROM -t $$TO input > $@
/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()
/illumos-gate/usr/src/common/crypto/sha2/
H A Dsha2.c635 *((uint32_t *)(output + j)) = input[i]; in Encode()
640 output[j] = (input[i] >> 24) & 0xff; in Encode()
643 output[j + 3] = input[i] & 0xff; in Encode()
660 *((uint64_t *)(output + j)) = input[i]; in Encode64()
666 output[j] = (input[i] >> 56) & 0xff; in Encode64()
673 output[j + 7] = input[i] & 0xff; in Encode64()
793 const uint8_t *input = inptr; in SHA2Update() local
869 SHA256Transform(ctx, &input[i]); in SHA2Update()
873 SHA512Transform(ctx, &input[i]); in SHA2Update()
881 SHA256TransformBlocks(ctx, &input[i], in SHA2Update()
[all …]
/illumos-gate/usr/src/lib/gss_mechs/mech_dh/backend/mech/
H A Dcrypto.h58 __QOPSeal(dh_qop_t qop, gss_buffer_t input, int conf_req,
62 __QOPUnSeal(dh_qop_t qop, gss_buffer_t input, int conf_req,
/illumos-gate/usr/src/cmd/write/
H A Dwrite.c98 char input[134+MB_LEN_MAX]; in main() local
371 while ((i = readcsi(0, &input[0], sizeof (input))) > 0) { in main()
372 ptr = &input[0]; in main()
398 for (bp = &input[0]; --i >= 0; bp++) { in main()
/illumos-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftARCFourCrypt.c106 soft_arcfour_crypt(crypto_active_op_t *active_op, CK_BYTE_PTR input, in soft_arcfour_crypt() argument
129 arcfour_crypt(keystream, input, output, inputlen); in soft_arcfour_crypt()
/illumos-gate/usr/src/lib/libadm/common/
H A Dckitem.c511 char input[MAX_INPUT]; local
529 if (getinput(input))
532 if (strlen(input) == 0) {
539 } else if (strcmp(input, "?") == 0) {
542 } else if (ckquit && (strcmp(input, "q") == 0)) {
546 (void) strcpy(strval, input);
/illumos-gate/usr/src/uts/common/io/ixgbe/core/
H A Dixgbe_api.h155 union ixgbe_atr_hash_dword input,
161 union ixgbe_atr_input *input,
164 union ixgbe_atr_input *input,
167 union ixgbe_atr_input *input,
172 void ixgbe_atr_compute_perfect_hash_82599(union ixgbe_atr_input *input,
174 u32 ixgbe_atr_compute_sig_hash_82599(union ixgbe_atr_hash_dword input,
/illumos-gate/usr/src/cmd/praudit/
H A Dprint_audit.txt112 pointers to the start of input and output buffers and their lengths.
121 EINVAL - invalid input flags, delimiter, or error parsing the
126 EIO - input exhausted before end of an audit record.
143 audit record from the input):
147 updated to reflect amount of input successfully consumed. in_buf
161 The following code fragment takes audit input from stdin, and
/illumos-gate/usr/src/lib/sasl_plugins/digestmd5/
H A Ddigestmd5.c872 const char *input, argument
915 const char *input, argument
1028 const char *input, argument
1062 const char *input, argument
1143 const char *input, argument
1175 input,
1840 *input+=tocopy;
1885 *input+=diff;
2082 char *input, argument
2193 *input += tocopy;
[all …]
/illumos-gate/usr/src/lib/libsasl/include/
H A Dplugin_common.h195 const char *input, unsigned inputlen,
198 const char **input, unsigned *inputlen,
203 const char *serverFQDN, const char *input);

12345678910>>...20