HomeSort by relevance Sort by last modified time
    Searched refs:output (Results 1 - 25 of 432) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/cmd/lvm/metassist/scripts/
errifoutput.sh 29 # Runs the command passed as arguments, echoes the output to stderr.
32 # output.
34 # Exits with 1 (failure) if the command exits with 0 and has output.
39 output=`"$@" 2>&1`
42 if [ -n "$output" ]
44 echo "$output" >&2
  /onnv/onnv-gate/usr/src/common/openssl/crypto/des/
cbc3_enc.c 62 void DES_3cbc_encrypt(DES_cblock *input, DES_cblock *output, long length,
73 (unsigned char*)output,length,&ks1,iv1,enc);
75 memcpy(niv1,output[off],sizeof(DES_cblock));
76 DES_cbc_encrypt((unsigned char*)output,
77 (unsigned char*)output,l8,&ks2,iv1,!enc);
78 DES_cbc_encrypt((unsigned char*)output,
79 (unsigned char*)output,l8,&ks1,iv2,enc);
81 memcpy(niv2,output[off],sizeof(DES_cblock));
88 (unsigned char*)output,l8,&ks1,iv2,enc);
89 DES_cbc_encrypt((unsigned char*)output,
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/hash_provider/
hash_crc32.c 35 krb5_data *output)
40 if (output->length != CRC32_CKSUM_LENGTH)
49 output->data[0] = c&0xff;
50 output->data[1] = (c>>8)&0xff;
51 output->data[2] = (c>>16)&0xff;
52 output->data[3] = (c>>24)&0xff;
hash_kmd5.c 49 krb5_data *output)
51 if (output->length != MD5_CKSUM_LENGTH)
54 if (k5_ef_hash(context, icount, input, output))
hash_ksha1.c 48 krb5_data *output)
54 if (output->length != SHS_DIGESTSIZE) {
56 "output->length(%d) != SHS_DIGESTSIZE(%d)",
57 output->length, SHS_DIGESTSIZE);
61 if (k5_ef_hash(context, icount, input, output))
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Test/Simple/t/
diag.t 17 my $output;
18 tie *FAKEOUT, 'FakeOut', \$output;
20 # force diagnostic output to a filehandle, glad I added this to
30 push @lines, $output;
31 $output = '';
34 push @lines, split(/\n/, $output);
40 is( $output, "# multiple\n# lines\n", ' should append multi messages');
45 $output = '';
49 is( $output, "# # foo\n", "diag() adds a # even if there's one already" );
  /onnv/onnv-gate/usr/src/ucbcmd/stty/
