/third_party/NuttX/include/nuttx/ |
H A D | scsi.h | 868 uint8_t prot; /* 12: Bits 0: PROT_EN, Bits 1-3: P_TYPE, Bits 4-7: Reserved*/ member
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
H A D | dpp_hostapd.c | 1657 u8 dialog_token, int prot, in hostapd_dpp_relay_gas_resp_tx() 1662 gas_serv_req_dpp_processing(hapd, addr, dialog_token, prot, buf); in hostapd_dpp_relay_gas_resp_tx() 1656 hostapd_dpp_relay_gas_resp_tx(void *ctx, const u8 *addr, u8 dialog_token, int prot, struct wpabuf *buf) hostapd_dpp_relay_gas_resp_tx() argument
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
H A D | dpp_hostapd.c | 2273 u8 dialog_token, int prot, in hostapd_dpp_relay_gas_resp_tx() 2278 gas_serv_req_dpp_processing(hapd, addr, dialog_token, prot, buf); in hostapd_dpp_relay_gas_resp_tx() 2272 hostapd_dpp_relay_gas_resp_tx(void *ctx, const u8 *addr, u8 dialog_token, int prot, struct wpabuf *buf) hostapd_dpp_relay_gas_resp_tx() argument
|
/third_party/ffmpeg/libavdevice/ |
H A D | v4l2.c | 115 void *(*mmap_f)(void *start, size_t length, int prot, int flags, int fd, int64_t offset);
|
/third_party/rust/crates/libc/src/unix/redox/ |
H A D | mod.rs | 1054 pub fn mprotect(addr: *mut ::c_void, len: ::size_t, prot: ::c_int) -> ::c_int; in mprotect()
|
/third_party/node/test/fixtures/postject-copy/node_modules/postject/dist/ |
H A D | api.js | [all...] |
/third_party/rust/crates/libc/src/unix/linux_like/emscripten/ |
H A D | mod.rs | 1778 pub fn mprotect(addr: *mut ::c_void, len: ::size_t, prot: ::c_int) -> ::c_int; in mprotect()
|
/third_party/rust/crates/libc/src/unix/bsd/netbsdlike/openbsd/ |
H A D | mod.rs | 1787 pub fn mprotect(addr: *mut ::c_void, len: ::size_t, prot: ::c_int) -> ::c_int; in mprotect()
|
/third_party/rust/crates/libc/src/vxworks/ |
H A D | mod.rs | 1214 prot: ::c_int, in mmap()
|
/third_party/rust/crates/libc/src/unix/linux_like/ |
H A D | mod.rs | 1713 prot: ::c_int, in mmap64()
|
/third_party/rust/crates/libc/src/unix/ |
H A D | mod.rs | 1000 prot: ::c_int, in mmap()
|
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/dragonfly/ |
H A D | mod.rs | 1332 /// dissimilar gateway prot. 1600 pub fn mprotect(addr: *mut ::c_void, len: ::size_t, prot: ::c_int) -> ::c_int; in mprotect()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
H A D | dpp_tcp.c | 61 int prot, struct wpabuf *buf);
|
/third_party/vixl/src/aarch64/ |
H A D | simulator-aarch64.cc | 14683 void* address, size_t length, int prot, int flags, int fd, off_t offset) { in Simulator() 14687 int intenal_prot = prot; in Simulator() 14688 prot &= ~(PROT_BTI | PROT_MTE); in Simulator() 14691 mmap(address, length, prot, flags, fd, offset)); in Simulator() 14704 int Simulator::Munmap(void* address, size_t length, int prot) { in Simulator() argument 14705 if (prot & PROT_MTE) { in Simulator() 14682 Mmap( void* address, size_t length, int prot, int flags, int fd, off_t offset) Simulator() argument
|
H A D | simulator-aarch64.h | 2886 void* address, size_t length, int prot, int flags, int fd, off_t offset); 2888 int Munmap(void* address, size_t length, int prot);
|
/third_party/rust/crates/libc/src/fuchsia/ |
H A D | mod.rs | 3654 prot: ::c_int, in mmap() 3979 pub fn mprotect(addr: *mut ::c_void, len: ::size_t, prot: ::c_int) -> ::c_int; in mprotect()
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/ |
H A D | mod.rs | 3938 pub fn mprotect(addr: *mut ::c_void, len: ::size_t, prot: ::c_int) -> ::c_int; in mprotect() 4092 prot: ::c_int, in remap_file_pages()
|
/third_party/node/deps/v8/src/d8/ |
H A D | d8.cc | 271 int prot = PROT_READ | PROT_WRITE; variable 274 void* real_alloc = mmap(nullptr, kChunkSize, prot, flags, -1, 0); 285 mmap(nullptr, rounded_length, prot, flags | MAP_NORESERVE, -1, 0);
|
/third_party/rust/crates/libc/src/unix/haiku/ |
H A D | mod.rs | 1683 pub fn mprotect(addr: *mut ::c_void, len: ::size_t, prot: ::c_int) -> ::c_int; in mprotect()
|
/third_party/python/Lib/test/ |
H A D | test_typing.py | 7251 for prot in range(pickle.HIGHEST_PROTOCOL + 1): 7252 with self.subTest(protocol=prot, type=t): 7253 pickled = pickle.dumps(x, prot)
|
/third_party/libbpf/src/ |
H A D | libbpf.c | 13637 int prot, map_fd = bpf_map__fd(map); local 13649 prot = PROT_READ; 13651 prot = PROT_READ | PROT_WRITE; 13663 *mmaped = mmap(map->mmaped, mmap_sz, prot, MAP_SHARED | MAP_FIXED, map_fd, 0);
|
/third_party/rust/crates/libc/src/unix/bsd/netbsdlike/netbsd/ |
H A D | mod.rs | 2573 pub fn mprotect(addr: *mut ::c_void, len: ::size_t, prot: ::c_int) -> ::c_int; in mprotect()
|
/third_party/rust/crates/libc/src/unix/nto/ |
H A D | mod.rs | 2768 pub fn mprotect(addr: *mut ::c_void, len: ::size_t, prot: ::c_int) -> ::c_int; in mprotect()
|
/third_party/rust/crates/libc/src/unix/linux_like/android/ |
H A D | mod.rs | 3102 pub fn mprotect(addr: *mut ::c_void, len: ::size_t, prot: ::c_int) -> ::c_int; in mprotect()
|
/third_party/rust/crates/libc/src/unix/solarish/ |
H A D | mod.rs | 2735 pub fn mprotect(addr: *const ::c_void, len: ::size_t, prot: ::c_int) -> ::c_int; in mprotect()
|