/external/iproute2/include/ |
bpf_scm.h | 25 struct bpf_elf_map ent[BPF_SCM_MAX_FDS]; member in struct:bpf_map_aux 69 msg->iov.iov_len = offsetof(struct bpf_map_aux, ent) +
|
/external/libcap-ng/libcap-ng-0.7/utils/ |
netcap.c | 51 struct dirent *ent; local 57 while (( ent = readdir(d) )) { 66 if(*ent->d_name<'0' || *ent->d_name>'9') 69 pid = strtol(ent->d_name, NULL, 10); 161 while (( ent = readdir(f) )) { 167 if (ent->d_name[0] == '.') 169 snprintf(ln, 256, "%s/%s", buf, ent->d_name);
|
/external/mesa3d/src/mapi/glapi/gen/ |
remap_helper.py | 50 for ent in func.entry_points: 51 spec.append("gl" + ent)
|
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/ |
hpack_table.cc | 351 grpc_mdelem ent = tbl->static_ents[i]; local 352 if (!grpc_slice_eq(GRPC_MDKEY(md), GRPC_MDKEY(ent))) continue; 354 r.has_value = grpc_slice_eq(GRPC_MDVALUE(md), GRPC_MDVALUE(ent)); 362 grpc_mdelem ent = tbl->ents[(tbl->first_ent + i) % tbl->cap_entries]; local 363 if (!grpc_slice_eq(GRPC_MDKEY(md), GRPC_MDKEY(ent))) continue; 365 r.has_value = grpc_slice_eq(GRPC_MDVALUE(md), GRPC_MDVALUE(ent));
|
/external/python/cpython2/Lib/idlelib/ |
SearchDialogBase.py | 36 ent (ry): created in make_entry() called from create_entry(). 56 self.ent.delete(0,"end") 57 self.ent.insert("end",searchphrase) 58 self.ent.focus_set() 59 self.ent.selection_range(0, "end") 60 self.ent.icursor(0) 107 self.ent = self.make_entry("Find:", self.engine.patvar)[0]
|
/external/python/cpython3/Lib/idlelib/ |
searchbase.py | 37 ent (ry): created in make_entry() called from create_entry(). 58 self.ent.delete(0,"end") 59 self.ent.insert("end",searchphrase) 60 self.ent.focus_set() 61 self.ent.selection_range(0, "end") 62 self.ent.icursor(0) 109 self.ent = self.make_entry("Find:", self.engine.patvar)[0]
|
/development/vndk/tools/sourcedr/blueprint/ |
analyze_manifest_split.py | 89 ent = (rule, path, name) 92 self.both.add(ent) 102 self.vendor_only.add(ent) 105 self.both.add(ent) 107 self.system_only.add(ent)
|
/external/linux-kselftest/tools/testing/selftests/gpio/ |
gpio-mockup-chardev.c | 132 const struct dirent *ent; local 151 while (ent = readdir(dp), ent) { 152 if (check_prefix(ent->d_name, "gpiochip")) { 153 *ret = asprintf(&chrdev_name, "/dev/%s", ent->d_name);
|
/external/llvm/test/MC/Mips/ |
elf-tls.s | 22 .ent f1 54 .ent f2 86 .ent f3
|
elf-N64.s | 24 .ent main
|
elf-gprel-32-64.s | 29 .ent test
|
instr-analysis.s | 25 .ent foo
|
xgot.s | 26 .ent fill
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Mips/ |
elf-tls.s | 22 .ent f1 54 .ent f2 86 .ent f3
|
elf-N64.s | 24 .ent main
|
elf-gprel-32-64.s | 29 .ent test
|
instr-analysis.s | 25 .ent foo
|
xgot.s | 26 .ent fill
|
/external/libxml2/doc/ |
buildDocBookCatalog | 262 found=`find $top -name iso-amsb.ent` 264 found=`find /usr/share/xml -name iso-amsb.ent` 267 found=`find $HOME -name iso-amsb.ent` 270 found=`find /usr/local -name iso-amsb.ent` 273 found=`find /usr/share/sgml -name iso-amsb.ent` 276 echo could not locate iso-amsb.ent of ISO DocBook entities 298 "file://$isodir/iso-pub.ent" $CATALOG 301 "file://$isodir/iso-grk1.ent" $CATALOG 304 "file://$isodir/iso-box.ent" $CATALOG 307 "file://$isodir/iso-grk3.ent" $CATALO [all...] |
/external/perfetto/src/traced/probes/ftrace/ |
ftrace_procfs.cc | 290 struct dirent* ent; local 291 while ((ent = readdir(*dir)) != nullptr) { 292 if (strncmp(ent->d_name, ".", 1) == 0 || 293 strncmp(ent->d_name, "..", 2) == 0) { 296 // Check ent is a directory. 298 std::string dir_path = full_path + "/" + ent->d_name; 301 names.insert(ent->d_name);
|
/build/make/tools/libhost/ |
CopyFile.c | 492 struct dirent* ent; local 497 ent = readdir(dir); 498 if (ent == NULL) 501 if (strcmp(ent->d_name, ".") == 0 || 502 strcmp(ent->d_name, "..") == 0) 507 nameLen = strlen(ent->d_name); 514 memcpy(srcFile + srcLen+1, ent->d_name, nameLen +1); 519 memcpy(dstFile + dstLen+1, ent->d_name, nameLen +1);
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_report.cc | 122 void PrintStack(const ReportStack *ent) { 123 if (ent == 0 || ent->frames == 0) { 127 SymbolizedStack *frame = ent->frames; 368 void PrintStack(const ReportStack *ent) { 369 if (ent == 0 || ent->frames == 0) { 373 SymbolizedStack *frame = ent->frames;
|
/external/libcxx/test/support/ |
filesystem_dynamic_test_helper.py | 36 for ent in os.listdir(root_p): 37 p = os.path.join(root_p, ent)
|
/external/syzkaller/dashboard/app/ |
access_test.go | 272 for _, ent := range entities { 273 if requestLevel >= ent.level || ent.ref == "" { 276 if bytes.Contains(reply, []byte(ent.ref)) { 278 url, requestLevel, ent.ref, ent.level, reply) 297 for _, ent := range entities { 298 if ent.url == "" { 301 reply := checkPage(requestLevel, ent.level, ent.url [all...] |
/bionic/linker/arch/mips/ |
begin.S | 33 .ent __start
|