stty.c 62 #define output stderr macro
77 * standard output.
78 * Since their standard output is likely to be a pipe, they
79 * should not try to read the modes from the standard output.
190 (void) fprintf(output, "iuclc ");
192 (void) fprintf(output, "-iuclc ");
195 (void) fprintf(output, "olcuc ");
197 (void) fprintf(output, "-olcuc ");
199 (void) fprintf(output, "tab3 ");
202 (void) fprintf(output, "xcase ")
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/old/
old_encrypt.c 59 krb5_data *output)
71 if (output->length < enclen)
74 output->length = enclen;
78 (void) memset(output->data, 0, output->length);
81 datain.data = (char *) output->data;
85 (void) memcpy(output->data+blocksize+hashsize, input->data, input->length);
90 datain.data = output->data+blocksize;
92 if ((ret = ((*(hash->hash))(context, 1, output, &datain))))
106 if ((ret = ((*(enc->encrypt))(context, key, ivec, output, output)))
    [all...]
old_decrypt.c 50 krb5_data output, cksum, crcivec; local
63 output.length = input->length;
65 if ((output.data = (char *) MALLOC(output.length)) == NULL) {
71 output.length = input->length;
73 output.data = arg_output->data;
98 if ((ret = ((*(enc->decrypt))(context, key, ivec, input, &output))))
103 (void) memcpy(orig_cksum, output.data+blocksize, hashsize);
104 (void) memset(output.data+blocksize, 0, hashsize);
109 if ((ret = ((*(hash->hash))(context, 1, &output, &cksum)))
    [all...]
  /onnv/onnv-gate/usr/src/lib/libnsl/dial/
strecpy.c 38 * strecpy(output, input, except)
39 * strccpy copys the input string to the output string expanding
50 char *output; local
52 output = pout;
88 return (output);
  /onnv/onnv-gate/usr/src/tools/onbld/Checks/
Cddl.py 49 def cddlchk(fh, filename=None, lenient=False, verbose=False, output=sys.stderr):
51 lenient=lenient, verbose=verbose, output=output)
Mapfile.py 46 def mapfilechk(fh, filename=None, verbose=False, output=sys.stderr):
48 verbose=verbose, output=output)
Copyright.py 59 def copyright(fh, filename=None, output=sys.stderr):
74 err(output, "'%s' message missing" % licterms,
83 err(output, "old copyright with '(c)'", filename,
88 err(output, "old copyright with 'by'", filename, lineno)
104 err(output, "wrong copyright year %s, should "
110 err(output, "'All rights reserved.' message "
115 err(output, "need two spaces between copyright "
124 err(output, "'Use is subject to license terms.' message "
129 err(output, "no copyright message found", filename)
  /onnv/onnv-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/des/
f_cksum.c 15 * to a single 64 bit output MAC checksum.
20 * NOTE-- the output is ALWAYS 8 bytes long. If not enough space was
35 krb5_data output; local
40 output.data = (char *)out;
41 output.length = MIT_DES_BLOCK_LENGTH;
46 (const krb5_data *)&input, &output);
  /onnv/onnv-gate/usr/src/lib/libshell/common/tests/
sun_solaris_staticvariables.sh 39 typeset output
41 output="$($SHELL -c "${cmd}" 2>&1 )"
43 [[ "${output}" != "${expected_output}" ]] && err_exit2 ${line_number} "${output} != ${expected_output}"
statics.sh 32 typeset output
34 output="$($SHELL -c "${cmd}" 2>&1 )"
36 [[ "${output}" != "${expected_output}" ]] && err_exit2 ${line_number} "${output} != ${expected_output}"
  /onnv/onnv-gate/usr/src/cmd/ssh/libopenbsd-compat/common/
base64.c 81 The encoding process represents 24-bit groups of input bits as output
89 output string.
125 output will be an integral multiple of 4 characters
128 here, the final unit of encoded output will be two
131 here, the final unit of encoded output will be three
140 u_char output[4]; local
149 output[0] = input[0] >> 2;
150 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
151 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);
152 output[3] = input[2] & 0x3f
    [all...]
  /onnv/onnv-gate/usr/src/lib/libresolv2/common/isc/
base64.c 91 The encoding process represents 24-bit groups of input bits as output
99 output string.
135 output will be an integral multiple of 4 characters
138 here, the final unit of encoded output will be two
141 here, the final unit of encoded output will be three
149 u_char output[4]; local
158 output[0] = input[0] >> 2;
159 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
160 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);
161 output[3] = input[2] & 0x3f
    [all...]
  /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/crypto/hash_provider/
hash_md5.c 43 krb5_data *output)
52 return(k5_ef_hash(context, &mechanism, icount, input, output));
hash_sha1.c 40 krb5_data *output)
48 return(k5_ef_hash(context, &mechanism, icount, input, output));
  /onnv/onnv-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/raw/
raw_decrypt.c 43 krb5_data *output)
45 return((*(enc->decrypt))(context, key, ivec, input, output));
  /onnv/onnv-gate/usr/src/cmd/prtfru/
prtfru.c 193 /* make relevant output appear before error message */
195 (void) fprintf(stderr, "Error flushing output: %s\n",
206 * Write message to standard output
209 output(const char *format, ...) function
216 error(gettext("Error writing output: %s\n"),
229 error(gettext("Error writing output: %s\n"),
244 error(gettext("Error writing output: %s\n"),
277 error(gettext("Error writing output: %s\n"),
296 * Output the XML DTD derived from the registry provided by libfrureg
323 * Output the DTD preambl
    [all...]
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/scripting/
tst.stringmacro.ksh 65 output=`$dfilename 'this is test' 2>/dev/null`
72 if [ "$output" != "this is test" ]; then
73 print -u2 "Expected output not returned"
  /onnv/onnv-gate/usr/src/lib/libfsmgt/common/
cmd.c 51 * Description: Executes the given command and returns the output written to
55 * case that the command output is expected to be lengthy.
59 * - int *output_filedes - The file descriptor to which the stdout output
61 * - int *err_filedes - The file descriptor to which the stderr output
67 * execution of a command with a large amount of output (ex: ls of a large
82 int output[2]; local
86 if (pipe(output) == -1) {
106 close(output[0]);
110 * Close stdout and dup to output[1]
116 if (dup(output[1]) == -1)
181 int output[2]; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/t/
text.t 44 my $output;
47 $output = <TMP>;
56 if ($output eq $expected) {
60 print "Expected\n========\n$expected\nOutput\n======\n$output\n";
65 # Below the marker are bits of POD and corresponding expected text output.
67 # input and output are separated by lines containing only ###.

Completed in 420 milliseconds

1 2 3 4 5 6 7 8 91011>>