Searched refs:trailer (Results 1 - 25 of 79) sorted by path

1234

/macosx-10.10/CPANInternal-159.1/Perl-Tidy-20121207/lib/Perl/
H A DTidy.pm26927 my $trailer = "";
26941 $trailer = " (previous token underlined)";
26945 warning( $msg . $trailer . "\n" );
[all...]
/macosx-10.10/Heimdal-398.1.2/appl/gssmask/
H A Dgssmaestro.c181 int32_t bflags, krb5_data *header, krb5_data *in, krb5_data *trailer,
191 putdata(client, *trailer);
199 int32_t bflags, krb5_data *header, krb5_data *in, krb5_data *trailer,
209 putdata(client, *trailer);
473 krb5_data header, msg, trailer, wrapped, out; local
482 trailer.data = "trailer";
483 trailer.length = 7;
488 val = wrap_token_ext(c1, hc1, conf, bflags, &header, &msg, &trailer, &wrapped);
493 val = unwrap_token_ext(c2, hc2, conf, bflags, &header, &wrapped, &trailer,
180 wrap_token_ext(struct client *client, int32_t hContext, int32_t flags, int32_t bflags, krb5_data *header, krb5_data *in, krb5_data *trailer, krb5_data *out) argument
198 unwrap_token_ext(struct client *client, int32_t hContext, int32_t flags, int32_t bflags, krb5_data *header, krb5_data *in, krb5_data *trailer, krb5_data *out) argument
[all...]
H A Dgssmask.c884 krb5_data token, header, trailer; local
895 retdata(c, trailer);
906 iov_len -= 2; /* skip trailer and padding, aka dce-style */
919 if (trailer.length != 0) {
921 iov[3].buffer.length = trailer.length;
922 iov[3].buffer.value = trailer.data;
970 krb5_data token, header, trailer; local
981 retdata(c, trailer);
986 iov_len -= 1; /* skip trailer and padding, aka dce-style */
1003 if (trailer
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/asn1/
H A DREADME.template74 TAG uses ->ptr (header and trailer)
/macosx-10.10/Heimdal-398.1.2/lib/gssapi/gssapi/
H A Dgssapi_spi.h48 size_t trailer; /**< size of trailer */ member in struct:__anon543
/macosx-10.10/Heimdal-398.1.2/lib/gssapi/krb5/
H A Dcfx.c272 const gss_iov_buffer_desc *trailer)
281 * In DCE style mode we reject having a padding or trailer buffer
287 if (trailer) {
315 gss_iov_buffer_desc *header, *trailer, *padding; local
336 trailer = _gss_mg_find_buffer(iov, iov_count, GSS_IOV_BUFFER_TYPE_TRAILER);
338 major_status = _gk_verify_buffers(minor_status, ctx, header, padding, trailer);
418 if (trailer == NULL) {
424 } else if (GSS_IOV_BUFFER_FLAGS(trailer->type) & GSS_IOV_BUFFER_FLAG_ALLOCATE) {
425 major_status = _gk_allocate_buffer(minor_status, trailer, gsstsize);
428 } else if (trailer
268 _gk_verify_buffers(OM_uint32 *minor_status, struct gsskrb5_crypto *ctx, const gss_iov_buffer_desc *header, const gss_iov_buffer_desc *padding, const gss_iov_buffer_desc *trailer) argument
750 gss_iov_buffer_desc *header, *trailer, *padding; local
1049 gss_iov_buffer_desc *trailer = NULL; local
[all...]
H A Dgsskrb5-private.h47 const gss_iov_buffer_desc *trailer);
/macosx-10.10/Heimdal-398.1.2/lib/gssapi/ntlm/
H A Dcrypto.c155 gss_iov_buffer_t trailer,
159 unsigned char *out = trailer->buffer.value;
199 gss_iov_buffer_t trailer,
203 unsigned char *out = trailer->buffer.value;
208 assert(trailer->buffer.length == 16);
252 gss_iov_buffer_t trailer,
260 if (trailer->buffer.length != 16)
263 _gss_mg_decode_be_uint32((uint8_t *)trailer->buffer.value + 12, &seq);
273 if (ct_memcmp(trailer->buffer.value, outbuf, 16))
283 gss_iov_buffer_t trailer,
153 v1_sign_message(EVP_CIPHER_CTX *signkey, uint32_t seq, gss_iov_buffer_t trailer, gss_iov_buffer_desc *iov, int iov_count) argument
196 v2_sign_message(unsigned char signkey[16], EVP_CIPHER_CTX *sealkey, uint32_t seq, gss_iov_buffer_t trailer, gss_iov_buffer_desc *iov, int iov_count) argument
249 v2_verify_message(unsigned char signkey[16], EVP_CIPHER_CTX *sealkey, uint32_t seq, gss_iov_buffer_t trailer, gss_iov_buffer_desc *iov, int iov_count) argument
280 v2_seal_message(unsigned char signkey[16], uint32_t seq, EVP_CIPHER_CTX *sealkey, gss_iov_buffer_t trailer, gss_iov_buffer_desc *iov, int iov_count) argument
312 v2_unseal_message(unsigned char signkey[16], uint32_t seq, EVP_CIPHER_CTX *sealkey, gss_iov_buffer_t trailer, gss_iov_buffer_desc *iov, int iov_count) argument
353 get_mic_iov(OM_uint32 * minor_status, const gss_ctx_id_t context_handle, gss_qop_t qop_req, gss_iov_buffer_t trailer, gss_iov_buffer_desc *iov, int iov_count ) argument
446 verify_mic_iov(OM_uint32 * minor_status, const gss_ctx_id_t context_handle, gss_iov_buffer_t trailer, gss_qop_t * qop_state, gss_iov_buffer_desc *iov, int iov_count ) argument
610 gss_iov_buffer_t trailer; local
729 gss_iov_buffer_t trailer; local
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/gssapi/
H A Dtest_context.c291 krb5_data token, header, trailer; local
308 trailer.data = trailer_data;
309 trailer.length = 10;
313 trailer.data = NULL;
314 trailer.length = 0;
338 if (trailer.length != 0) {
340 iov[3].buffer.length = trailer.length;
341 iov[3].buffer.value = trailer.data;
/macosx-10.10/IOFWDVComponents-207.4.1/
H A DDVLib.c155 mach_msg_trailer_t trailer; member in struct:__anon1451
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDLib/
H A DIOHIDDeviceClass.cpp519 mach_msg_trailer_t trailer; member in struct:__anon2083
/macosx-10.10/IOKitUser-1050.1.21/
H A DFireWireTest.cpp231 mach_msg_trailer_t trailer; member in struct:__anon2184
H A DIODataQueueClient.c266 mach_msg_trailer_t trailer; member in struct:__anon2190
H A Dionotify.c86 mach_msg_trailer_t trailer; member in struct:__anon2258
/macosx-10.10/IOKitUser-1050.1.21/network.subproj/
H A Dmonitorlink.c288 mach_msg_trailer_t trailer; member in struct:__anon2278
/macosx-10.10/IOKitUser-1050.1.21/pwr_mgt.subproj/
H A DIOPMLibPrivate.c1108 mach_msg_trailer_t trailer;
/macosx-10.10/IOKitUser-1050.1.21/usb.subproj/
H A DUSBTest.cpp350 mach_msg_trailer_t trailer; member in struct:__anon2309
/macosx-10.10/PostgreSQL-97/Support/backup_restore/
H A Dxpostgres464 my $trailer = $3;
474 $out .= 'archive_mode = on' . $trailer;
477 $out .= '#archive_mode = off' . $trailer;
490 my $trailer = $3;
505 $out .= 'archive_command = ' . $command . $trailer;
508 $out .= '#archive_command = \'\'' . $trailer;
521 my $trailer = $3;
531 $out .= 'max_wal_senders = ' . $MAX_WAL_SENDERS . $trailer;
534 $out .= '#max_wal_senders = 0' . $trailer;
547 my $trailer
[all...]
/macosx-10.10/PowerManagement-494.1.2/ioupsd/
H A Dioupsplugin.c48 mach_msg_format_0_trailer_t * trailer; local
56 * Get the caller's credentials (eUID/eGID) from the message trailer.
58 trailer = (mach_msg_security_trailer_t *)((vm_offset_t)request +
61 if ((trailer->msgh_trailer_type == MACH_MSG_TRAILER_FORMAT_0) &&
62 (trailer->msgh_trailer_size >= MACH_MSG_TRAILER_FORMAT_0_SIZE)) {
64 gClientUID = trailer->msgh_sender.val[0];
67 trailer->msgh_sender.val[0],
68 trailer->msgh_sender.val[1]);
/macosx-10.10/Security-57031.1.35/Security/include/security_smime/
H A DSecCMS.c86 static const uint8_t trailer[] = { local
110 CFDataAppendBytes(message, trailer, sizeof(trailer));
/macosx-10.10/Security-57031.1.35/Security/include/security_utilities/
H A Dmach_notify.c213 mach_msg_trailer_t trailer; member in struct:__anon3919
263 mach_msg_trailer_t trailer; member in struct:__anon3920
318 mach_msg_trailer_t trailer; member in struct:__anon3921
363 mach_msg_trailer_t trailer; member in struct:__anon3922
411 mach_msg_trailer_t trailer; member in struct:__anon3923
/macosx-10.10/Security-57031.1.35/Security/libsecurity_smime/lib/
H A DSecCMS.c86 static const uint8_t trailer[] = { local
110 CFDataAppendBytes(message, trailer, sizeof(trailer));
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dmach_notify.c213 mach_msg_trailer_t trailer; member in struct:__anon5081
263 mach_msg_trailer_t trailer; member in struct:__anon5082
318 mach_msg_trailer_t trailer; member in struct:__anon5083
363 mach_msg_trailer_t trailer; member in struct:__anon5084
411 mach_msg_trailer_t trailer; member in struct:__anon5085
/macosx-10.10/Security-57031.1.35/Security/sec/Security/
H A DSecCMS.c645 static const uint8_t trailer[] = { local
669 CFDataAppendBytes(message, trailer, sizeof(trailer));
/macosx-10.10/WTF-7600.1.24/wtf/
H A DFastMalloc.cpp4271 Span* trailer = pageheap->Split(span, needed);
4272 pageheap->Delete(trailer);

Completed in 643 milliseconds

1234