Searched refs:output (Results 1 - 25 of 455) sorted by relevance

1234567891011>>

/opensolaris-onvv-gate/usr/src/cmd/lvm/metassist/scripts/
H A Derrifoutput.sh29 # 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
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/des/
H A Dcbc3_enc.c62 void DES_3cbc_encrypt(DES_cblock *input, DES_cblock *output, long length, argument
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...]
/opensolaris-onvv-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/hash_provider/
H A Dhash_crc32.c35 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;
33 k5_crc32_hash(krb5_context context, unsigned int icount, krb5_const krb5_data *input, krb5_data *output) argument
H A Dhash_kmd5.c49 krb5_data *output)
51 if (output->length != MD5_CKSUM_LENGTH)
54 if (k5_ef_hash(context, icount, input, output))
47 k5_md5_hash(krb5_context context, unsigned int icount, krb5_const krb5_data *input, krb5_data *output) argument
H A Dhash_ksha1.c48 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))
46 k5_sha1_hash(krb5_context context, unsigned int icount, krb5_const krb5_data *input, krb5_data *output) argument
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Test/Simple/t/
H A Ddiag.t17 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" );
/opensolaris-onvv-gate/usr/src/tools/onbld/Checks/
H A DCddl.py49 def cddlchk(fh, filename=None, lenient=False, verbose=False, output=sys.stderr):
51 lenient=lenient, verbose=verbose, output=output)
H A DCopyright.py62 def copyright(fh, filename=None, output=sys.stderr):
75 err(output, "old '%s' message found" % licterms,
81 err(output, "ancient Sun copyright", filename,
88 err(output, "pre-2002 Sun copyright", filename, lineno)
94 err(output, "old Sun copyright", filename, lineno)
115 err(output, "wrong copyright year %s, should "
121 err(output, "need comma after current year",
126 err(output, "need one space between copyright "
132 err(output, "no copyright message found", filename)
H A DCStyle.py36 def cstyle(fh, filename=None, output=sys.stderr, **opts):
55 ret, tmpfile = processcheck('cstyle', options, fh, output)
60 output.write(line)
H A DJStyle.py37 def jstyle(fh, filename=None, output=sys.stderr, **opts):
54 ret, tmpfile = processcheck('jstyle', options, fh, output)
59 output.write(line)
H A DKeywords.py47 output=sys.stderr):
70 output.write('%s: %d: contains SCCS keywords "%s"\n' %
73 output.write(" %s\n" % line)
H A DProcessCheck.py36 def processcheck(command, args, inpt, output):
38 Input is provided by inpt (an iterable), error output is
39 written to output (a stream-like entity).
42 (you must close it), containing output from the command.'''
45 # We use a tempfile for output, rather than a pipe, so we
51 output.write("Could not create temporary file: %s\n" % e)
59 output.write("Could not execute %s: %s\n" % (command, e))
/opensolaris-onvv-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/raw/
H A Draw_decrypt.c43 krb5_data *output)
45 if (output->length < input->length)
47 return((*(enc->decrypt))(context, key, ivec, input, output));
38 krb5_raw_decrypt(krb5_context context, const struct krb5_enc_provider *enc, const struct krb5_hash_provider *hash, const krb5_keyblock *key, krb5_keyusage usage, const krb5_data *ivec, const krb5_data *input, krb5_data *output) argument
/opensolaris-onvv-gate/usr/src/ucbcmd/stty/
H A Dstty.c62 #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, "xcas
[all...]
/opensolaris-onvv-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/old/
H A Dold_encrypt.c59 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, outpu
52 krb5_old_encrypt(krb5_context context, const struct krb5_enc_provider *enc, const struct krb5_hash_provider *hash, const krb5_keyblock *key, krb5_keyusage usage, const krb5_data *ivec, const krb5_data *input, krb5_data *output) argument
[all...]
H A Dold_decrypt.c50 krb5_data output, cksum, crcivec; local
57 /* Verify input and output lengths. */
65 output.length = input->length;
67 if ((output.data = (char *) MALLOC(output.length)) == NULL) {
73 output.length = input->length;
75 output.data = arg_output->data;
100 if ((ret = ((*(enc->decrypt))(context, key, ivec, input, &output))))
105 (void) memcpy(orig_cksum, output.data+blocksize, hashsize);
106 (void) memset(output
[all...]
/opensolaris-onvv-gate/usr/src/lib/libnsl/dial/
H A Dstrecpy.c38 * 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);
/opensolaris-onvv-gate/usr/src/lib/libshell/common/tests/
H A Dsun_solaris_staticvariables.sh38 typeset output
40 output="$($SHELL -c "${cmd}" 2>&1 )"
42 [[ "${output}" != "${expected_output}" ]] && err_exit2 ${line_number} "${output} != ${expected_output}"
/opensolaris-onvv-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/des/
H A Df_cksum.c15 * 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);
/opensolaris-onvv-gate/usr/src/cmd/ssh/libopenbsd-compat/common/
H A Dbase64.c81 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[
[all...]
/opensolaris-onvv-gate/usr/src/lib/libresolv2/common/isc/
H A Dbase64.c91 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[
[all...]
/opensolaris-onvv-gate/usr/src/lib/gss_mechs/mech_krb5/crypto/hash_provider/
H A Dhash_md5.c43 krb5_data *output)
52 return(k5_ef_hash(context, &mechanism, icount, input, output));
41 k5_md5_hash(krb5_context context, unsigned int icount, krb5_const krb5_data *input, krb5_data *output) argument
H A Dhash_sha1.c40 krb5_data *output)
48 return(k5_ef_hash(context, &mechanism, icount, input, output));
38 k5_sha1_hash(krb5_context context, unsigned int icount, krb5_const krb5_data *input, krb5_data *output) argument
/opensolaris-onvv-gate/usr/src/cmd/prtfru/
H A Dprtfru.c193 /* 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"),
325 output("<!ELEMENT FRUID_XML_Tree (Parameter*, "
379 output("<!ELEMEN
[all...]
/opensolaris-onvv-gate/usr/src/cmd/dtrace/test/tst/common/scripting/
H A Dtst.stringmacro.ksh65 output=`$dfilename 'this is test' 2>/dev/null`
72 if [ "$output" != "this is test" ]; then
73 print -u2 "Expected output not returned"

Completed in 300 milliseconds

1234567891011>>