Home
last modified time | relevance | path

Searched defs:header (Results 1 – 25 of 2623) sorted by relevance

12345678910>>...105

/external/bazelbuild-rules_go/go/tools/builders/
Dar.go26 type header struct { struct
27 NameRaw [16]byte
28 ModTimeRaw [12]byte
29 OwnerIdRaw [6]byte
30 GroupIdRaw [6]byte
31 FileModeRaw [8]byte
32 FileSizeRaw [10]byte
33 EndRaw [2]byte
36 func (h *header) name() string {
40 func (h *header) size() int64 {
[all …]
/external/cronet/net/third_party/quiche/src/quiche/http2/test_tools/
Dhttp2_frame_decoder_listener_test_util.cc19 const Http2FrameHeader& header) { in OnFrameHeader()
25 const Http2FrameHeader& header) { in OnDataStart()
37 const Http2FrameHeader& header) { in OnHeadersStart()
56 const Http2FrameHeader& header, const Http2PriorityFields& priority) { in OnPriorityFrame()
61 const Http2FrameHeader& header) { in OnContinuationStart()
79 const Http2FrameHeader& header, Http2ErrorCode error_code) { in OnRstStream()
84 const Http2FrameHeader& header) { in OnSettingsStart()
98 const Http2FrameHeader& header) { in OnSettingsAck()
103 const Http2FrameHeader& header, const Http2PushPromiseFields& promise, in OnPushPromiseStart()
113 void FailingHttp2FrameDecoderListener::OnPing(const Http2FrameHeader& header, in OnPing()
[all …]
Dframe_parts_collector_listener.cc14 const Http2FrameHeader& header) { in OnFrameHeader()
20 void FramePartsCollectorListener::OnDataStart(const Http2FrameHeader& header) { in OnDataStart()
36 const Http2FrameHeader& header) { in OnHeadersStart()
59 const Http2FrameHeader& header, in OnPriorityFrame()
66 const Http2FrameHeader& header) { in OnContinuationStart()
87 void FramePartsCollectorListener::OnRstStream(const Http2FrameHeader& header, in OnRstStream()
94 const Http2FrameHeader& header) { in OnSettingsStart()
113 const Http2FrameHeader& header) { in OnSettingsAck()
119 const Http2FrameHeader& header, const Http2PushPromiseFields& promise, in OnPushPromiseStart()
133 void FramePartsCollectorListener::OnPing(const Http2FrameHeader& header, in OnPing()
[all …]
Dframe_parts.cc50 FrameParts::FrameParts(const Http2FrameHeader& header) : frame_header_(header) { in FrameParts()
54 FrameParts::FrameParts(const Http2FrameHeader& header, in FrameParts()
61 FrameParts::FrameParts(const Http2FrameHeader& header, in FrameParts()
134 void FrameParts::OnDataStart(const Http2FrameHeader& header) { in OnDataStart()
153 void FrameParts::OnHeadersStart(const Http2FrameHeader& header) { in OnHeadersStart()
185 void FrameParts::OnPriorityFrame(const Http2FrameHeader& header, in OnPriorityFrame()
194 void FrameParts::OnContinuationStart(const Http2FrameHeader& header) { in OnContinuationStart()
224 void FrameParts::OnRstStream(const Http2FrameHeader& header, in OnRstStream()
233 void FrameParts::OnSettingsStart(const Http2FrameHeader& header) { in OnSettingsStart()
251 void FrameParts::OnSettingsAck(const Http2FrameHeader& header) { in OnSettingsAck()
[all …]
Dframe_parts_collector.cc33 void FramePartsCollector::ExpectFrameHeader(const Http2FrameHeader& header) { in ExpectFrameHeader()
44 void FramePartsCollector::TestExpectedHeader(const Http2FrameHeader& header) { in TestExpectedHeader()
52 const Http2FrameHeader& header) { in StartFrame()
62 const Http2FrameHeader& header) { in StartAndEndFrame()
92 const Http2FrameHeader& header) { in FrameError()
/external/cronet/net/third_party/quiche/src/quiche/http2/decoder/
Dhttp2_frame_decoder_test.cc149 const char (&buf)[N], const Http2FrameHeader& header) { in DecodePayloadAndValidateSeveralWays()
179 const char (&buf)[N], const Http2FrameHeader& header) { in DecodePayloadExpectingFrameSizeError()
209 Http2FrameHeader header(0, Http2FrameType::DATA, 0, 0); in TEST_F() local
221 Http2FrameHeader header(0, Http2FrameType::HEADERS, 0, 1); in TEST_F() local
235 Http2FrameHeader header(5, Http2FrameType::PRIORITY, 0, 2); in TEST_F() local
249 Http2FrameHeader header(4, Http2FrameType::RST_STREAM, 0, 1); in TEST_F() local
262 Http2FrameHeader header(0, Http2FrameType::SETTINGS, 0, 1); in TEST_F() local
273 Http2FrameHeader header(0, Http2FrameType::SETTINGS, Http2FrameFlag::ACK, 0); in TEST_F() local
288 Http2FrameHeader header(4, Http2FrameType::PUSH_PROMISE, in TEST_F() local
304 Http2FrameHeader header(8, Http2FrameType::PING, 0, 0); in TEST_F() local
[all …]
/external/sdv/vsomeip/third_party/boost/intrusive/include/boost/intrusive/
Dsplaytree_algorithms.hpp230 static void erase(node_ptr header, node_ptr z) in erase()
296 (node_ptr header, const KeyType &key, KeyNodePtrCompare comp) in count()
311 (const_node_ptr header, const KeyType &key, KeyNodePtrCompare comp) in count()
318 (node_ptr header, const KeyType &key, KeyNodePtrCompare comp) in lower_bound()
330 (const_node_ptr header, const KeyType &key, KeyNodePtrCompare comp) in lower_bound()
337 (node_ptr header, const KeyType &key, KeyNodePtrCompare comp) in upper_bound()
349 (const_node_ptr header, const KeyType &key, KeyNodePtrCompare comp) in upper_bound()
356 (node_ptr header, const KeyType &key, KeyNodePtrCompare comp) in find()
366 (const_node_ptr header, const KeyType &key, KeyNodePtrCompare comp) in find()
373 (node_ptr header, const KeyType &key, KeyNodePtrCompare comp) in equal_range()
[all …]
/external/cronet/components/cronet/android/test/javatests/src/org/chromium/net/apihelpers/
DContentTypeParametersParserTest.java27 String header = "text/html;charset=utf-8"; in testSingleParam_simple() local
40 String header = "text/html;charset=\"utf-8\""; in testParser_quoted_noEscape() local
53 String header = "text/html;charset=\"utf- 8\""; in testParser_quoted_noEscapeWithSpace() local
66 String header = "text/html;charset=\"utf-\\\\8\""; in testParser_quoted_escape() local
79 String header = "text/html;charset=\"utf-\\\\8\";foo=\" bar\" ; baz=quix ; abc=def"; in testParser_multiple_mixed() local
111 String header = "text/html;char\\set=utf8"; in testParser_invalidTokenChar_key() local
126 String header = "text/html;charset=utf\\8"; in testParser_invalidTokenChar_value() local
141 String header = "text/html;charset=\"utf-8"; in testParser_quotedStringNotClosed() local
/external/cronet/net/third_party/quiche/src/quiche/spdy/core/
Dhttp2_frame_decoder_adapter.cc74 void CorruptFrameHeader(Http2FrameHeader* header) { in CorruptFrameHeader()
322 bool Http2DecoderAdapter::OnFrameHeader(const Http2FrameHeader& header) { in OnFrameHeader()
399 void Http2DecoderAdapter::OnDataStart(const Http2FrameHeader& header) { in OnDataStart()
427 void Http2DecoderAdapter::OnHeadersStart(const Http2FrameHeader& header) { in OnHeadersStart()
489 void Http2DecoderAdapter::OnPriorityFrame(const Http2FrameHeader& header, in OnPriorityFrame()
499 void Http2DecoderAdapter::OnContinuationStart(const Http2FrameHeader& header) { in OnContinuationStart()
539 void Http2DecoderAdapter::OnRstStream(const Http2FrameHeader& header, in OnRstStream()
549 void Http2DecoderAdapter::OnSettingsStart(const Http2FrameHeader& header) { in OnSettingsStart()
573 void Http2DecoderAdapter::OnSettingsAck(const Http2FrameHeader& header) { in OnSettingsAck()
581 const Http2FrameHeader& header, const Http2PushPromiseFields& promise, in OnPushPromiseStart()
[all …]
/external/cronet/net/third_party/quiche/src/quiche/quic/core/
Dquic_packets_test.cc17 QuicPacketHeader header; in CreateFakePacketHeader() local
28 QuicPacketHeader header = CreateFakePacketHeader(); in TEST_F() local
36 QuicPacketHeader header = CreateFakePacketHeader(); in TEST_F() local
44 QuicPacketHeader header = CreateFakePacketHeader(); in TEST_F() local
52 QuicPacketHeader header = CreateFakePacketHeader(); in TEST_F() local
60 QuicPacketHeader header = CreateFakePacketHeader(); in TEST_F() local
68 QuicPacketHeader header = CreateFakePacketHeader(); in TEST_F() local
76 QuicPacketHeader header; in TEST_F() local
/external/virglrenderer/src/gallium/auxiliary/tgsi/
Dtgsi_build.c42 struct tgsi_header header; in tgsi_build_header() local
51 header_headersize_grow( struct tgsi_header *header ) in header_headersize_grow()
60 header_bodysize_grow( struct tgsi_header *header ) in header_bodysize_grow()
70 struct tgsi_header *header ) in tgsi_build_processor()
89 struct tgsi_header *header ) in declaration_grow()
132 struct tgsi_header *header ) in tgsi_build_declaration()
171 struct tgsi_header *header ) in tgsi_build_declaration_range()
189 struct tgsi_header *header) in tgsi_build_declaration_dimension()
221 struct tgsi_header *header) in tgsi_build_declaration_interp()
259 struct tgsi_header *header ) in tgsi_build_declaration_semantic()
[all …]
/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_build.c42 struct tgsi_header header; in tgsi_build_header() local
51 header_headersize_grow( struct tgsi_header *header ) in header_headersize_grow()
60 header_bodysize_grow( struct tgsi_header *header ) in header_bodysize_grow()
70 struct tgsi_header *header ) in tgsi_build_processor()
89 struct tgsi_header *header ) in declaration_grow()
132 struct tgsi_header *header ) in tgsi_build_declaration()
182 struct tgsi_header *header ) in tgsi_build_declaration_range()
200 struct tgsi_header *header) in tgsi_build_declaration_dimension()
230 struct tgsi_header *header) in tgsi_build_declaration_interp()
267 struct tgsi_header *header ) in tgsi_build_declaration_semantic()
[all …]
/external/sdv/vsomeip/third_party/boost/endian/example/
Dendian_example.cpp28 struct header struct
30 big_int32_buf_at file_code;
31 big_int32_buf_at file_length;
32 little_int32_buf_at version;
33 little_int32_buf_at shape_type;
/external/dng_sdk/source/
Ddng_ref_counted_block.h39 struct header struct
48 header (uint32 size) in header() argument
55 ~header () in ~header() argument
/external/apache-http/src/org/apache/http/message/
DHeaderGroup.java81 public void addHeader(Header header) { in addHeader()
93 public void removeHeader(Header header) { in removeHeader()
107 public void updateHeader(Header header) { in updateHeader()
182 Header header = (Header) headers.get(i); in getHeaders() local
201 Header header = (Header) headers.get(i); in getFirstHeader() local
220 Header header = (Header) headers.get(i); in getLastHeader() local
249 Header header = (Header) headers.get(i); in containsHeader() local
/external/perfetto/include/perfetto/public/abi/
Dtrack_event_hl_abi.h70 struct PerfettoTeHlExtra header; member
77 struct PerfettoTeHlExtra header; member
86 struct PerfettoTeHlExtra header; member
93 struct PerfettoTeHlExtra header; member
102 struct PerfettoTeHlExtra header; member
109 struct PerfettoTeHlExtra header; member
116 struct PerfettoTeHlExtra header; member
125 struct PerfettoTeHlExtra header; member
134 struct PerfettoTeHlExtra header; member
143 struct PerfettoTeHlExtra header; member
[all …]
/external/googleapis/google/maps/fleetengine/delivery/v1/
Ddelivery_api.proto223 DeliveryRequestHeader header = 1 [(google.api.field_behavior) = OPTIONAL]; field
254 DeliveryRequestHeader header = 1 [(google.api.field_behavior) = OPTIONAL]; field
271 DeliveryRequestHeader header = 1 [(google.api.field_behavior) = OPTIONAL]; field
342 DeliveryRequestHeader header = 1 [(google.api.field_behavior) = OPTIONAL]; field
363 DeliveryRequestHeader header = 1 [(google.api.field_behavior) = OPTIONAL]; field
392 DeliveryRequestHeader header = 1 [(google.api.field_behavior) = OPTIONAL]; field
429 DeliveryRequestHeader header = 1 [(google.api.field_behavior) = OPTIONAL]; field
448 DeliveryRequestHeader header = 1 [(google.api.field_behavior) = OPTIONAL]; field
498 DeliveryRequestHeader header = 1 [(google.api.field_behavior) = OPTIONAL]; field
530 DeliveryRequestHeader header = 1 [(google.api.field_behavior) = OPTIONAL]; field
[all …]
/external/virglrenderer/server/
Drender_protocol.h53 struct render_client_op_header header; member
61 struct render_client_op_header header; member
70 struct render_client_op_header header; member
80 struct render_client_op_header header; member
95 struct render_client_op_header header; member
100 struct render_client_op_header header; member
113 struct render_context_op_header header; member
128 struct render_context_op_header header; member
143 struct render_context_op_header header; member
163 struct render_context_op_header header; member
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/extractor/src/test/java/com/google/android/exoplayer2/extractor/
DVorbisUtilTest.java106 ParsableByteArray header = in verifyVorbisHeaderCapturePattern_withValidHeader_returnsTrue() local
113 ParsableByteArray header = in verifyVorbisHeaderCapturePattern_withValidHeader_returnsFalse() local
126 ParsableByteArray header = in verifyVorbisHeaderCapturePattern_withInvalidHeaderQuite_returnsFalse() local
133 ParsableByteArray header = in verifyVorbisHeaderCapturePattern_withInvalidPattern_returnsFalse() local
146 ParsableByteArray header = in verifyVorbisHeaderCapturePatternQuite_withInvalidPatternQuite_returnsFalse() local
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/extractor/src/test/java/com/google/android/exoplayer2/extractor/
DVorbisUtilTest.java106 ParsableByteArray header = in verifyVorbisHeaderCapturePattern_withValidHeader_returnsTrue() local
113 ParsableByteArray header = in verifyVorbisHeaderCapturePattern_withValidHeader_returnsFalse() local
126 ParsableByteArray header = in verifyVorbisHeaderCapturePattern_withInvalidHeaderQuite_returnsFalse() local
133 ParsableByteArray header = in verifyVorbisHeaderCapturePattern_withInvalidPattern_returnsFalse() local
146 ParsableByteArray header = in verifyVorbisHeaderCapturePatternQuite_withInvalidPatternQuite_returnsFalse() local
/external/aws-crt-java/src/test/java/software/amazon/awssdk/crt/test/
DEventStreamHeaderTest.java28 Header header = Header.createHeader("testHeader", "testValue"); in testStringHeaderSerialization() local
59 Header header = Header.createHeader("testHeader", testValue); in testBinaryHeaderSerialization() local
95 Header header = Header.createHeader("testHeader", false); in testBooleanHeaderSerialization() local
120 Header header = Header.createHeader("testHeader", (byte)127); in testByteHeaderSerialization() local
138 Header header = Header.createHeader("testHeader", (short)8001); in testShortHeaderSerialization() local
156 Header header = Header.createHeader("testHeader", 123456789); in testIntHeaderSerialization() local
174 Header header = Header.createHeader("testHeader", (long)Integer.MAX_VALUE + 1); in testLongHeaderSerialization() local
194 Header header = Header.createHeader("testHeader", headerValue); in testDateHeaderSerialization() local
214 Header header = Header.createHeader("testHeader", headerValue); in testUUIDHeaderSerialization() local
/external/oss-fuzz/projects/alembic/
Dalembic_dump_info_fuzzer.cc69 const PropertyHeader &header = schema.getPropertyHeader(p); in dumpAttributes() local
92 const ObjectHeader &header = node.getHeader(); in dumpPolyMesh() local
101 const ObjectHeader &header = node.getHeader(); in dumpSubD() local
113 const ObjectHeader &header = node.getHeader(); in dumpFaceSet() local
120 const ObjectHeader &header = node.getHeader(); in dumpCurves() local
128 const ObjectHeader &header = node.getHeader(); in dumpXform() local
137 const ObjectHeader &header = node.getHeader(); in dumpMaterial() local
158 const ObjectHeader &header = node.getHeader(); in dumpNodes() local
/external/trusty/arm-trusted-firmware/drivers/arm/css/sds/
Dsds.c34 static int sds_struct_is_valid(uintptr_t header) in sds_struct_is_valid()
63 uintptr_t header; in validate_sds_struct_headers() local
87 static int get_struct_header(uint32_t structure_id, struct_header_t **header) in get_struct_header()
121 struct_header_t *header = NULL; in sds_struct_exists() local
144 struct_header_t *header = NULL; in sds_struct_read() local
190 struct_header_t *header = NULL; in sds_struct_write() local
/external/arm-trusted-firmware/drivers/arm/css/sds/
Dsds.c34 static int sds_struct_is_valid(uintptr_t header) in sds_struct_is_valid()
63 uintptr_t header; in validate_sds_struct_headers() local
87 static int get_struct_header(uint32_t structure_id, struct_header_t **header) in get_struct_header()
121 struct_header_t *header = NULL; in sds_struct_exists() local
144 struct_header_t *header = NULL; in sds_struct_read() local
190 struct_header_t *header = NULL; in sds_struct_write() local
/external/webrtc/modules/rtp_rtcp/source/rtcp_packet/
Dcommon_header_unittest.cc21 CommonHeader header; in TEST() local
32 CommonHeader header; in TEST() local
47 CommonHeader header; in TEST() local
59 CommonHeader header; in TEST() local
94 CommonHeader header; in TEST() local

12345678910>>...105