Home
last modified time | relevance | path

Searched refs:output (Results 126 – 150 of 721) sorted by relevance

12345678910>>...29

/illumos-gate/usr/src/cmd/acct/
H A Dacctmerg.c71 void output(struct tacct *);
134 output(&tt); in main()
185 output(&tc); in sumcurr()
205 output(struct tacct *tp) in output() function
H A Dacctprc2.c59 void output(void);
72 output(); in main()
143 output(void) in output() function
H A Dacctprc.c62 void output(void);
103 output(); in main()
169 output(void) in output() function
/illumos-gate/usr/src/ucbcmd/basename/
H A Dbasename.c41 goto output; in main()
44 output: in main()
/illumos-gate/usr/src/lib/gss_mechs/mech_dh/backend/mech/
H A Dcrypto.c498 gss_buffer_t output, /* The wraped message */ in __QOPSeal() argument
511 if ((stat = wrap_msg_body(input, output)) in __QOPSeal()
551 gss_buffer_t output /* The unwraped message */) in __QOPUnSeal() argument
561 output->length = 0; in __QOPUnSeal()
562 output->value = NULL; in __QOPUnSeal()
569 stat = unwrap_msg_body(input, output); in __QOPUnSeal()
H A DMICwrap.c216 gss_buffer_t output /* Contains the ouputed DH_WRAP token*/) in __dh_gss_seal() argument
282 if ((*minor = __make_token(output, NULL, &tok, &keys)) != DH_SUCCESS) { in __dh_gss_seal()
305 gss_buffer_t output, /* The unwrapped message */ in __dh_gss_unseal() argument
319 if (minor == 0 || conf_state == 0 || output == GSS_C_NO_BUFFER) in __dh_gss_unseal()
376 *conf_state, &keys, output)) in __dh_gss_unseal()
H A Dcrypto.h59 dh_key_set_t keys, gss_buffer_t output, int *conf_ret);
63 dh_key_set_t keys, gss_buffer_t output);
/illumos-gate/usr/src/common/crypto/md5/
H A Dmd5.c383 md5_calc(unsigned char *output, unsigned char *input, unsigned int inlen) in md5_calc() argument
389 MD5Final(output, &context); in md5_calc()
660 Encode(uint8_t *_RESTRICT_KYWD output, const uint32_t *_RESTRICT_KYWD input, in Encode() argument
670 if ((uintptr_t)output & 0x3) /* Not 4-byte aligned */ in Encode()
671 bcopy(input + i, output + j, 4); in Encode()
672 else *(uint32_t *)(output + j) = input[i]; in Encode()
675 *(uint32_t *)(output + j) = input[i]; in Encode()
680 output[j] = input[i] & 0xff; in Encode()
681 output[j + 1] = (input[i] >> 8) & 0xff; in Encode()
682 output[j + 2] = (input[i] >> 16) & 0xff; in Encode()
[all …]
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/raw/
H A Draw_encrypt.c56 krb5_data *output) in krb5_raw_encrypt() argument
58 return((*(enc->encrypt))(context, key, ivec, input, output)); in krb5_raw_encrypt()
/illumos-gate/usr/src/cmd/refer/
H A Drefer1.c24 extern void output();
151 output(line); in main()
159 output(""); in main()
/illumos-gate/usr/src/test/os-tests/tests/xsave/
H A Dmdb_xregs.ksh126 typeset output="$2"
129 if ! mdb -e "::fpregs ! cat > $output" $core; then
134 check_file $check $output "extracted core matches"
/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
133 ret = krb5_hmac (context, &ks, &md5tmp, output); in k5_hmac_md5_hash()
135 ret = krb5_hmac (context, &krb5int_hash_md5, &ks, 1, &md5tmp, output); in k5_hmac_md5_hash()
/illumos-gate/usr/src/cmd/mandoc/
H A Dmanpath.c157 free(conf->output.includes); in manconf_free()
158 free(conf->output.man); in manconf_free()
159 free(conf->output.paper); in manconf_free()
160 free(conf->output.style); in manconf_free()
208 manconf_output(&conf->output, cp, 1); in manconf_file()
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/scripting/
H A Dtst.arguments.ksh71 output=`$dfilename 1 2 3 4 5 6 7 8 9 10 2>/dev/null`
78 set -A outarray $output
/illumos-gate/usr/src/cmd/rcm_daemon/common/
H A DSUNW,rdsv3u.sh63 output=`/usr/sbin/fuser $rcm_resource_name 2>&1`
66 sockrds=`echo "$output" | grep 'sockrds'`
/illumos-gate/usr/src/cmd/sed/
H A DPOSIX98 did not produce any output. POSIX does not specify this behavior.
103 11. Historical implementations do not output the change text of a c
106 text be output. Since the historic behavior doesn't seem to have
114 be output even though line 3 of the input will never logically
121 Historic implementations did not output the text in the above
126 from the 'c' command still isn't output because the second address
131 13. Historical implementations allow an output suppressing #n at the
139 is output, it seems reasonable that it behave like the cat(1)
141 sed", where they produce no output, and "ls | sed -e#", where they
153 to be discarded from the output regardless. A strict reading of
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Dchangepw.c109 krb5_data output; in kpasswd_sendto_msg_callback() local
168 &output); in kpasswd_sendto_msg_callback()
174 &output); in kpasswd_sendto_msg_callback()
178 message->length = output.length; in kpasswd_sendto_msg_callback()
179 message->data = output.data; in kpasswd_sendto_msg_callback()
/illumos-gate/usr/src/contrib/ast/src/lib/libsum/
H A Dsum-md5.c67 md5_encode(register unsigned char* output, register UINT4* input, unsigned int len) in md5_encode() argument
74 output[j] = (unsigned char)(input[i] & 0xff); in md5_encode()
75 output[j+1] = (unsigned char)((input[i] >> 8) & 0xff); in md5_encode()
76 output[j+2] = (unsigned char)((input[i] >> 16) & 0xff); in md5_encode()
77 output[j+3] = (unsigned char)((input[i] >> 24) & 0xff); in md5_encode()
87 md5_decode(register UINT4* output, register unsigned char* input, unsigned int len) in md5_decode() argument
93 output[i] = ((UINT4)input[j]) | in md5_decode()
/illumos-gate/usr/src/test/util-tests/tests/mdb/
H A Dmdbtest44 -o dir Sets 'dir' as the output directory
45 -k Keep output from all tests, not just failures
151 output directory: $mt_outdir
/illumos-gate/usr/src/test/os-tests/tests/secflags/
H A Dsecflags_limits.sh36 /usr/bin/psecflags $$ | grep 'I:' > output
38 diff -u expected output || exit 1
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/
H A Dmktest.sh271 typeset i n p op unit sep output=1 error=1 exitcode=1
276 ++NOOUTPUT) output= ;;
372 if [[ $output ]]
401 case $output:$error in
437 if [[ ! $output ]]
441 then if [[ ! $output ]]
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/
H A Ddecrypt.c39 const krb5_enc_data *input, krb5_data *output) in krb5_c_decrypt() argument
74 key, usage, ivec, &input->ciphertext, output)); in krb5_c_decrypt()
/illumos-gate/usr/src/cmd/abi/appcert/scripts/
H A DAppcertUtil.pm404 my $output;
408 $output = $all_ldd_neededs_cache{$filename};
411 if (! defined($output)) {
421 $output .= $_;
429 if (! defined($output) && -f $filename && $filename !~ /'/) {
436 $output .= "$line\n";
440 if (! defined($output)) {
446 $output = '';
449 $all_ldd_neededs_cache{$filename} = $output;
451 foreach $line (split(/\n/, $output)) {
/illumos-gate/usr/src/cmd/svr4pkg/pkgproto/
H A Dmain.c85 static void output(char *path, int n, char *local);
154 output(path, 0, NULL); in main()
166 output(char *path, int n, char *local) in output() function
316 output(newpath, n, local); in follow()
322 output(path, n, local); in follow()
/illumos-gate/usr/src/cmd/lp/cmd/lpadmin/
H A Ddo_align.c487 rc = output(R_ACCEPT_DEST);
516 rc = output(R_REJECT_DEST);
545 rc = output(R_ENABLE_DEST);
575 rc = output(R_DISABLE_DEST);
603 rc = output(R_CANCEL_REQUEST);

12345678910>>...29