Home
last modified time | relevance | path

Searched defs:hdr (Results 1 – 25 of 591) sorted by relevance

12345678910>>...24

/external/crosvm/third_party/vmm_vhost/src/
Dbackend_client.rs52 let hdr = self.send_request_header(FrontendReq::GET_FEATURES, None)?; in get_features() localVariable
62 let hdr = self.send_request_with_body(FrontendReq::SET_FEATURES, &val, None)?; in set_features() localVariable
70 let hdr = self.send_request_header(FrontendReq::SET_OWNER, None)?; in set_owner() localVariable
77 let hdr = self.send_request_header(FrontendReq::RESET_OWNER, None)?; in reset_owner() localVariable
108 let hdr = self.send_request_with_payload( in set_mem_table() localVariable
139 let hdr = self.send_request_header(FrontendReq::SET_LOG_FD, Some(&fds))?; in set_log_fd() localVariable
146 let hdr = self.send_request_with_body(FrontendReq::SET_VRING_NUM, &val, None)?; in set_vring_num() localVariable
159 let hdr = self.send_request_with_body(FrontendReq::SET_VRING_ADDR, &val, None)?; in set_vring_addr() localVariable
167 let hdr = self.send_request_with_body(FrontendReq::SET_VRING_BASE, &val, None)?; in set_vring_base() localVariable
175 let hdr = self.send_request_with_body(FrontendReq::GET_VRING_BASE, &req, None)?; in get_vring_base() localVariable
[all …]
/external/wpa_supplicant_8/src/tls/
Dasn1.h88 static inline bool asn1_is_oid(const struct asn1_hdr *hdr) in asn1_is_oid()
94 static inline bool asn1_is_boolean(const struct asn1_hdr *hdr) in asn1_is_boolean()
100 static inline bool asn1_is_integer(const struct asn1_hdr *hdr) in asn1_is_integer()
106 static inline bool asn1_is_enumerated(const struct asn1_hdr *hdr) in asn1_is_enumerated()
112 static inline bool asn1_is_sequence(const struct asn1_hdr *hdr) in asn1_is_sequence()
118 static inline bool asn1_is_set(const struct asn1_hdr *hdr) in asn1_is_set()
124 static inline bool asn1_is_octetstring(const struct asn1_hdr *hdr) in asn1_is_octetstring()
130 static inline bool asn1_is_bitstring(const struct asn1_hdr *hdr) in asn1_is_bitstring()
136 static inline bool asn1_is_utctime(const struct asn1_hdr *hdr) in asn1_is_utctime()
142 static inline bool asn1_is_generalizedtime(const struct asn1_hdr *hdr) in asn1_is_generalizedtime()
[all …]
Dasn1.c106 static int asn1_valid_der_boolean(struct asn1_hdr *hdr) in asn1_valid_der_boolean()
126 static int asn1_valid_der(struct asn1_hdr *hdr) in asn1_valid_der()
171 int asn1_get_next(const u8 *buf, size_t len, struct asn1_hdr *hdr) in asn1_get_next()
276 void asn1_print_hdr(const struct asn1_hdr *hdr, const char *title) in asn1_print_hdr()
283 void asn1_unexpected(const struct asn1_hdr *hdr, const char *title) in asn1_unexpected()
337 struct asn1_hdr hdr; in asn1_get_oid() local
435 struct asn1_hdr hdr; in asn1_get_integer() local
466 int asn1_get_sequence(const u8 *buf, size_t len, struct asn1_hdr *hdr, in asn1_get_sequence()
484 struct asn1_hdr hdr; in asn1_get_alg_id() local
Dx509v3.c185 struct asn1_hdr hdr; in x509_parse_algorithm_identifier() local
220 struct asn1_hdr hdr; in x509_parse_public_key() local
288 struct asn1_hdr hdr; in x509_parse_name() local
689 struct asn1_hdr hdr; in x509_parse_validity() local
768 struct asn1_hdr hdr; in x509_parse_ext_key_usage() local
801 struct asn1_hdr hdr; in x509_parse_ext_basic_constraints() local
974 struct asn1_hdr hdr; in x509_parse_ext_alt_name() local
1052 struct asn1_hdr hdr; in x509_parse_ext_subject_alt_name() local
1076 struct asn1_hdr hdr; in x509_parse_ext_issuer_alt_name() local
1149 struct asn1_hdr hdr; in x509_parse_ext_certificate_policies() local
[all …]
/external/rust/beto-rust/nearby/presence/np_adv/src/extended/serialize/
Dde_header_tests.rs24 let hdr = DeHeader { de_type: 0_u32.into(), len: 0_u8.try_into().unwrap() }; in de_header_1_byte_0s() localVariable
31 let hdr = DeHeader { de_type: 15_u32.into(), len: 7_u8.try_into().unwrap() }; in de_header_1_byte_max() localVariable
38 let hdr = DeHeader { de_type: 15_u32.into(), len: 8_u8.try_into().unwrap() }; in de_header_2_byte_len_too_big() localVariable
45 let hdr = DeHeader { de_type: 16_u32.into(), len: 7_u8.try_into().unwrap() }; in de_header_2_byte_type_too_big() localVariable
52 let hdr = DeHeader { de_type: u32::MAX.into(), len: 127_u8.try_into().unwrap() }; in de_header_max() localVariable
65 let hdr = DeHeader { de_type, len }; in de_header_special_values() localVariable
90 let hdr = DeHeader { de_type: rng.gen(), len: rng.gen() }; in de_header_random_roundtrip() localVariable
/external/rust/android-crates-io/crates/vhost/src/vhost_user/
Dfrontend.rs180 let hdr = node.send_request_header(FrontendReq::GET_FEATURES, None)?; in get_features() localVariable
190 let hdr = node.send_request_with_body(FrontendReq::SET_FEATURES, &val, None)?; in set_features() localVariable
200 let hdr = node.send_request_header(FrontendReq::SET_OWNER, None)?; in set_owner() localVariable
206 let hdr = node.send_request_header(FrontendReq::RESET_OWNER, None)?; in reset_owner() localVariable
230 let hdr = node.send_request_with_payload( in set_mem_table() localVariable
253 let hdr = node.send_request_with_body( in set_log_base() localVariable
268 let hdr = node.send_request_header(FrontendReq::SET_LOG_FD, Some(&fds))?; in set_log_fd() localVariable
280 let hdr = node.send_request_with_body(FrontendReq::SET_VRING_NUM, &val, None)?; in set_vring_num() localVariable
294 let hdr = node.send_request_with_body(FrontendReq::SET_VRING_ADDR, &val, None)?; in set_vring_addr() localVariable
306 let hdr = node.send_request_with_body(FrontendReq::SET_VRING_BASE, &val, None)?; in set_vring_base() localVariable
[all …]
/external/webrtc/modules/rtp_rtcp/source/
Drtp_format_vp9.cc35 uint8_t TemporalIdxField(const RTPVideoHeaderVP9& hdr, uint8_t def) { in TemporalIdxField()
39 uint8_t SpatialIdxField(const RTPVideoHeaderVP9& hdr, uint8_t def) { in SpatialIdxField()
43 int16_t Tl0PicIdxField(const RTPVideoHeaderVP9& hdr, uint8_t def) { in Tl0PicIdxField()
55 size_t PictureIdLength(const RTPVideoHeaderVP9& hdr) { in PictureIdLength()
61 bool PictureIdPresent(const RTPVideoHeaderVP9& hdr) { in PictureIdPresent()
75 size_t LayerInfoLength(const RTPVideoHeaderVP9& hdr) { in LayerInfoLength()
82 bool LayerInfoPresent(const RTPVideoHeaderVP9& hdr) { in LayerInfoPresent()
93 size_t RefIndicesLength(const RTPVideoHeaderVP9& hdr) { in RefIndicesLength()
122 size_t SsDataLength(const RTPVideoHeaderVP9& hdr) { in SsDataLength()
145 size_t PayloadDescriptorLengthMinusSsData(const RTPVideoHeaderVP9& hdr) { in PayloadDescriptorLengthMinusSsData()
[all …]
Drtp_sender_video_unittest.cc214 RTPVideoHeader hdr; in TEST_F() local
236 RTPVideoHeader hdr; in TEST_F() local
259 RTPVideoHeader hdr; in TEST_F() local
283 RTPVideoHeader hdr; in TEST_F() local
523 RTPVideoHeader hdr; in TEST_F() local
598 RTPVideoHeader hdr; in TEST_F() local
644 RTPVideoHeader hdr; in TEST_F() local
678 RTPVideoHeader hdr; in TEST_F() local
717 RTPVideoHeader hdr; in TEST_F() local
799 RTPVideoHeader hdr; in TEST_F() local
[all …]
/external/virtio-media/driver/
Dprotocol.h56 struct virtio_media_cmd_header hdr; member
67 struct virtio_media_resp_header hdr; member
90 struct virtio_media_cmd_header hdr; member
129 struct virtio_media_cmd_header hdr; member
140 struct virtio_media_resp_header hdr; member
155 struct virtio_media_cmd_header hdr; member
169 struct virtio_media_resp_header hdr; member
186 struct virtio_media_cmd_header hdr; member
196 struct virtio_media_resp_header hdr; member
223 struct virtio_media_event_header hdr; member
[all …]
/external/libpcap/
Dpcap-util.c49 swap_pflog_header(const struct pcap_pkthdr *hdr, u_char *buf) in swap_pflog_header()
188 swap_linux_sll_socketcan_header(const struct pcap_pkthdr *hdr, u_char *buf) in swap_linux_sll_socketcan_header()
213 swap_linux_sll2_socketcan_header(const struct pcap_pkthdr *hdr, u_char *buf) in swap_linux_sll2_socketcan_header()
244 swap_linux_usb_header(const struct pcap_pkthdr *hdr, u_char *buf, in swap_linux_usb_header()
394 swap_nflog_header(const struct pcap_pkthdr *hdr, u_char *buf) in swap_nflog_header()
450 swap_pseudo_headers(int linktype, struct pcap_pkthdr *hdr, u_char *data) in swap_pseudo_headers()
486 packet_length_might_be_wrong(struct pcap_pkthdr *hdr, in packet_length_might_be_wrong()
504 pcapint_post_process(int linktype, int swapped, struct pcap_pkthdr *hdr, in pcapint_post_process()
/external/mesa3d/src/freedreno/common/
Dmsm_proto.h76 struct vdrm_ccmd_req hdr; member
85 struct vdrm_ccmd_req hdr; member
93 struct vdrm_ccmd_rsp hdr; member
117 struct vdrm_ccmd_req hdr; member
133 struct vdrm_ccmd_req hdr; member
150 struct vdrm_ccmd_req hdr; member
158 struct vdrm_ccmd_rsp hdr; member
171 struct vdrm_ccmd_req hdr; member
198 struct vdrm_ccmd_req hdr; member
232 struct vdrm_ccmd_req hdr; member
[all …]
/external/coreboot/src/drivers/intel/fsp2_0/
Dutil.c30 static bool looks_like_fsp_header(struct fsp_header *hdr) in looks_like_fsp_header()
49 enum cb_err fsp_identify(struct fsp_header *hdr, const void *fsp_blob) in fsp_identify()
58 enum cb_err fsp_validate_component(struct fsp_header *hdr, void *fsp_file, size_t file_size) in fsp_validate_component()
137 enum cb_err fsp_load_component(struct fsp_load_descriptor *fspld, struct fsp_header *hdr) in fsp_load_component()
169 struct fsp_header *hdr = &fsps_hdr; in fsp_get_version() local
208 __weak void soc_validate_fspm_header(const struct fsp_header *hdr) in soc_validate_fspm_header()
/external/virglrenderer/src/drm/msm/
Dmsm_proto.h110 struct msm_ccmd_req hdr; member
119 struct msm_ccmd_req hdr; member
127 struct msm_ccmd_rsp hdr; member
151 struct msm_ccmd_req hdr; member
167 struct msm_ccmd_req hdr; member
184 struct msm_ccmd_req hdr; member
192 struct msm_ccmd_rsp hdr; member
205 struct msm_ccmd_req hdr; member
232 struct msm_ccmd_req hdr; member
266 struct msm_ccmd_req hdr; member
[all …]
/external/trusty/arm-trusted-firmware/plat/ti/k3/common/drivers/ti_sci/
Dti_sci_protocol.h84 struct ti_sci_msg_hdr hdr; member
104 struct ti_sci_msg_hdr hdr; member
123 struct ti_sci_msg_hdr hdr; member
144 struct ti_sci_msg_hdr hdr; member
181 struct ti_sci_msg_hdr hdr; member
200 struct ti_sci_msg_hdr hdr; member
218 struct ti_sci_msg_hdr hdr; member
242 struct ti_sci_msg_hdr hdr; member
285 struct ti_sci_msg_hdr hdr; member
306 struct ti_sci_msg_hdr hdr; member
[all …]
/external/arm-trusted-firmware/plat/ti/k3/common/drivers/ti_sci/
Dti_sci_protocol.h87 struct ti_sci_msg_hdr hdr; member
104 struct ti_sci_msg_hdr hdr; member
136 struct ti_sci_msg_hdr hdr; member
155 struct ti_sci_msg_hdr hdr; member
173 struct ti_sci_msg_hdr hdr; member
197 struct ti_sci_msg_hdr hdr; member
240 struct ti_sci_msg_hdr hdr; member
261 struct ti_sci_msg_hdr hdr; member
278 struct ti_sci_msg_hdr hdr; member
299 struct ti_sci_msg_hdr hdr; member
[all …]
/external/mesa3d/src/asahi/lib/
Dasahi_proto.h55 struct vdrm_ccmd_req hdr; member
64 struct vdrm_ccmd_req hdr; member
72 struct vdrm_ccmd_rsp hdr; member
88 struct vdrm_ccmd_req hdr; member
94 struct vdrm_ccmd_rsp hdr; member
101 struct vdrm_ccmd_req hdr; member
112 struct vdrm_ccmd_req hdr; member
118 struct vdrm_ccmd_req hdr; member
124 struct vdrm_ccmd_rsp hdr; member
138 struct vdrm_ccmd_req hdr; member
/external/trusty/bootloader/ql-tipc/
Dhwbcc.c53 static int send_header_only_request(struct hwbcc_req_hdr* hdr, in send_header_only_request()
60 static int read_response_with_data(struct hwbcc_req_hdr* hdr, in read_response_with_data()
105 static int read_header_only_response(struct hwbcc_req_hdr* hdr) { in read_header_only_response()
142 struct hwbcc_req_hdr hdr; in hwbcc_get_dice_artifacts() local
169 struct hwbcc_req_hdr hdr = {.cmd = HWBCC_CMD_NS_DEPRIVILEGE}; in hwbcc_ns_deprivilege() local
/external/mesa3d/src/util/
Du_debug_memory.c106 data_from_header(struct debug_memory_header *hdr) in data_from_header()
115 footer_from_header(struct debug_memory_header *hdr) in footer_from_header()
128 struct debug_memory_header *hdr; in debug_malloc() local
168 struct debug_memory_header *hdr; in debug_free() local
310 struct debug_memory_header *hdr; in debug_memory_end() local
361 struct debug_memory_header *hdr; in debug_memory_tag() local
382 struct debug_memory_header *hdr; in debug_memory_check_block() local
417 struct debug_memory_header *hdr; in debug_memory_check() local
/external/crosvm/devices/src/virtio/snd/
Dlayout.rs28 pub hdr: virtio_snd_hdr, field
35 pub hdr: virtio_snd_hdr, field
42 pub hdr: virtio_snd_hdr, field
83 pub hdr: virtio_snd_info, field
99 pub hdr: virtio_snd_hdr, field
108 pub hdr: virtio_snd_pcm_hdr, field
156 pub hdr: virtio_snd_info, field
167 pub hdr: virtio_snd_jack_hdr, /* .code = VIRTIO_SND_R_JACK_REMAP */ field
188 pub hdr: virtio_snd_info, field
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/
Dframe.cc138 auto hdr = extra_bytes_.TakeFirst(kFrameHeaderSize); in operator ()() local
148 auto hdr = extra_bytes_.TakeFirst(kFrameHeaderSize); in operator ()() local
160 auto hdr = extra_bytes_.TakeFirst(kFrameHeaderSize); in operator ()() local
244 absl::StatusOr<Http2DataFrame> ParseDataFrame(const Http2FrameHeader& hdr, in ParseDataFrame()
260 absl::StatusOr<Http2HeaderFrame> ParseHeaderFrame(const Http2FrameHeader& hdr, in ParseHeaderFrame()
287 const Http2FrameHeader& hdr, SliceBuffer& payload) { in ParseContinuationFrame()
299 const Http2FrameHeader& hdr, SliceBuffer& payload) { in ParseRstStreamFrame()
317 const Http2FrameHeader& hdr, SliceBuffer& payload) { in ParseSettingsFrame()
348 absl::StatusOr<Http2PingFrame> ParsePingFrame(const Http2FrameHeader& hdr, in ParsePingFrame()
379 absl::StatusOr<Http2GoawayFrame> ParseGoawayFrame(const Http2FrameHeader& hdr, in ParseGoawayFrame()
[all …]
/external/mesa3d/src/amd/common/virtio/
Damdgpu_virtio_proto.h69 struct vdrm_ccmd_req hdr; member
76 struct amdgpu_ccmd_rsp hdr; member
82 struct vdrm_ccmd_req hdr; member
104 struct vdrm_ccmd_req hdr; member
122 struct vdrm_ccmd_req hdr; member
142 struct vdrm_ccmd_req hdr; member
157 struct vdrm_ccmd_req hdr; member
165 struct amdgpu_ccmd_rsp hdr; member
193 struct vdrm_ccmd_req hdr; member
206 struct amdgpu_ccmd_rsp hdr; member
[all …]
/external/kernel-headers/original/uapi/linux/
Dvirtio_gpu.h157 struct virtio_gpu_ctrl_hdr hdr; member
176 struct virtio_gpu_ctrl_hdr hdr; member
183 struct virtio_gpu_ctrl_hdr hdr; member
192 struct virtio_gpu_ctrl_hdr hdr; member
200 struct virtio_gpu_ctrl_hdr hdr; member
208 struct virtio_gpu_ctrl_hdr hdr; member
223 struct virtio_gpu_ctrl_hdr hdr; member
230 struct virtio_gpu_ctrl_hdr hdr; member
238 struct virtio_gpu_ctrl_hdr hdr; member
255 struct virtio_gpu_ctrl_hdr hdr; member
[all …]
/external/nos/host/generic/nugget/include/
Dcitadel_events.h138 struct hdr { struct
140 uint64_t reset_count;
141 uint64_t uptime_usecs;
142 uint32_t priority;
144 uint8_t version;
145 uint8_t flags;
146 uint16_t length;
147 } hdr; member
/external/wpa_supplicant_8/src/eap_common/
Deap_common.c27 const struct eap_hdr *hdr; in eap_hdr_len_valid() local
69 const struct eap_hdr *hdr; in eap_hdr_validate() local
132 struct eap_hdr *hdr; in eap_msg_alloc() local
169 struct eap_hdr *hdr; in eap_update_len() local
/external/trusty/arm-trusted-firmware/plat/imx/imx8ulp/upower/
Dupower_defs.h57 struct upwr_msg_hdr hdr; member
63 struct upwr_msg_hdr hdr; member
69 struct upwr_msg_hdr hdr; member
75 struct upwr_msg_hdr hdr; member
101 struct upwr_msg_hdr hdr; member
162 struct upwr_msg_hdr hdr; /* message header */ member
320 struct upwr_msg_hdr hdr; /* message header */ member
338 struct upwr_msg_hdr hdr; /* message header */ member
351 struct upwr_msg_hdr hdr; /* message header */ member
360 struct upwr_msg_hdr hdr; member
[all …]

12345678910>>...24