/titanic_52/usr/src/ucbcmd/stty/ |
H A D | stty.c | 62 #define output stderr macro 77 * standard output. in main() 78 * Since their standard output is likely to be a pipe, they in main() 79 * should not try to read the modes from the standard output. in main() 190 (void) fprintf(output, "iuclc "); in prmodes() 192 (void) fprintf(output, "-iuclc "); in prmodes() 195 (void) fprintf(output, "olcuc "); in prmodes() 197 (void) fprintf(output, "-olcuc "); in prmodes() 199 (void) fprintf(output, "tab3 "); in prmodes() 202 (void) fprintf(output, "xcas in prmodes() [all...] |
/titanic_52/usr/src/cmd/prtfru/ |
H A D | prtfru.c | 193 /* make relevant output appear before error message */ in error() 195 (void) fprintf(stderr, "Error flushing output: %s\n", in error() 206 * Write message to standard output 209 output(const char *format, ...) in output() function 216 error(gettext("Error writing output: %s\n"), in output() 229 error(gettext("Error writing output: %s\n"), in voidputchar() 244 error(gettext("Error writing output: %s\n"), in voidputs() 277 error(gettext("Error writing output: %s\n"), in xputchar() 325 output("<!ELEMENT FRUID_XML_Tree (Parameter*, " in output_dtd() 379 output("<!ELEMEN in output_dtd() [all...] |
/titanic_52/usr/src/lib/libresolv2/common/isc/ |
H A D | 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]; in b64_ntop() local 158 output[0] = input[0] >> 2; in b64_ntop() 159 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4); in b64_ntop() 160 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6); in b64_ntop() 161 output[ in b64_ntop() [all...] |
/titanic_52/usr/src/tools/scripts/ |
H A D | git-pbchk.py | 199 def comchk(root, parent, flist, output): argument 200 output.write("Comments:\n") 203 output=output) 206 def mapfilechk(root, parent, flist, output): argument 222 output.write("Mapfile comments:\n") 227 ret |= Mapfile.mapfilechk(fh, output=output) 230 def copyright(root, parent, flist, output): argument 232 output 238 hdrchk(root, parent, flist, output) global() argument 246 cstyle(root, parent, flist, output) global() argument 256 jstyle(root, parent, flist, output) global() argument 264 manlint(root, parent, flist, output) global() argument 273 keywords(root, parent, flist, output) global() argument [all...] |
/titanic_52/usr/src/uts/common/gssapi/mechs/krb5/crypto/old/ |
H A D | old_encrypt.c | 59 krb5_data *output) in krb5_old_encrypt() argument 71 if (output->length < enclen) in krb5_old_encrypt() 74 output->length = enclen; in krb5_old_encrypt() 78 (void) memset(output->data, 0, output->length); in krb5_old_encrypt() 81 datain.data = (char *) output->data; in krb5_old_encrypt() 85 (void) memcpy(output->data+blocksize+hashsize, input->data, input->length); in krb5_old_encrypt() 90 datain.data = output->data+blocksize; in krb5_old_encrypt() 92 if ((ret = ((*(hash->hash))(context, 1, output, &datain)))) in krb5_old_encrypt() 106 if ((ret = ((*(enc->encrypt))(context, key, ivec, output, outpu in krb5_old_encrypt() [all...] |
H A D | old_decrypt.c | 50 krb5_data output, cksum, crcivec; in krb5_old_decrypt() local 57 /* Verify input and output lengths. */ in krb5_old_decrypt() 65 output.length = input->length; in krb5_old_decrypt() 67 if ((output.data = (char *) MALLOC(output.length)) == NULL) { in krb5_old_decrypt() 73 output.length = input->length; in krb5_old_decrypt() 75 output.data = arg_output->data; in krb5_old_decrypt() 100 if ((ret = ((*(enc->decrypt))(context, key, ivec, input, &output)))) in krb5_old_decrypt() 105 (void) memcpy(orig_cksum, output.data+blocksize, hashsize); in krb5_old_decrypt() 106 (void) memset(output in krb5_old_decrypt() [all...] |
/titanic_52/usr/src/lib/libfsmgt/common/ |
H A D | 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]; in cmd_execute_command() local 86 if (pipe(output) == -1) { in cmd_execute_command() 106 close(output[0]); in cmd_execute_command() 110 * Close stdout and dup to output[1] in cmd_execute_command() 116 if (dup(output[ in cmd_execute_command() 181 int output[2]; cmd_execute_command_and_retrieve_string() local [all...] |
/titanic_52/usr/src/tools/onbld/Checks/ |
H A D | Comments.py | 49 def comchk(comments, check_db=True, output=sys.stderr): argument 58 Error messages intended for the user are written to output, 144 output.write("WARNING: Blank line(s) in comments\n") 149 output.write("These IDs appear more than once in your " 152 output.write(" %s\n" % err) 156 output.write("These bugs are missing a single space following " 159 output.write(" %s\n" % com) 163 output.write("These comments are not valid bugs:\n") 165 output.write(" %s\n" % com) 169 output [all...] |
H A D | HdrChk.py | 156 def hdrchk(fh, filename=None, lenient=False, output=sys.stderr): argument 172 err(output, "Missing copyright in opening comment", hdr) 189 err(output, "Invalid or missing header guard", hdr) 207 err(output, "Header guard does not match " 213 err(output, "Invalid header guard", hdr) 228 err(output, "Invalid #pragma ident", hdr) 255 err(output, "Bad include", hdr) 271 err(output, "Bad __cplusplus clause", 291 err(output, "Bad __cplusplus clause", 310 err(output, "Missin [all...] |
/titanic_52/usr/src/uts/common/io/audio/drv/audioemu10k/dsp/ |
H A D | emu10k2.mac | 45 .output OUT_SPDIF_L 0 46 .output OUT_SPDIF_R 1 47 .output OUT_DCENTER 2 // Digital Center channel 48 .output OUT_DLFE 3 // Digital LFE 49 .output OUT_HEADPH_L 4 // LiveDrive headphone out 50 .output OUT_HEADPH_R 5 51 .output OUT_DSURR_L 6 // Surround output (digital) 52 .output OUT_DSURR_R 7 53 .output OUT_FRONT_ [all...] |
H A D | emu10k1.mac | 45 .output OUT_FRONT_L 0 // via AC'97 46 .output OUT_FRONT_R 1 // via AC'97 47 .output OUT_SPDIF_L 2 48 .output OUT_SPDIF_R 3 49 .output OUT_DCENTER 4 // Digital Center channel 50 .output OUT_DLFE 5 // Digital LFE 51 .output OUT_HEADPH_L 6 // LiveDrive headphone out 52 .output OUT_HEADPH_R 7 53 .output OUT_SURR_L 8 // Rear output [all...] |
/titanic_52/usr/src/lib/gss_mechs/mech_dh/backend/mech/ |
H A D | name.c | 98 gss_buffer_t output, /* Were the printable name goes */ in __dh_gss_display_name() argument 103 if (minor == 0 || output == 0) in __dh_gss_display_name() 111 output->length = 0; in __dh_gss_display_name() 112 output->value = (void *)strdup((char *)name); in __dh_gss_display_name() 113 if (output->value == NULL) { in __dh_gss_display_name() 117 output->length = strlen((char *)name) + 1; in __dh_gss_display_name() 130 * free(output->value); in __dh_gss_display_name() 131 * output->value = NULL; in __dh_gss_display_name() 145 * to a an gss_name_t pointed to by output. 148 do_netname_nametype(OM_uint32 *minor, char *input, gss_name_t *output) in do_netname_nametype() argument 168 do_uid_nametype(OM_uint32 * minor,uid_t uid,gss_name_t * output) do_uid_nametype() argument 196 do_username_nametype(OM_uint32 * minor,char * uname,gss_name_t * output) do_username_nametype() argument 302 do_hostbase_nametype(OM_uint32 * minor,char * input,gss_name_t * output) do_hostbase_nametype() argument 334 do_exported_netname(dh_context_t ctx,OM_uint32 * minor,gss_buffer_t input,gss_name_t * output) do_exported_netname() argument 446 __dh_gss_import_name(void * ctx,OM_uint32 * minor,gss_buffer_t input,gss_OID name_type,gss_name_t * output) __dh_gss_import_name() argument [all...] |
/titanic_52/usr/src/test/zfs-tests/tests/functional/xattr/ |
H A D | xattr_008_pos.ksh | 39 # 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...] |
/titanic_52/usr/src/uts/common/gssapi/mechs/krb5/crypto/ |
H A D | hmac.c | 45 krb5_const krb5_data *input, krb5_data *output) in krb5_hmac() argument 53 if (output == NULL || output->data == NULL) { in krb5_hmac() 54 KRB5_LOG0(KRB5_INFO, "krb5_hmac() NULL output"); in krb5_hmac() 70 mac.cd_length = output->length; in krb5_hmac() 71 mac.cd_raw.iov_base = (char *)output->data; in krb5_hmac() 72 mac.cd_raw.iov_len = output->length; in krb5_hmac() 111 krb5_data *output) in krb5_hmac() argument 134 if (output == NULL) { in krb5_hmac() 135 KRB5_LOG0(KRB5_ERR, "krb5_hmac() error output in krb5_hmac() [all...] |
/titanic_52/usr/src/uts/common/gssapi/mechs/krb5/crypto/enc_provider/ |
H A D | aes_provider.c | 36 const krb5_data *input, krb5_data *output) in krb5int_aes_encrypt() argument 42 * nlobp = next to last output block pointer, lobp = last output block in krb5int_aes_encrypt() 54 ASSERT(output != NULL); in krb5int_aes_encrypt() 55 ASSERT(input->length == output->length); in krb5int_aes_encrypt() 102 (char *)output->data, in krb5int_aes_encrypt() 118 nlobp = (char *)(output->data + in krb5int_aes_encrypt() 120 lobp = (char *)(output->data + in krb5int_aes_encrypt() 199 ct.cd_uio->uio_iov[0].iov_base = (char *)output->data; in krb5int_aes_encrypt() 200 ct.cd_uio->uio_iov[0].iov_len = output in krb5int_aes_encrypt() 271 krb5int_aes_encrypt(krb5_context context,const krb5_keyblock * key,const krb5_data * ivec,const krb5_data * input,krb5_data * output) krb5int_aes_encrypt() argument 488 krb5int_aes_decrypt(krb5_context context,const krb5_keyblock * key,const krb5_data * ivec,const krb5_data * input,krb5_data * output) krb5int_aes_decrypt() argument 723 krb5int_aes_decrypt(krb5_context context,const krb5_keyblock * key,const krb5_data * ivec,const krb5_data * input,krb5_data * output) krb5int_aes_decrypt() argument [all...] |
/titanic_52/usr/src/lib/iconv_modules/utf-8/common/ |
H A D | ucs4_to_utf32.c | 61 cd->output.little_endian = false; in _icv_open() 62 cd->output.bom_written = true; in _icv_open() 64 cd->output.little_endian = true; in _icv_open() 65 cd->output.bom_written = true; in _icv_open() 67 cd->output.little_endian = true; in _icv_open() 108 cd->output.bom_written = false; in _icv_iconv() 169 obsz = (cd->output.bom_written) ? 2 : 4; in _icv_iconv() 176 if (cd->output.little_endian) { in _icv_iconv() 177 if (! cd->output.bom_written) { in _icv_iconv() 182 cd->output in _icv_iconv() [all...] |
H A D | utf32_to_ucs4.c | 61 cd->output.little_endian = false; in _icv_open() 62 cd->output.bom_written = true; in _icv_open() 64 cd->output.little_endian = true; in _icv_open() 65 cd->output.bom_written = true; in _icv_open() 67 cd->output.little_endian = true; in _icv_open() 108 cd->output.bom_written = false; in _icv_iconv() 164 obsz = (cd->output.bom_written) ? 2 : 4; in _icv_iconv() 171 if (cd->output.little_endian) { in _icv_iconv() 172 if (! cd->output.bom_written) { in _icv_iconv() 177 cd->output in _icv_iconv() [all...] |
H A D | ucs4_to_ucs.c | 60 cd->output.little_endian = false; in _icv_open() 61 cd->output.bom_written = true; in _icv_open() 63 cd->output.little_endian = true; in _icv_open() 64 cd->output.bom_written = true; in _icv_open() 66 cd->output.little_endian = true; in _icv_open() 108 cd->output.bom_written = false; in _icv_iconv() 169 obsz = (cd->output.bom_written) ? 2 : 4; in _icv_iconv() 188 * are only for preparing for output buffer; in _icv_iconv() 201 if (cd->output.little_endian) { in _icv_iconv() 202 if (! cd->output in _icv_iconv() [all...] |
H A D | ucs_to_ucs4.c | 61 cd->output.little_endian = false; in _icv_open() 62 cd->output.bom_written = true; in _icv_open() 64 cd->output.little_endian = true; in _icv_open() 65 cd->output.bom_written = true; in _icv_open() 67 cd->output.little_endian = true; in _icv_open() 107 cd->output.bom_written = false; in _icv_iconv() 208 if ((obtail - ob) < ((cd->output.bom_written) ? 4 : 8)) { in _icv_iconv() 214 if (cd->output.little_endian) { in _icv_iconv() 215 if (! cd->output.bom_written) { in _icv_iconv() 220 cd->output in _icv_iconv() [all...] |
/titanic_52/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_upgrade/ |
H A D | zfs_upgrade_001_pos.ksh | 55 for file in $output $oldoutput ; do 66 typeset output=/tmp/zfs-versions.$$ 96 log_must eval '$ZFS upgrade > $output 2>&1' 100 log_must eval '$GREP "${expect_str1} $ZFS_VERSION" $output > /dev/null 2>&1' 101 $ZFS upgrade | $NAWK '$1 ~ "^[0-9]+$" {print $2}'> $output 102 COUNT=$( $WC -l $output | $AWK '{print $1}' ) 106 log_must $GREP "^$fs$" $output 111 $CAT $output 121 log_must eval '$ZFS upgrade > $output 2>&1' 122 log_must eval '$GREP "${expect_str1} $ZFS_VERSION" $output > /de [all...] |
/titanic_52/usr/src/uts/common/gssapi/mechs/krb5/crypto/dk/ |
H A D | dk_encrypt.c | 63 krb5_data *output) in krb5_dk_encrypt() argument 92 if (output->length < enclen) in krb5_dk_encrypt() 116 d2.data = output->data; in krb5_dk_encrypt() 133 d2.data = output->data+plainlen; in krb5_dk_encrypt() 135 output->length = enclen; in krb5_dk_encrypt() 188 const krb5_data *input, krb5_data *output) in trunc_hmac() argument 196 if (hashsize < output->length) in trunc_hmac() 209 (void) memset(output->data, 0, output->length); in trunc_hmac() 211 /* truncate the HMAC output accordingl in trunc_hmac() 227 krb5int_aes_dk_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) krb5int_aes_dk_encrypt() argument [all...] |
H A D | dk_decrypt.c | 46 krb5_data *output, 56 krb5_data *output) in krb5_dk_decrypt() argument 59 ivec, input, output, 0); in krb5_dk_decrypt() 69 krb5_data *output) in krb5int_aes_dk_decrypt() argument 72 ivec, input, output, 96 / 8); in krb5int_aes_dk_decrypt() 82 krb5_data *output, size_t hmacsize) in krb5_dk_decrypt_maybe_trunc_hmac() argument 114 /* Verify input and output lengths. */ in krb5_dk_decrypt_maybe_trunc_hmac() 117 if (output->length < input->length - blocksize - hmacsize) in krb5_dk_decrypt_maybe_trunc_hmac() 174 if (output->length < plainlen) { in krb5_dk_decrypt_maybe_trunc_hmac() 179 output in krb5_dk_decrypt_maybe_trunc_hmac() [all...] |
/titanic_52/usr/src/uts/common/gssapi/mechs/krb5/crypto/hash_provider/ |
H A D | hash_crc32.c | 35 krb5_data *output) in k5_crc32_hash() argument 40 if (output->length != CRC32_CKSUM_LENGTH) in k5_crc32_hash() 49 output->data[0] = c&0xff; in k5_crc32_hash() 50 output->data[1] = (c>>8)&0xff; in k5_crc32_hash() 51 output->data[2] = (c>>16)&0xff; in k5_crc32_hash() 52 output->data[3] = (c>>24)&0xff; in k5_crc32_hash()
|
/titanic_52/usr/src/cmd/refer/ |
H A D | hunt6.c | 44 char res[100], *ar[50], output[TXTLEN], *mput; in baddrop() local 77 if (!auxil(res, output)) { in baddrop() 91 len = corout(res, output, rprog, "", TXTLEN); in baddrop() 95 strncpy(output, mput, TXTLEN); in baddrop() 103 fprintf(stderr, "item %d of %d, tag %s len %d output\n%s\n..\n", in baddrop() 104 i, nf, res, len, output); in baddrop() 115 ar[na++] = output; in baddrop() 133 fputs(output, stdout); in baddrop() 135 strcpy(soutput, output); in baddrop() 145 auxil(char *res, char *output) in auxil() argument [all...] |
/titanic_52/usr/src/cmd/dtrace/test/tst/common/java_api/ |
H A D | tst.MultiAggPrinta.ksh.out | 3 }, tuples = [[]], output = 6 }, tuples = [[]], output = count: 1 7 ], org.opensolaris.os.dtrace.PrintaRecord[aggregations = [], formattedStrings = {[]= }, tuples = [[]], output = ], org.opensolaris.os.dtrace.PrintaRecord[aggregations = [org.opensolaris.os.dtrace.Aggregation[name = a, id = 2, records = [org.opensolaris.os.dtrace.AggregationRecord[tuple = [1, 2], value = 1], org.opensolaris.os.dtrace.AggregationRecord[tuple = [1, 3], value = 3]]], formattedStrings = {[1, 3]= 10 }, tuples = [[1, 3], [1, 2]], output = 17 }, tuples = [[2, 3], [1, 2], [1, 3]], output = 22 }, tuples = [[]], output = 3 4 24 }, tuples = [[]], output = 3 4 26 }, tuples = [[]], output = 3 30 }, tuples = [[2, 3], [1, 2], [1, 3]], output = [2, 3] 0 4 36 }, tuples = [[2, 3], [1, 3], [1, 2]], output [all...] |