Searched refs:header (Results 226 - 250 of 1386) sorted by relevance

1234567891011>>

/macosx-10.10/bind9-45.101/bind9/lib/dns/
H A Decdb.c83 #define NXDOMAIN(header) \
84 (((header)->attributes & RDATASET_ATTR_NXDOMAIN) != 0)
231 rdatasetheader_t *header; local
243 while ((header = ISC_LIST_HEAD(node->rdatasets)) != NULL) {
246 ISC_LIST_UNLINK(node->rdatasets, header, link);
248 dns_rdataslab_size((unsigned char *)header,
249 sizeof(*header));
250 isc_mem_put(mctx, header, headersize);
391 rdatasetheader_t *header, dns_rdataset_t *rdataset)
403 rdataset->type = header
390 bind_rdataset(dns_ecdb_t *ecdb, dns_ecdbnode_t *node, rdatasetheader_t *header, dns_rdataset_t *rdataset) argument
436 rdatasetheader_t *header; local
754 rdatasetheader_t *header = rdataset->private3; local
[all...]
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dhttp_negotiate_sspi.c83 const char *header)
101 if(checkprefix("GSS-Negotiate", header)) {
105 else if(checkprefix("Negotiate", header)) {
151 header += strlen(neg_ctx->protocol);
152 while(*header && ISSPACE(*header))
153 header++;
155 len = strlen(header);
180 error = Curl_base64_decode(header,
82 Curl_input_negotiate(struct connectdata *conn, bool proxy, const char *header) argument
/macosx-10.10/cxxfilt-11/cxxfilt/libiberty/
H A Dalloca.c34 The header file @file{alloca-conf.h} can be used in conjunction with the
38 manual for more); this header incorporates that logic and more, including
129 /* An "alloca header" is used to:
133 It is very important that sizeof(header) agree with malloc
142 char align[ALIGN_SIZE]; /* To force sizeof(header). */
148 } header; typedef in typeref:union:hdr
150 static header *last_alloca_header = NULL; /* -> last alloca header. */
176 register header *hp; /* Traverses linked list. */
182 register header *n
[all...]
/macosx-10.10/emacs-93/emacs/lib-src/
H A Dalloca.c150 /* An "alloca header" is used to:
154 It is very important that sizeof(header) agree with malloc
163 char align[ALIGN_SIZE]; /* To force sizeof(header). */
169 } header; typedef in typeref:union:hdr
171 static header *last_alloca_header = NULL; /* -> last alloca header. */
196 register header *hp; /* Traverses linked list. */
206 register header *np = hp->h.next;
210 hp = np; /* -> next header. */
225 /* Allocate combined header
[all...]
/macosx-10.10/emacs-93/emacs/src/
H A Dalloca.c150 /* An "alloca header" is used to:
154 It is very important that sizeof(header) agree with malloc
163 char align[ALIGN_SIZE]; /* To force sizeof(header). */
169 } header; typedef in typeref:union:hdr
171 static header *last_alloca_header = NULL; /* -> last alloca header. */
196 register header *hp; /* Traverses linked list. */
206 register header *np = hp->h.next;
210 hp = np; /* -> next header. */
225 /* Allocate combined header
[all...]
/macosx-10.10/gnudiff-19/diffutils/lib/
H A Dalloca.c141 /* An "alloca header" is used to:
145 It is very important that sizeof(header) agree with malloc
154 char align[ALIGN_SIZE]; /* To force sizeof(header). */
160 } header; typedef in typeref:union:hdr
162 static header *last_alloca_header = NULL; /* -> last alloca header. */
186 register header *hp; /* Traverses linked list. */
196 register header *np = hp->h.next;
200 hp = np; /* -> next header. */
215 /* Allocate combined header
[all...]
/macosx-10.10/libarchive-30/libarchive/libarchive/
H A Darchive_read_support_compression_rpm.c44 unsigned char header[16]; member in struct:rpm
203 memcpy(rpm->header+rpm->hpos, b, n);
209 if (rpm->header[0] != 0x8e ||
210 rpm->header[1] != 0xad ||
211 rpm->header[2] != 0xe8 ||
212 rpm->header[3] != 0x01) {
217 "Unrecoginized rpm header");
221 *buff = rpm->header;
226 section = archive_be32dec(rpm->header+8);
227 bytes = archive_be32dec(rpm->header
[all...]
/macosx-10.10/llvmCore-3425.0.34/runtime/libprofile/
H A DPathProfiling.c91 /* If this function was executed, write the header */
102 "error: unable to write function header to output file.\n");
118 PathProfileHeader header; local
121 header.fnNumber = functionNumber;
122 header.numEntries = hashTable->pathCounts;
124 if (write(outFile, &header, sizeof(PathProfileHeader)) < 0) {
125 fprintf(stderr, "error: unable to write function header to output file.\n");
224 uint32_t header[2] = { PathInfo, 0 }; local
228 /* skip over the header for now */
235 writeArrayTable(i+1,&ft[i],header
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/vfs/
H A Dvfs_xattr.c1277 attribute header, attribute entries, and attribute data.
1324 * Note: ATTR_MAX_HDR_SIZE is the largest attribute header
1329 * separately from the attribute header I/O.
1377 u_int32_t total_size; /* file offset of end of attribute header + entries + data */
1489 * Sanity check and swap the header of an AppleDouble file. Assumes the buffer
1496 * If the header is invalid, ENOATTR is returned.
1498 * NOTE: Does not attempt to validate the extended attributes header that
1507 apple_double_header_t *header; local
1510 header = (apple_double_header_t *) ainfop->rawdata;
1512 /* Is the file big enough to contain an AppleDouble header
1590 attr_header_t *header; local
1711 attr_header_t *header; local
2095 attr_header_t *header; local
[all...]
/macosx-10.10/Security-57031.1.35/securityd/src/
H A Ddbcrypto.cpp123 CssmKey::Header header = master.header(); local
124 if (header.keyClass() != CSSM_KEYCLASS_SESSION_KEY)
126 if (header.algorithm() != CSSM_ALGID_3DES_3KEY_EDE)
330 // extract and hold some header bits the CSP does not want to see
371 blob->header = key.header();
372 h2ni(blob->header); // endian-correct the header
413 wrappedKey.KeyHeader = blob->header;
[all...]
/macosx-10.10/AppleUSBIrDA-145.2.4/IrDA/Stack/
H A DIrLAPConn.cpp126 {kDemuxInvalidHeaderEvent, "irlapconn: invalid header"},
968 TLMPDUHeader header; local
972 validFormat = ExtractHeader(replyBuffer, header, headerLength);
975 if (DataDelivered(getRequest, header, headerLength, replyBuffer)) {
1011 TLMPDUHeader header; local
1014 //Boolean validFormat = ExtractHeader(replyBuffer, header, headerLength);
1019 validFormat = ExtractHeader(replyBuffer, header, headerLength);
1023 if (lsapConn->YourData(header, true /*justChecking*/)) {
1082 TLMPDUHeader header; local
1089 validFormat = ExtractHeader(inputBuffer, header, headerLengt
1163 ReplyToInvalidFrame(TLMPDUHeader& header, UByte replyOpCode, UByte replyInfo) argument
1190 ExtractHeader(CBufferSegment* inputBuffer, TLMPDUHeader& header, ULong& length) argument
1248 DataDelivered(TIrGetRequest* getRequest, TLMPDUHeader& header, ULong headerLength, CBufferSegment* dataBuffer) argument
[all...]
/macosx-10.10/gnutar-453/gnutar/src/
H A Dbuffer.c257 /* Probably a valid header */
1181 union block *header;
1207 header = find_next_block ();
1208 if (!header)
1211 switch (header->header.typeflag)
1217 xheader_decode (&dummy); /* decodes values from the global header */
1221 /* We have read the extended header of the first member in
1233 assign_string (&volume_label, current_header->header.name);
1234 set_next_block_after (header);
1172 union block *header; local
1622 union block *header; local
[all...]
/macosx-10.10/Security-57031.1.35/Security/sec/Security/Tool/
H A Dcodesign.c272 struct mach_header header; local
273 require(1 == fread(&header, sizeof(header), 1, binary), out);
274 if ((header.magic == MH_MAGIC) || (header.magic == MH_MAGIC_64)) {
275 if (header.magic == MH_MAGIC_64)
279 CFStringRef type = CFStringCreateWithFormat(kCFAllocatorDefault, NULL, CFSTR("CPU type: (%d,%d)"), header.cputype, header.cpusubtype);
296 require(1 == fread(&header, sizeof(header),
[all...]
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dcollationdatawriter.cpp162 headerSize = 0; // udata_create() writes the header
164 DataHeader header; local
165 header.dataHeader.magic1 = 0xda;
166 header.dataHeader.magic2 = 0x27;
167 uprv_memcpy(&header.info, &dataInfo, sizeof(UDataInfo));
168 uprv_memcpy(header.info.dataVersion, dataVersion, sizeof(UVersionInfo));
169 headerSize = (int32_t)sizeof(header);
177 // We add to the header size here.
183 header.dataHeader.headerSize = (uint16_t)headerSize;
185 uprv_memcpy(dest, &header, sizeo
[all...]
/macosx-10.10/emacs-93/emacs/lisp/emacs-lisp/
H A Dlisp-mnt.el33 ;; First, it knows about the header conventions for library packages.
42 ;; This file is an example of the header conventions. Note the following
91 ;; may be an RCS or SCCS header.
102 ;; of a comment header. Headers starting with `X-' should never be used
133 ;; since they define, or are defined by, the header format. -- fx
135 (defcustom lm-header-prefix "^;+[ \t]+\\(@(#)\\)?[ \t]*\\$?"
160 (defcustom lm-any-header ".*"
165 (defcustom lm-commentary-header "Commentary\\|Documentation"
170 (defcustom lm-history-header "Change ?Log\\|History"
179 (defun lm-get-header
[all...]
/macosx-10.10/xnu-2782.1.97/libkern/c++/
H A DOSRuntime.cpp328 kernel_mach_header_t * header; local
333 header = (kernel_mach_header_t *)kmodInfo->address;
334 segment = firstsegfromheader(header);
336 for (segment = firstsegfromheader(header);
338 segment = nextsegfromheader(header, segment)) {
409 kernel_mach_header_t * header = NULL; local
429 header = (kernel_mach_header_t *)kmodInfo->address;
441 /* Scan the header for all constructor sections, in any
444 for (segment = firstsegfromheader(header);
446 segment = nextsegfromheader(header, segmen
[all...]
/macosx-10.10/dcerpc-61/dcerpc/ncklib/
H A Dcncassm.c104 #include <cnpkt.h> /* NCA Connection protocol header */
196 * active_refs_pred routines. See the routine header of
253 * See the routine header of mark_abort_action_rtn for more
258 * set_secondary_addr action routines. See the routine header of
263 * abort_assoc action routines. See the routine header of
268 * routines. See the routine header of rem_mark_action_rtn for more
273 * routines. See the routine header of rem_mark_discon_action_rtn for more
278 * and abort_assoc action routines. See the routine header of
1337 rpc_cn_packet_t *header;
1345 header
1317 rpc_cn_packet_t *header; local
1386 rpc_cn_packet_t *header; local
1863 rpc_cn_packet_t *header; local
2166 rpc_cn_packet_t *header; local
3010 rpc_cn_packet_t *header; local
3506 rpc_cn_packet_t *header; local
3704 rpc_cn_packet_t *header; local
4658 rpc_cn_packet_t *header; local
[all...]
/macosx-10.10/BerkeleyDB-21/db/dist/
H A Ds_recover6 header=/tmp/__db_a
46 -v header_file=$header \
52 cmp $header $f > /dev/null 2>&1 ||
54 rm -f $f && cp $header $f && chmod 444 $f)
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.25/eg/
H A Dtracker.pl26 $message->request->headers->header( 'Referer' ) || 'NULL',
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.300/eg/
H A Dtracker.pl26 $message->request->headers->header( 'Referer' ) || 'NULL',
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.300/lib/HTTP/Proxy/HeaderFilter/
H A Dstandard.pm15 # standard proxy header filter (RFC 2616)
19 # the Via: header
23 $headers->header(
25 $message->headers->header('Via') || (), $via
29 # the X-Forwarded-For header
39 for map { split_header_words($_) } $headers->header('Connection');
64 and defined $headers->header('Max-Forwards') ) {
66 ( $headers->header('Max-Forwards'), $message->method );
79 $response->header( Allow => join ', ', @HTTP::Proxy::METHODS );
83 # The Max-Forwards header fiel
[all...]
/macosx-10.10/CrackLib-37765/cracklib27/cracklib/
H A Dpacker.h46 struct pi_header header; member in struct:__anon448
52 #define PW_WORDS(x) ((x)->header.pih_numwords)
/macosx-10.10/ICU-531.30/icuSources/layout/
H A DSegmentArrayProcessor.cpp27 LEReferenceTo<NonContextualGlyphSubstitutionHeader> header(morphSubtableHeader, success);
28 segmentArrayLookupTable = LEReferenceTo<SegmentArrayLookupTable>(morphSubtableHeader, success, (const SegmentArrayLookupTable*)&header->table);
H A DSegmentArrayProcessor2.cpp27 const LEReferenceTo<NonContextualGlyphSubstitutionHeader2> header(morphSubtableHeader, success);
28 segmentArrayLookupTable = LEReferenceTo<SegmentArrayLookupTable>(morphSubtableHeader, success, &header->table); // don't parent to 'header' as it is on the stack
H A DSegmentSingleProcessor.cpp27 LEReferenceTo<NonContextualGlyphSubstitutionHeader> header(morphSubtableHeader, success);
28 segmentSingleLookupTable = LEReferenceTo<SegmentSingleLookupTable>(morphSubtableHeader, success, (const SegmentSingleLookupTable*)&header->table);

Completed in 261 milliseconds

1234567891011>>