/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/os/ |
H A D | write_msg.c | 34 krb5_write_message(krb5_context context, krb5_pointer fdp, krb5_data *outbuf) argument 39 len = htonl(outbuf->length); 43 if (outbuf->length && (krb5_net_write(context, fd, outbuf->data, outbuf->length) < 0)) {
|
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/ |
H A D | mk_rep.c | 34 Formats a KRB_AP_REP message into outbuf. 36 The outbuf buffer storage is allocated, and should be freed by the 43 krb5_mk_rep(krb5_context context, krb5_auth_context auth_context, krb5_data *outbuf) argument 82 *outbuf = *toutbuf;
|
H A D | mk_req.c | 40 Formats a KRB_AP_REQ message into outbuf. 52 The outbuf buffer storage is allocated, and should be freed by the 61 krb5_data *in_data, krb5_ccache ccache, krb5_data *outbuf) 88 in_data, credsp, outbuf); 59 krb5_mk_req(krb5_context context, krb5_auth_context *auth_context, krb5_flags ap_req_options, char *service, char *hostname, krb5_data *in_data, krb5_ccache ccache, krb5_data *outbuf) argument
|
H A D | mk_priv.c | 42 krb5_mk_priv_basic(krb5_context context, const krb5_data *userdata, const krb5_keyblock *keyblock, krb5_replay_data *replaydata, krb5_address *local_addr, krb5_address *remote_addr, krb5_pointer i_vector, krb5_data *outbuf) argument 97 *outbuf = *scratch2; 118 const krb5_data *userdata, krb5_data *outbuf, 203 auth_context->i_vector, outbuf))) { 216 krb5_xfree(outbuf); 117 krb5_mk_priv(krb5_context context, krb5_auth_context auth_context, const krb5_data *userdata, krb5_data *outbuf, krb5_replay_data *outdata) argument
|
H A D | mk_req_ext.c | 41 Formats a KRB_AP_REQ message into outbuf, with more complete options than 44 outbuf, ap_req_options, checksum, and ccache are used in the 63 The outbuf buffer storage is allocated, and should be freed by the 132 krb5_creds *in_creds, krb5_data *outbuf) 255 *outbuf = *toutbuf; 130 krb5_mk_req_extended(krb5_context context, krb5_auth_context *auth_context, krb5_flags ap_req_options, krb5_data *in_data, krb5_creds *in_creds, krb5_data *outbuf) argument
|
H A D | mk_safe.c | 48 Formats a KRB_SAFE message into outbuf. 57 The outbuf buffer storage is allocated, and should be freed by the 67 krb5_cksumtype sumtype, krb5_data *outbuf) 126 *outbuf = *scratch2; 141 krb5_mk_safe(krb5_context context, krb5_auth_context auth_context, const krb5_data *userdata, krb5_data *outbuf, krb5_replay_data *outdata) argument 262 sumtype, outbuf))) { 275 krb5_xfree(outbuf); 285 krb5_xfree(outbuf); 64 krb5_mk_safe_basic(krb5_context context, const krb5_data *userdata, const krb5_keyblock *keyblock, krb5_replay_data *replaydata, krb5_address *local_addr, krb5_address *remote_addr, krb5_cksumtype sumtype, krb5_data *outbuf) argument
|
H A D | rd_priv.c | 41 data in *outbuf. 48 outbuf points to allocated storage which the caller should 60 krb5_rd_priv_basic(krb5_context context, const krb5_data *inbuf, const krb5_keyblock *keyblock, const krb5_address *local_addr, const krb5_address *remote_addr, krb5_pointer i_vector, krb5_replay_data *replaydata, krb5_data *outbuf) argument 134 *outbuf = privmsg_enc_part->user_data; 155 krb5_rd_priv(krb5_context context, krb5_auth_context auth_context, const krb5_data *inbuf, krb5_data *outbuf, krb5_replay_data *outdata) argument 217 &replaydata, outbuf))) { 265 krb5_xfree(outbuf->data);
|
H A D | rd_safe.c | 36 data in *outbuf. 43 outbuf points to allocated storage which the caller should free when finished. 52 krb5_replay_data *replaydata, krb5_data *outbuf) 152 *outbuf = message->user_data; 163 const krb5_data *inbuf, krb5_data *outbuf, 225 &replaydata, outbuf))) { 275 free(outbuf->data); 48 krb5_rd_safe_basic(krb5_context context, const krb5_data *inbuf, const krb5_keyblock *keyblock, const krb5_address *recv_addr, const krb5_address *sender_addr, krb5_replay_data *replaydata, krb5_data *outbuf) argument 162 krb5_rd_safe(krb5_context context, krb5_auth_context auth_context, const krb5_data *inbuf, krb5_data *outbuf, krb5_replay_data *outdata) argument
|
H A D | recvauth.c | 62 krb5_data outbuf; local 208 if ((retval = krb5_mk_error(context, &error, &outbuf)) != 0) { 217 outbuf.length = 0; 218 outbuf.data = 0; 221 retval = krb5_write_message(context, fd, &outbuf); 222 if (outbuf.data) { 223 krb5_xfree(outbuf.data); 233 if ((retval = krb5_mk_rep(context, *auth_context, &outbuf))) { 236 retval = krb5_write_message(context, fd, &outbuf); 237 krb5_xfree(outbuf [all...] |
H A D | sendauth.c | 54 krb5_data inbuf, outbuf; local 67 outbuf.length = strlen(sendauth_version) + 1; 68 outbuf.data = (char *) sendauth_version; 69 if ((retval = krb5_write_message(context, fd, &outbuf))) 71 outbuf.length = strlen(appl_version) + 1; 72 outbuf.data = appl_version; 73 if ((retval = krb5_write_message(context, fd, &outbuf))) 168 &outbuf)) != 0) 175 retval = krb5_write_message(context, fd, &outbuf); 176 free(outbuf [all...] |
H A D | fwd_tgt.c | 41 krb5_fwd_tgt_creds(krb5_context context, krb5_auth_context auth_context, char *rhost, krb5_principal client, krb5_principal server, krb5_ccache cc, int forwardable, krb5_data *outbuf) argument 207 *outbuf = *scratch;
|
/illumos-gate/usr/src/cmd/lp/cmd/lptest/ |
H A D | lptest.c | 28 char outbuf[BUFSIZ]; local 30 setbuf(stdout, outbuf);
|
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/crypto/hash_provider/ |
H A D | hash_ef_generic.c | 68 char *outbuf = NULL; local 88 outbuf = (char *)malloc(outlen); 89 if (outbuf == NULL) 91 (void) memset(outbuf, 0, outlen); 92 if (outbuf != NULL && inbuf != NULL) { 99 (mit_des_cblock *)outbuf, 104 (void) memcpy(output->data, &outbuf[outlen-8], 8); 110 if (outbuf != NULL) 111 free(outbuf);
|
/illumos-gate/usr/src/lib/libfakekernel/common/ |
H A D | kiconv.c | 47 char **outbuf, 54 outbuf, outbytesleft); 43 kiconv( kiconv_t handle, char **inbuf, size_t *inbytesleft, char **outbuf, size_t *outbytesleft, int *errno_out) argument
|
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/ |
H A D | DAAdvertiser.java | 59 static private byte[] outbuf = null; field in class:DAAdvertiser 143 outbuf = baos.toByteArray(); 246 return outbuf;
|
/illumos-gate/usr/src/lib/libpp/common/ |
H A D | ppdata.c | 63 static char outbuf[2*(PPBUFSIZ+MAXTOKEN)];/* output buffer */ variable 101 &outbuf[0], /* outb */ 102 &outbuf[0], /* outbuf */ 103 &outbuf[0], /* outp */ 104 &outbuf[PPBUFSIZ], /* oute */
|
/illumos-gate/usr/src/cmd/listen/ |
H A D | lssmb.c | 289 char *outbuf; /* return string */ local 294 if (outbuf = malloc(n * 2 + 1)) { 296 for (i = 0, p = outbuf; i < n; ++inbuf, p += 2, ++i) { 299 return(outbuf);
|
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/keyhash_provider/ |
H A D | k_hmac_md5.c | 57 char t[4], outbuf[MD5_CKSUM_LENGTH]; local 124 md5tmp.data = (void *)outbuf; 125 md5tmp.length = sizeof(outbuf);
|
/illumos-gate/usr/src/lib/libresolv2/common/inet/ |
H A D | inet_net_ntop.c | 177 char outbuf[sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255/128")]; local 187 cp = outbuf; 259 if (cp != outbuf) 268 if (strlen(outbuf) + 1 > size) 270 strcpy(dst, outbuf);
|
/illumos-gate/usr/src/cmd/filesync/ |
H A D | debug.c | 170 static char outbuf[MAX_NAME]; local 172 outbuf[0] = 0; 175 if (outbuf[0]) 176 strcat(outbuf, "|"); 177 strcat(outbuf, map[i].fl_name); 180 return (outbuf);
|
/illumos-gate/usr/src/cmd/audio/utilities/ |
H A D | AudioTypeChannel.cc | 71 AudioBuffer* outbuf; local 119 outbuf = new AudioBuffer(length, "(Channel conversion buffer)"); 120 if (outbuf == 0) 122 if (err = outbuf->SetHeader(newhdr)) { 123 delete outbuf; 137 cout = (char *)outbuf->GetAddress(); 154 sout = (short *)outbuf->GetAddress(); 177 cout = (char *)outbuf->GetAddress(); 190 if (outbuf != inbuf) 191 delete outbuf; [all...] |
H A D | AudioTypeG72X.cc | 100 AudioBuffer* outbuf; local 139 outbuf = new AudioBuffer(length + pad, "(G72x conversion buffer)"); 140 if (outbuf == 0) 142 if (err = outbuf->SetHeader(outhdr)) { 143 delete outbuf; 149 outptr = (unsigned char *)outbuf->GetAddress(); 223 if (outbuf != inbuf) 224 delete outbuf; 233 outbuf->SetLength(length); 234 inbuf = outbuf; 241 Flush( AudioBuffer*& outbuf) argument [all...] |
H A D | AudioTypeMux.cc | 70 AudioBuffer* outbuf; local 170 outbuf = new AudioBuffer(length, 172 if (outbuf == 0) 174 if (err = outbuf->SetHeader(outhdr)) { 175 delete outbuf; 199 out = (unsigned char *)outbuf->GetAddress(); 212 outbuf->SetLength(length); 224 outbuf->SetLength(length); 225 inbuf = outbuf;
|
H A D | AudioTypeSampleRate.cc | 78 AudioBuffer* outbuf; local 123 outbuf = new AudioBuffer(length, "(SampleRate conversion buffer)"); 124 if (outbuf == 0) 126 if (err = outbuf->SetHeader(outhdr)) { 127 delete outbuf; 134 (short *)outbuf->GetAddress()); 139 outbuf->GetHeader().Time_to_Samples(outbuf->GetSize()); 144 if (nsamps > outbuf->GetHeader().Time_to_Samples(outbuf 161 Flush( AudioBuffer*& outbuf) argument [all...] |
/illumos-gate/usr/src/lib/libprtdiag_psr/sparc/ontario/common/ |
H A D | huron.c | 387 huron_get_first_compatible_value(picl_nodehdl_t nodeh, char **outbuf) argument 410 *outbuf = pval; 440 *outbuf = pval;
|