/external/libmojo/mojo/edk/embedder/ |
platform_channel_pair_posix.cc | 49 int target_fd) { 51 if (file_handle_mapping[i].second == target_fd) 161 int target_fd = base::GlobalDescriptors::kBaseDescriptor; 162 while (IsTargetDescriptorUsed(*handle_passing_info, target_fd)) 163 target_fd++; 166 std::pair<int, int>(client_handle_.get().handle, target_fd)); 167 return base::IntToString(target_fd);
|
/frameworks/native/libs/vr/libbufferhubqueue/include/private/dvr/ |
epoll_file_descriptor.h | 39 int Control(int op, int target_fd, epoll_event* ev) { 40 if (epoll_ctl(fd_.get(), op, target_fd, ev) < 0)
|
/cts/hostsidetests/security/securityPatch/CVE-2016-8425/ |
poc.c | 68 volatile int target_fd; variable 76 close(target_fd); 108 target_fd = o_args.channel_fd;
|
/cts/hostsidetests/security/securityPatch/CVE-2016-8426/ |
poc.c | 68 volatile int target_fd; variable 76 close(target_fd); 108 target_fd = o_args.channel_fd;
|
/system/vold/ |
Loop.cpp | 64 unique_fd target_fd(open(target.c_str(), O_RDWR | O_CLOEXEC)); 65 if (target_fd.get() == -1) { 75 if (ioctl(device_fd.get(), LOOP_SET_FD, target_fd.get()) == -1) {
|
/kernel/tests/net/test/ |
bpf.py | 161 "bpf_attr_prog_attach", "=III", "target_fd attach_bpf_fd attach_type") 238 def BpfProgAttach(prog_fd, target_fd, prog_type): 239 attr = BpfAttrProgAttach((target_fd, prog_fd, prog_type)) 243 def BpfProgDetach(target_fd, prog_type): 244 attr = BpfAttrProgAttach((target_fd, 0, prog_type))
|
/external/tensorflow/tensorflow/core/platform/posix/ |
posix_file_system.cc | 300 int target_fd = open(translated_target.c_str(), O_WRONLY | O_CREAT, local 302 if (target_fd < 0) { 316 rc = sendfile(target_fd, src_fd, &offset, static_cast<size_t>(chunk)); 325 rc = write(target_fd, buffer.get(), static_cast<size_t>(chunk)); 339 rc = close(target_fd);
|
/external/strace/ |
bpf.c | 249 uint32_t target_fd, attach_bpf_fd, attach_type, attach_flags; member in struct:__anon35270 255 PRINT_FIELD_FD("{", attr, target_fd, tcp); 269 uint32_t target_fd, dummy, attach_type; member in struct:__anon35271 275 PRINT_FIELD_FD("{", attr, target_fd, tcp);
|
/external/iproute2/include/ |
bpf_util.h | 261 int bpf_prog_attach_fd(int prog_fd, int target_fd, enum bpf_attach_type type); 262 int bpf_prog_detach_fd(int target_fd, enum bpf_attach_type type);
|
/external/strace/tests/ |
bpf.c | 470 DEF_BPF_INIT_FIRST(BPF_PROG_ATTACH, target_fd, -1) 475 printf("target_fd=-1, attach_bpf_fd=0" 483 .target_fd = -1, 499 printf("target_fd=-1, attach_bpf_fd=-2" 510 .target_fd = -1, 525 printf("target_fd=-1, attach_type=BPF_CGROUP_INET_INGRESS"); 531 printf("target_fd=-1, attach_type=BPF_CGROUP_INET_SOCK_CREATE");
|
/external/strace/tests-m32/ |
bpf.c | 470 DEF_BPF_INIT_FIRST(BPF_PROG_ATTACH, target_fd, -1) 475 printf("target_fd=-1, attach_bpf_fd=0" 483 .target_fd = -1, 499 printf("target_fd=-1, attach_bpf_fd=-2" 510 .target_fd = -1, 525 printf("target_fd=-1, attach_type=BPF_CGROUP_INET_INGRESS"); 531 printf("target_fd=-1, attach_type=BPF_CGROUP_INET_SOCK_CREATE");
|
/external/strace/tests-mx32/ |
bpf.c | 470 DEF_BPF_INIT_FIRST(BPF_PROG_ATTACH, target_fd, -1) 475 printf("target_fd=-1, attach_bpf_fd=0" 483 .target_fd = -1, 499 printf("target_fd=-1, attach_bpf_fd=-2" 510 .target_fd = -1, 525 printf("target_fd=-1, attach_type=BPF_CGROUP_INET_INGRESS"); 531 printf("target_fd=-1, attach_type=BPF_CGROUP_INET_SOCK_CREATE");
|
/bionic/libc/kernel/uapi/linux/ |
bpf.h | 188 __u32 target_fd; member in struct:bpf_attr::__anon490 218 __u32 target_fd; member in struct:bpf_attr::__anon495
|
/external/kernel-headers/original/uapi/linux/ |
bpf.h | 275 __u32 target_fd; /* container object to attach to */ member in struct:bpf_attr::__anon22696 309 __u32 target_fd; /* container object to query */ member in struct:bpf_attr::__anon22701
|
/system/netd/libbpf/ |
BpfUtils.cpp | 179 attr.target_fd = cg_fd; 189 attr.target_fd = cg_fd;
|
/external/iproute2/include/uapi/linux/ |
bpf.h | 148 * to the given target_fd cgroup the descendent cgroup will be able to 222 __u32 target_fd; /* container object to attach to */ member in struct:bpf_attr::__anon21863
|
/external/iproute2/lib/ |
bpf.c | 1029 int bpf_prog_attach_fd(int prog_fd, int target_fd, enum bpf_attach_type type) 1033 attr.target_fd = target_fd; 1040 int bpf_prog_detach_fd(int target_fd, enum bpf_attach_type type) 1044 attr.target_fd = target_fd; [all...] |