Home
last modified time | relevance | path

Searched +full:hdr +full:- +full:v2 (Results 1 – 25 of 357) sorted by relevance

12345678910>>...15

/external/rust/crates/grpcio-sys/grpc/tools/distrib/
Dfix_build_deps.py9 # http://www.apache.org/licenses/LICENSE-2.0
148 'google/devtools/cloudtrace/v2/tracing.grpc.pb.h':
150 'google/logging/v2/logging.grpc.pb.h':
152 'google/logging/v2/logging.pb.h':
154 'google/logging/v2/log_entry.pb.h':
163 'opencensus-stats-stackdriver_exporter',
165 'opencensus-trace-stackdriver_exporter',
167 'opencensus-trace-context_util',
169 'opencensus-trace-propagation',
171 'opencensus-tags-context_util',
[all …]
/external/linux-kselftest/tools/testing/selftests/net/
Dpsock_tpacket.c1 // SPDX-License-Identifier: GPL-2.0-only
20 * - TPACKET_V1: RX_RING, TX_RING
21 * - TPACKET_V2: RX_RING, TX_RING
22 * - TPACKET_V3: RX_RING
67 #define ALIGN_8(x) (((x) + 8 - 1) & ~(8 - 1))
96 } *v2; member
105 if (sock == -1) { in pfsocket()
111 if (ret == -1) { in pfsocket()
137 if (eth->h_proto != htons(ETH_P_IP)) { in test_payload()
139 "type: 0x%x!\n", ntohs(eth->h_proto)); in test_payload()
[all …]
/external/grpc-grpc/tools/distrib/
Dfix_build_deps.py9 # http://www.apache.org/licenses/LICENSE-2.0
121 "google/devtools/cloudtrace/v2/tracing.grpc.pb.h": (
124 "google/logging/v2/logging.grpc.pb.h": "googleapis_logging_grpc_service",
125 "google/logging/v2/logging.pb.h": "googleapis_logging_cc_proto",
126 "google/logging/v2/log_entry.pb.h": "googleapis_logging_cc_proto",
133 "opencensus-stats-stackdriver_exporter"
136 "opencensus-trace-stackdriver_exporter"
138 "opencensus/trace/context_util.h": "opencensus-trace-context_util",
140 "opencensus-trace-propagation"
142 "opencensus/tags/context_util.h": "opencensus-tags-context_util",
[all …]
/external/vboot_reference/tests/
Dvboot_common3_tests.c2 * Use of this source code is governed by a BSD-style license that can be
23 h->key_block_checksum.data_size, in ReChecksumKeyBlock()
25 Memcpy(GetSignatureData(&h->key_block_checksum), newchk, in ReChecksumKeyBlock()
34 VbKeyBlockHeader *hdr; in KeyBlockVerifyTest() local
38 hdr = KeyBlockCreate(data_key, private_key, 0x1234); in KeyBlockVerifyTest()
39 TEST_NEQ((size_t)hdr, 0, "KeyBlockVerify() prerequisites"); in KeyBlockVerifyTest()
40 if (!hdr) in KeyBlockVerifyTest()
42 hsize = (unsigned) hdr->key_block_size; in KeyBlockVerifyTest()
45 TEST_EQ(KeyBlockVerify(hdr, hsize, NULL, 1), 0, in KeyBlockVerifyTest()
47 TEST_EQ(KeyBlockVerify(hdr, hsize, public_key, 0), 0, in KeyBlockVerifyTest()
[all …]
/external/llvm-libc/src/sys/epoll/linux/
Depoll_pwait2.cpp1 //===---------- Linux implementation of the epoll_pwait2 function ---------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 #include "hdr/signal_macros.h" // for NSIG
12 #include "hdr/types/sigset_t.h"
13 #include "hdr/types/struct_epoll_event.h"
14 #include "hdr/types/struct_timespec.h"
35 libc_errno = -ret;
36 return -1;
Depoll_pwait.cpp1 //===---------- Linux implementation of the epoll_pwait function ----------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 #include "hdr/signal_macros.h" // for NSIG
12 #include "hdr/types/sigset_t.h"
13 #include "hdr/types/struct_epoll_event.h"
33 libc_errno = -ret;
34 return -1;
Depoll_wait.cpp1 //===---------- Linux implementation of the epoll_wait function -----------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 #include "hdr/signal_macros.h" // for NSIG
12 #include "hdr/types/sigset_t.h"
13 #include "hdr/types/struct_epoll_event.h"
39 libc_errno = -ret;
40 return -1;
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DTarWriter.cpp1 //===-- TarWriter.cpp - Tar archive file creator --------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 // class because we don't need a full-fledged archive file generator in LLVM
17 // POSIX.1-2001.
22 //===----------------------------------------------------------------------===//
57 UstarHeader Hdr = {}; in makeUstarHeader() local
58 memcpy(Hdr.Magic, "ustar", 5); // Ustar magic in makeUstarHeader()
59 memcpy(Hdr.Version, "00", 2); // Ustar version in makeUstarHeader()
[all …]
/external/llvm-libc/src/sys/epoll/
Depoll_pwait2.h1 //===-- Implementation header for epoll_pwait2 function ---------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 #include "hdr/types/sigset_t.h"
13 #include "hdr/types/struct_epoll_event.h"
14 #include "hdr/types/struct_timespec.h"
Depoll_pwait.h1 //===-- Implementation header for epoll_pwait function ----------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 #include "hdr/types/sigset_t.h"
13 #include "hdr/types/struct_epoll_event.h"
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/
DTarWriter.cpp1 //===-- TarWriter.cpp - Tar archive file creator --------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 // class because we don't need a full-fledged archive file generator in LLVM
17 // POSIX.1-2001.
22 //===----------------------------------------------------------------------===//
57 UstarHeader Hdr = {}; in makeUstarHeader() local
58 memcpy(Hdr.Magic, "ustar", 5); // Ustar magic in makeUstarHeader()
59 memcpy(Hdr.Version, "00", 2); // Ustar version in makeUstarHeader()
[all …]
/external/mesa3d/src/freedreno/decode/
Dpgmdump.c155 } v2; member
236 struct pgm_header *hdr; member
258 uint8_t *end = ptr + sz - 3; in find_sect_end()
280 char *end = find_sect_end(state->buf, state->sz); in next_sect()
286 *sect_size = end - state->buf; in next_sect()
290 memcpy(sect, state->buf, *sect_size); in next_sect()
292 state->sz -= *sect_size + 4; in next_sect()
293 state->buf = end + 4; in next_sect()
323 printf("\tR%d, CONST(%d): %s\n", attrib->reg, attrib->const_idx, in dump_attribute()
324 attrib->name); in dump_attribute()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/
DGsymReader.cpp1 //===- GsymReader.cpp -----------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
63 BinaryStreamReader FileData(MemBuffer->getBuffer(), in parse()
68 if (FileData.readObject(Hdr)) in parse()
73 switch (Hdr->Magic) { in parse()
90 DataExtractor Data(MemBuffer->getBuffer(), DataIsLittleEndian, 4); in parse()
92 Swap->Hdr = ExpectedHdr.get(); in parse()
95 Hdr = &Swap->Hdr; in parse()
[all …]
DGsymCreator.cpp1 //===- GsymCreator.cpp ----------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //===----------------------------------------------------------------------===//
40 return R.first->second; in insertFile()
67 const uint64_t AddrDelta = MaxAddr - MinAddr; in encode()
68 Header Hdr; in encode() local
69 Hdr.Magic = GSYM_MAGIC; in encode()
70 Hdr.Version = GSYM_VERSION; in encode()
71 Hdr.AddrOffSize = 0; in encode()
[all …]
/external/wpa_supplicant_8/src/common/
Ddpp_backup.c3 * Copyright (c) 2019-2020, The Linux Foundation
23 struct dpp_asymmetric_key *next = key->next; in dpp_free_asymmetric_key()
25 crypto_ec_key_deinit(key->csign); in dpp_free_asymmetric_key()
26 crypto_ec_key_deinit(key->pp_key); in dpp_free_asymmetric_key()
27 str_clear_free(key->config_template); in dpp_free_asymmetric_key()
28 str_clear_free(key->connector_template); in dpp_free_asymmetric_key()
40 …const char *conf_template = "{\"wi-fi_tech\":\"infra\",\"discovery\":{\"ssid\":\"test\"},\"cred\":… in dpp_build_conf_params()
43 if (!conf->pp_key) in dpp_build_conf_params()
46 priv_key = crypto_ec_key_get_ecprivate_key(conf->pp_key, false); in dpp_build_conf_params()
85 * aa-DPPConfigurationParameters ATTRIBUTE ::= in dpp_build_attribute()
[all …]
Ddpp.h4 * Copyright (c) 2018-2020, The Linux Foundation
5 * Copyright (c) 2021-2022, Qualcomm Innovation Center, Inc.
121 /* DPP Reconfig Flags object - connectorKey values */
207 unsigned int v2:1; member
385 struct wpabuf *priv_key; /* DER-encoded private key used for csr */
604 unsigned int freq, const u8 *hdr, const u8 *attr_start,
607 dpp_auth_resp_rx(struct dpp_authentication *auth, const u8 *hdr,
617 int dpp_auth_conf_rx(struct dpp_authentication *auth, const u8 *hdr,
646 const u8 *hdr,
651 const u8 *hdr,
[all …]
/external/llvm-libc/test/src/sys/epoll/linux/
Depoll_pwait2_test.cpp1 //===-- Unittests for epoll_pwait2 ----------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
8 #include "hdr/sys_epoll_macros.h"
9 #include "hdr/types/struct_epoll_event.h"
10 #include "hdr/types/struct_timespec.h"
48 ASSERT_THAT(LIBC_NAMESPACE::epoll_pwait2(-1, &event, 1, &time_spec, nullptr), in TEST()
/external/llvm-libc/src/time/
Dclock_gettime.h1 //===-- Implementation header for clock_gettime function --------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 #include "hdr/types/clockid_t.h"
13 #include "hdr/types/struct_timespec.h"
/external/llvm-libc/src/fcntl/linux/
Dfcntl.cpp1 //===-- Implementation of fcntl -------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 #include "hdr/fcntl_macros.h"
12 #include "hdr/types/struct_f_owner_ex.h"
13 #include "hdr/types/struct_flock.h"
14 #include "hdr/types/struct_flock64.h"
38 flk64.l_type = flk->l_type;
39 flk64.l_whence = flk->l_whence;
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DMinidump.cpp1 //===- Minidump.cpp - Minidump object file implementation -----------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
21 return getRawStream(Streams[It->second]); in getRawStream()
26 // Minidump strings consist of a 32-bit length field, which gives the size of in getString()
87 // 8-byte boundary. Check for that by comparing the list size with the overall in getListStream()
89 if (ListOffset + sizeof(T) * ListSize < Stream->size()) in getListStream()
117 const minidump::Header &Hdr = (*ExpectedHeader)[0]; in create() local
118 if (Hdr.Signature != Header::MagicSignature) in create()
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Object/
DMinidump.cpp1 //===- Minidump.cpp - Minidump object file implementation -----------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
21 return getRawStream(Streams[It->second]); in getRawStream()
26 // Minidump strings consist of a 32-bit length field, which gives the size of in getString()
88 // 8-byte boundary. Check for that by comparing the list size with the overall in getListStream()
90 if (ListOffset + sizeof(T) * ListSize < Stream->size()) in getListStream()
118 const minidump::Header &Hdr = (*ExpectedHeader)[0]; in create() local
119 if (Hdr.Signature != Header::MagicSignature) in create()
[all …]
/external/llvm-libc/src/__support/FPUtil/
DFEnvImpl.h1 //===-- Floating point environment manipulation functions -------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 #include "hdr/fenv_macros.h"
13 #include "hdr/math_macros.h"
14 #include "hdr/types/fenv_t.h"
/external/wpa_supplicant_8/src/ap/
Ddpp_hostapd.c4 * Copyright (c) 2018-2020, The Linux Foundation
5 * Copyright (c) 2021-2022, Qualcomm Innovation Center, Inc.
51 * hostapd_dpp_qr_code - Parse and add DPP bootstrapping info from a QR Code
54 * Returns: Identifier of the stored info or -1 on failure
59 struct dpp_authentication *auth = hapd->dpp_auth; in hostapd_dpp_qr_code()
61 bi = dpp_add_qr_code(hapd->iface->interfaces->dpp, cmd); in hostapd_dpp_qr_code()
63 return -1; in hostapd_dpp_qr_code()
65 if (auth && auth->response_pending && in hostapd_dpp_qr_code()
69 wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR in hostapd_dpp_qr_code()
71 MAC2STR(auth->peer_mac_addr), auth->curr_freq, in hostapd_dpp_qr_code()
[all …]
/external/tcpdump/
Dprint-udp.c28 #include "netdissect-stdinc.h"
61 ntp64 sr_ntp; /* 64-bit ntp timestamp */
69 * Time stamps are middle 32-bits of ntp timestamp.
96 vat_print(netdissect_options *ndo, const u_char *hdr, u_int length) in vat_print() argument
101 ndo->ndo_protocol = "vat"; in vat_print()
106 ts = GET_BE_U_2(hdr); in vat_print()
120 i0 = GET_BE_U_4(&((const u_int *)hdr)[0]); in vat_print()
121 i1 = GET_BE_U_4(&((const u_int *)hdr)[1]); in vat_print()
123 length - 8, in vat_print()
135 rtp_print(netdissect_options *ndo, const u_char *hdr, u_int len) in rtp_print() argument
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/lib/DebugInfo/GSYM/
DGsymReader.cpp1 //===- GsymReader.cpp -----------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
63 BinaryStreamReader FileData(MemBuffer->getBuffer(), in parse()
68 if (FileData.readObject(Hdr)) in parse()
73 switch (Hdr->Magic) { in parse()
90 DataExtractor Data(MemBuffer->getBuffer(), DataIsLittleEndian, 4); in parse()
92 Swap->Hdr = ExpectedHdr.get(); in parse()
95 Hdr = &Swap->Hdr; in parse()
[all …]

12345678910>>...15