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

1234567891011>>

/illumos-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
/illumos-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
/illumos-gate/usr/src/test/zfs-tests/tests/functional/xattr/
H A Dxattr_008_pos.ksh39 # 2. List the . directory, verifying the output
46 for file in /tmp/output.$$ /tmp/expected-output.$$ \
60 log_must eval "runat $TESTDIR/myfile.$$ ls . > /tmp/output.$$"
61 create_expected_output /tmp/expected-output.$$ \
63 log_must diff /tmp/output.$$ /tmp/expected-output.$$
65 log_must eval "runat $TESTDIR/myfile.$$ ls -a . > /tmp/output.$$"
66 create_expected_output /tmp/expected-output.$$ . .. \
68 log_must diff /tmp/output
[all...]
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_upgrade/
H A Dzfs_upgrade_002_pos.ksh49 if [[ -f $output ]]; then
50 log_must rm -f $output
57 typeset output=/tmp/zfs-versions.$$
63 zfs upgrade -v | nawk '$1 ~ "^[0-9]+$" {print $0}'> $output
64 log_must eval 'grep "${expect_str1}" $output > /dev/null 2>&1'
65 log_must eval 'grep "${expect_str2}" $output > /dev/null 2>&1'
/illumos-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
/illumos-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 DComments.py48 def comchk(comments, check_db=True, output=sys.stderr):
57 Error messages intended for the user are written to output,
143 output.write("WARNING: Blank line(s) in comments\n")
148 output.write("These IDs appear more than once in your "
151 output.write(" %s\n" % err)
155 output.write("These bugs are missing a single space following "
158 output.write(" %s\n" % com)
162 output.write("These comments are not valid bugs:\n")
164 output.write(" %s\n" % com)
168 output
[all...]
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 DManLint.py36 def manlint(fh, filename=None, output=sys.stderr, **opts):
49 ret, tmpfile = processcheck('mandoc', options, fh, output)
54 output.write(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))
/illumos-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...]
/illumos-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...]
/illumos-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);
/illumos-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}"
/illumos-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
34 krb5_data output; local
39 output.data = (char *)out;
40 output.length = MIT_DES_BLOCK_LENGTH;
45 (const krb5_data *)&input, &output);
/illumos-gate/usr/src/test/os-tests/tests/secflags/
H A Dsecflags_truss.sh21 rm /tmp/output.$$
32 >/dev/null 2>output.$$
34 if ! grep -qEf /tmp/expected.$$ /tmp/output.$$; then
36 echo "output:"
37 sed -e 's/^/ /' output.$$
H A Dsecflags_proc.sh23 rm /tmp/output.$$
35 /usr/bin/psecflags $pid | grep -v '[LU]:' > /tmp/output.$$
37 if ! diff -u /tmp/expected.$$ /tmp/output.$$; then
/illumos-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...]
/illumos-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

Completed in 110 milliseconds

1234567891011>>