/osnet-11/usr/src/lib/libnsl/dial/ |
H A D | 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);
|
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/crypto/hash_provider/ |
H A D | hash_md5.c | 43 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 D | hash_sha1.c | 40 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
|
H A D | hash_ef_generic.c | 13 krb5_data *output) 17 CK_ULONG outlen = output->length; 33 (CK_BYTE_PTR)output->data, &outlen)) != CKR_OK) { 38 output->length = outlen; 48 * and truncating the output. 55 krb5_data *output) 93 (void) memcpy(output->data, &outbuf[outlen-8], 8); 94 output->length = 8; 9 k5_ef_hash(krb5_context context, CK_MECHANISM *mechanism, unsigned int icount, krb5_const krb5_data *input, krb5_data *output) argument 51 k5_ef_mac(krb5_context context, krb5_keyblock *key, krb5_data *ivec, krb5_const krb5_data *input, krb5_data *output) argument
|
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/ |
H A D | vsnprintf.c | 1 /* Formatted output to strings. 34 /* Print formatted output to string STR. Similar to vsprintf, but 42 char *output; local 46 output = vasnprintf (str, &lenbuf, format, args); 49 if (!output) 52 if (output != str) 57 memcpy (str, output, pruned_len); 61 free (output);
|
/osnet-11/usr/src/lib/libldap4/common/ |
H A D | extensions.c | 30 int ldap_create_page_control(LDAP *ld, unsigned int pagesize, struct berval *cookie, char isCritical, LDAPControl **output) argument 35 if (NULL == ld || NULL == output) 51 output);
|
/osnet-11/usr/src/lib/libldap5/sources/ldap/common/ |
H A D | spagectrl.c | 24 int ldap_create_page_control(LDAP *ld, unsigned int pagesize, struct berval *cookie, char isCritical, LDAPControl **output) argument 29 if (NULL == ld || NULL == output) 45 output);
|
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/crypto/ |
H A D | prf.c | 31 *function yields krb5_c_prf_length bytes of output. 55 krb5_data *input, krb5_data *output) 60 assert(input && output); 61 assert(output->data); 69 output->magic = KV5M_DATA; 70 if (ktp->prf_length != output->length) 72 ret = ktp->prf(ktp, key, input, output); 78 krb5_data *input, krb5_data *output) 86 ret = krb5_k_prf(context, key, input, output); 54 krb5_k_prf(krb5_context context, krb5_key key, krb5_data *input, krb5_data *output) argument 77 krb5_c_prf(krb5_context context, const krb5_keyblock *keyblock, krb5_data *input, krb5_data *output) argument
|
/osnet-11/usr/src/grub/grub2/grub-core/commands/ |
H A D | tr.c | 45 char *output = 0; local 80 /* Translate input into output buffer. */ 82 output = grub_malloc (grub_strlen (input) + 1); 83 if (! output) 88 output[i] = grub_toupper (input[i]); 91 output[i] = grub_tolower (input[i]); 94 output[i] = s2[p - s1]; 97 output[i] = input[i]; 99 output[i] = '\0'; 102 grub_env_set (var, output); [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ |
H A D | DB.t | 276 like( $db->{output}, qr/2 not break/, '... should respect @DB::dbline' ); 279 like( $db->{output}, qr/not found/, '... should warn on unfound sub' ); 299 like( $db->{output}, qr/2 not break/, '... should respect @DB::dbline' ); 302 like( $db->{output}, qr/not found/, '... should warn on unfound sub' ); 370 is( $db->{output}, "Subroutine not found.\n", 371 '... should output warning if sub cannot be found'); 405 is( $db->{output}, "Subroutine not found.\n", 406 '... should output warning if sub cannot be found'); 409 like( $db->{output}, qr/1 not action/, 447 is( $db->{output}, "Subroutin 512 sub output { subroutine [all...] |
H A D | DB.pm | 281 $c->output(@_); 386 $s->output("Subroutine not found.\n") unless $i; 389 $s->output("Line $i not breakable.\n"); 401 $s->output("Subroutine not found.\n") unless $i; 404 $s->output("Line $i not breakable.\n"); 433 $s->output("Subroutine not found.\n") unless $i; 459 $s->output("Subroutine not found.\n") unless $i; 462 $s->output("Line $i not actionable.\n"); 478 $s->output("Subroutine not found.\n") unless $i; 541 sub output {} subroutine [all...] |
/osnet-11/usr/src/lib/pkcs11/pkcs11_softtoken/common/ |
H A D | softARCFourCrypt.c | 87 * output: pointer to the output storage. 88 * outputlenp: pointer to the length of the output 91 * Encrypts/Decrypts the 'input' and gets the result in the 'output' 95 * CKR_BUFFER_TOO_SMALL: the output buffer provided by application 102 CK_ULONG inputlen, CK_BYTE_PTR output, CK_ULONG_PTR outputlenp) 111 * If application asks for the length of the output buffer 114 if (output == NULL) { 124 arcfour_crypt(keystream, input, output, inputlen); 101 soft_arcfour_crypt(crypto_active_op_t *active_op, CK_BYTE_PTR input, CK_ULONG inputlen, CK_BYTE_PTR output, CK_ULONG_PTR outputlenp) argument
|
/osnet-11/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]; 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...] |
/osnet-11/usr/src/lib/gss_mechs/mech_dh/backend/mech/ |
H A D | MICwrap.c | 50 gss_buffer_t token /* output token */) 94 * Build the the output token from the message the diffie-hellman 212 gss_buffer_t output /* Contains the ouputed DH_WRAP token*/) 276 /* Serialize the token tok into output using the session keys */ 277 if ((*minor = __make_token(output, NULL, &tok, &keys)) != DH_SUCCESS) { 300 gss_buffer_t output, /* The unwrapped message */ 313 if (minor == 0 || conf_state == 0 || output == GSS_C_NO_BUFFER) 362 * Unwrap the message putting the result in output. We use the 370 *conf_state, &keys, output)) 296 __dh_gss_unseal( OM_uint32 *minor, gss_ctx_id_t context, gss_buffer_t input, gss_buffer_t output, int *conf_state, int *qop_used ) argument
|
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/crypto/keyhash_provider/ |
H A D | hmac_md5.c | 46 const krb5_data *input, krb5_data *output) 118 ret = krb5_hmac (context, &krb5int_hash_md5, &ks, 1, &md5tmp, output); 43 k5_hmac_md5_hash(krb5_context context, const krb5_keyblock *key, krb5_keyusage usage, const krb5_data *iv, const krb5_data *input, krb5_data *output) argument
|
H A D | k5_md5des.c | 49 const krb5_data *input, krb5_data *output) 67 if (output->length != (CONFLENGTH+MD5_CKSUM_LENGTH)) 121 (CK_BYTE_PTR)(output->data + CONFLENGTH), 129 (void) memcpy(output->data, conf, CONFLENGTH); 135 (krb5_pointer) output->data, 136 (krb5_pointer) output->data, output->length, 47 k5_md5des_hash(krb5_context context, krb5_const krb5_keyblock *key, krb5_keyusage usage, const krb5_data *ivec, const krb5_data *input, krb5_data *output) argument
|
/osnet-11/usr/src/lib/krb5/ss/ |
H A D | list_rqs.c | 47 FILE *output; local 82 output = fdopen(fd, "w"); 90 fprintf (output, dgettext(TEXT_DOMAIN, "Available %s requests:\n\n"), 117 fputs(buffer, output); 137 fputs(buffer, output); 145 fclose(output);
|
/osnet-11/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]; local 86 if (pipe(output) == -1) { 106 close(output[0]); 110 * Close stdout and dup to output[1] 116 if (dup(output[ 181 int output[2]; local [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/ |
H A D | B.pm | 282 sub output { subroutine
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/ |
H A D | PlainText.pm | 10 # match its output except for some specific circumstances where other 11 # decisions seemed to produce better output. It uses Pod::Parser and is 156 # a Pod::Paragraph object. Just output it verbatim, but with tabs converted 165 $self->output ($_); 169 # a Pod::Paragraph object. Perform interpolation and output the results. 173 $self->output ($_[0]), return if $$self{VERBATIM}; 216 # Now actually interpolate and output the paragraph. 222 $self->output ($self->reformat ($_ . "\n")); 243 # For all the other sequences, empty content produces no output. 247 # When we output th 516 sub output { $_[1] =~ tr/\\01/ /; print { $_[0]->output_handle } $_[1] } subroutine [all...] |
H A D | Man.pm | 45 # Preamble and *roff output tables 48 # The following is the static preamble which starts all *roff output we 52 # should therefore be run through s/\@CFONT\@/<font>/g before output. 103 .\" output yourself in some meaningful fashion. 368 # For each document we process, output the preamble first. 522 $self->output (".Vb $lines\n$_.Ve\n"); 527 # Pod::Paragraph object. Perform interpolation and output the results. 531 $self->output ($_[0]), return if $$self{VERBATIM}; 546 $self->output (".RS $$self{INDENT}\n"); 550 $self->output (protec 1078 sub output { print { $_[0]->output_handle } $_[1] } subroutine [all...] |
H A D | Text.pm | 11 # its output except for some specific circumstances where other decisions 12 # seemed to produce better output. It uses Pod::Parser and is designed to be 240 # Pod::Paragraph object. Just output it verbatim, but with tabs converted to 249 $self->output ($_); 253 # Pod::Paragraph object. Perform interpolation and output the results. 257 $self->output ($_[0]), return if $$self{VERBATIM}; 261 # Interpolate and output the paragraph. 267 $self->output ($self->reformat ($_ . "\n")); 304 # For all the other formatting codes, empty content produces no output. 308 # When we output th 610 sub output { $_[1] =~ tr/\\01/ /; print { $_[0]->output_handle } $_[1] } subroutine [all...] |
/osnet-11/usr/src/lib/libcryptoutil/common/ |
H A D | pkcs11_uri.c | 52 * Gets a hexadecimal string of the xx:xx:xx-like format and fills the output 54 * error (missing ':', not a hexadecimal character (eg. 'z'), output buffer 61 * number of bytes returned via the output parameter 64 read_id(char *str, unsigned char *output, int out_len) argument 70 (void) memset(output, 0, out_len); 73 /* Counter for the used output bytes. */ 90 output[n] = (unsigned char)x1;
|
/osnet-11/usr/src/grub/grub-0.97/netboot/ |
H A D | pnic.c | 44 * discovering the output length then you're expecting a fixed amount 50 void *output, uint16_t output_max_length, 68 /* Retrieve output length */ 79 if ( output != NULL ) { 81 printf ( "pnic_command %#hx: output buffer too small " 86 /* Retrieve output data */ 88 ((char*)output)[i] = 97 void *output, uint16_t output_max_length, 102 output, output_max_length, 48 pnic_command_quiet( struct nic *nic, uint16_t command, void *input, uint16_t input_length, void *output, uint16_t output_max_length, uint16_t *output_length ) argument 95 pnic_command( struct nic *nic, uint16_t command, void *input, uint16_t input_length, void *output, uint16_t output_max_length, uint16_t *output_length ) argument
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/ |
H A D | Xref.pm | 60 Directs output to C<FILENAME> instead of standard output. 64 Raw output. Instead of producing a human-readable report, outputs a line 69 Don't output the "(definitions)" sections. 345 sub output { subroutine 419 output(); 425 output();
|