HomeSort by relevance Sort by last modified time
    Searched defs:Header (Results 26 - 50 of 174) sorted by null

12 3 4 5 6 7

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
windot11.h 29 NDIS_OBJECT_HEADER Header;
  /system/core/include/utils/
BlobCache.h 171 // A Header is the header for the entire BlobCache serialization format. No
173 struct Header {
185 // mNumEntries is number of cache entries following the header in the
190 // An EntryHeader is the header for a serialized cache entry. No need to
  /external/chromium_org/base/
pickle.h 103 // The Pickle's data has a header which contains the size of the Pickle's
104 // payload. It can optionally support additional space in the header. That
110 // Initialize a Pickle object using the default header size.
113 // Initialize a Pickle object with the specified header size in bytes, which
114 // must be greater-than-or-equal-to sizeof(Pickle::Header). The header size
115 // will be rounded up to ensure that the header size is 32bit-aligned.
120 // should be used on the Pickle when initialized this way. The header
265 // Payload follows after allocation of Header (header size is customizable)
    [all...]
  /external/chromium_org/components/os_crypt/
ie7_password_win.cc 21 DWORD pre_header_size; // Size of this header structure. Always 12.
22 DWORD header_size; // Size of the real Header: sizeof(Header) +
27 struct Header {
30 // sizeof(Header).
46 Header header; // Contains the number of items. member in struct:__anon11065::PasswordEntry
65 const int entry_count = information->header.item_count;
69 if (information->header.fixed_header_size != sizeof(Header))
    [all...]
  /external/chromium_org/net/dns/
dns_protocol.h 18 // DNS packet consists of a header followed by questions and/or answers.
21 // Header format.
76 // On-the-wire header. All uint16 are in network order.
78 struct NET_EXPORT_PRIVATE Header {
  /external/chromium_org/ppapi/proxy/
serialized_handle.h 33 // Header contains the fields that we send in IPC messages, apart from the
35 struct Header {
36 Header() : type(INVALID), size(0), open_flags(0) {}
37 Header(Type type_arg,
122 Header header() const { function in class:ppapi::proxy::SerializedHandle
123 return Header(type_, size_, open_flags_, file_io_);
129 // Write/Read a Header, which contains all the data except the handle. This
132 static bool WriteHeader(const Header& hdr, Pickle* pickle);
133 static bool ReadHeader(PickleIterator* iter, Header* hdr)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTParser.h 63 Header,
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/
header.h 24 class Header : public RefCounted<Header> {
26 // Make a partial header with only the basic info for an empty new table.
27 explicit Header(int32_t tag);
29 // Make a partial header with only the basic info for a new table.
30 Header(int32_t tag, int32_t length);
32 // Make a full header as read from an existing font.
33 Header(int32_t tag, int64_t checksum, int32_t offset, int32_t length);
34 virtual ~Header();
45 // Is the offset in the header valid. The offset will not be valid if th
    [all...]
  /external/chromium_org/third_party/skia/third_party/ktx/
ktx.h 76 // This header captures all of the data that describes the format
78 struct Header {
92 Header() { memset(this, 0, sizeof(*this)); }
115 // The header will describe the format of this data.
  /external/clang/lib/CodeGen/
CGLoopInfo.h 56 /// \brief Construct a new LoopInfo for the loop with entry Header.
57 LoopInfo(llvm::BasicBlock *Header, const LoopAttributes &Attrs);
62 /// \brief Get the header block of this loop.
63 llvm::BasicBlock *getHeader() const { return Header; }
71 /// \brief Header block of this loop.
72 llvm::BasicBlock *Header;
89 void push(llvm::BasicBlock *Header);
  /external/compiler-rt/lib/profile/
InstrProfilingFile.c 35 /* Create the header. */
36 uint64_t Header[PROFILE_HEADER_SIZE];
37 Header[0] = __llvm_profile_get_magic();
38 Header[1] = __llvm_profile_get_version();
39 Header[2] = DataSize;
40 Header[3] = CountersSize;
41 Header[4] = NamesSize;
42 Header[5] = (uintptr_t)CountersBegin;
43 Header[6] = (uintptr_t)NamesBegin;
48 CHECK_fwrite(Header, sizeof(uint64_t), PROFILE_HEADER_SIZE, File)
    [all...]
  /external/libvorbis/doc/
04-codec.tex 17 \subsection{Header decode and decode setup}
19 A Vorbis bitstream begins with three header packets. The header
20 packets are, in order, the identification header, the comments header,
21 and the setup header. All are required for decode compliance. An
22 end-of-packet condition during decoding the first or third header
24 comment header is a non-fatal error condition.
26 \subsubsection{Common header decode}
28 Each header packet begins with the same header fields
    [all...]
  /external/llvm/include/llvm/Analysis/
IntervalIterator.h 46 // BasicBlock that is the header node. This is the opposite of
95 // See file header for conditions of use
167 BasicBlock *Header = getNodeHeader(Node);
168 if (Visited.count(Header)) return false;
170 Interval *Int = new Interval(Header);
171 Visited.insert(Header); // The header has now been visited!
  /external/llvm/include/llvm/Object/
COFFYAML.h 50 COFF::section Header;
59 COFF::symbol Header;
73 COFF::header Header;
149 struct MappingTraits<COFF::header> {
150 static void mapping(IO &IO, COFF::header &H);
  /external/llvm/lib/Transforms/Utils/
LoopUnrollRuntime.cpp 68 // the loop header or the loop exit block.
148 BasicBlock *Header = L->getHeader();
150 Function *F = Header->getParent();
163 if (Header == *BB) {
170 for (BasicBlock::iterator I = Header->begin(); isa<PHINode>(I); ++I) {
270 BasicBlock *Header = L->getHeader();
274 BasicBlock *PEnd = SplitEdge(PH, Header, LPM->getAsPass());
303 Function *F = Header->getParent();
  /external/llvm/tools/obj2yaml/
coff2yaml.cpp 23 void dumpHeader(const object::coff_file_header *Header);
40 const object::coff_file_header *Header;
41 check(Obj.getCOFFHeader(Header));
42 dumpHeader(Header);
43 dumpSections(Header->NumberOfSections);
44 dumpSymbols(Header->NumberOfSymbols);
47 void COFFDumper::dumpHeader(const object::coff_file_header *Header) {
48 YAMLObj.Header.Machine = Header->Machine;
49 YAMLObj.Header.Characteristics = Header->Characteristics
    [all...]
  /external/sfntly/cpp/src/sfntly/table/
header.h 24 class Header : public RefCounted<Header> {
26 // Make a partial header with only the basic info for an empty new table.
27 explicit Header(int32_t tag);
29 // Make a partial header with only the basic info for a new table.
30 Header(int32_t tag, int32_t length);
32 // Make a full header as read from an existing font.
33 Header(int32_t tag, int64_t checksum, int32_t offset, int32_t length);
34 virtual ~Header();
45 // Is the offset in the header valid. The offset will not be valid if th
    [all...]
  /external/skia/third_party/ktx/
ktx.h 76 // This header captures all of the data that describes the format
78 struct Header {
92 Header() { memset(this, 0, sizeof(*this)); }
115 // The header will describe the format of this data.
  /external/smack/src/org/xbill/DNS/
Header.java 9 * A DNS message header
15 public class Header implements Cloneable {
23 /** The length of a DNS Header in wire format. */
34 * Create a new empty header.
38 Header(int id) {
44 * Create a new empty header with a random message id
47 Header() {
52 * Parses a Header from a stream containing DNS wire format.
54 Header(DNSInput in) throws IOException {
62 * Creates a new Header from its DNS wire format representatio
    [all...]
  /frameworks/base/core/java/android/app/backup/
BackupHelperDispatcher.java 31 private static class Header {
32 int chunkSize; // not including the header
50 Header header = new Header(); local
57 while ((err = readHeader_native(header, oldStateFD)) >= 0) {
59 BackupHelper helper = helpers.get(header.keyPrefix);
60 Log.d(TAG, "handling existing helper '" + header.keyPrefix + "' " + helper);
62 doOneBackup(oldState, data, newState, header, helper);
63 helpers.remove(header.keyPrefix)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
generator.py 15 from email.header import Header
54 header. When a header line is longer (in characters, with tabs
55 expanded to 8 spaces) than maxheaderlen, the header will split as
56 defined in the Header class. Set maxheaderlen to zero to disable
57 header wrapping. The default is 78, as recommended (but not required)
104 # Do The Right Thing, and can still modify the Content-Type: header if
147 elif isinstance(v, Header):
148 # Header instances know what to d
    [all...]
header.py 5 """Header encoding and decoding functionality."""
8 'Header',
50 # Find a header embedded in a putative header value. Used to check for
51 # header injection attack.
63 def decode_header(header):
64 """Decode a message header value without converting charset.
67 decoded parts of the header. Charset is None for non-encoded parts of the
68 header, otherwise a lower-case string containing the name of the character
74 # If no encoding, just return the header
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
generator.py 15 from email.header import Header
54 header. When a header line is longer (in characters, with tabs
55 expanded to 8 spaces) than maxheaderlen, the header will split as
56 defined in the Header class. Set maxheaderlen to zero to disable
57 header wrapping. The default is 78, as recommended (but not required)
104 # Do The Right Thing, and can still modify the Content-Type: header if
147 elif isinstance(v, Header):
148 # Header instances know what to d
    [all...]
header.py 5 """Header encoding and decoding functionality."""
8 'Header',
50 # Find a header embedded in a putative header value. Used to check for
51 # header injection attack.
63 def decode_header(header):
64 """Decode a message header value without converting charset.
67 decoded parts of the header. Charset is None for non-encoded parts of the
68 header, otherwise a lower-case string containing the name of the character
74 # If no encoding, just return the header
    [all...]
  /external/lldb/include/lldb/Core/
MappedHash.h 58 struct Header
70 Header () :
82 ~Header()
110 s.Printf ("header.magic = 0x%8.8x\n", magic);
111 s.Printf ("header.version = 0x%4.4x\n", version);
112 s.Printf ("header.hash_function = 0x%4.4x\n", hash_function);
113 s.Printf ("header.bucket_count = 0x%8.8x %u\n", bucket_count, bucket_count);
114 s.Printf ("header.hashes_count = 0x%8.8x %u\n", hashes_count, hashes_count);
115 s.Printf ("header.header_data_len = 0x%8.8x %u\n", header_data_len, header_data_len);
182 typedef Header<HeaderDataType> HeaderType
229 HeaderType header; local
    [all...]

Completed in 1273 milliseconds

12 3 4 5 6 7