Searched refs:namelist (Results 1 - 18 of 18) sorted by relevance

/external/linux-tools-perf/src/tools/perf/util/
H A Dthread_map.c27 struct dirent **namelist = NULL; local
31 items = scandir(name, &namelist, filter, NULL);
38 threads->map[i] = atoi(namelist[i]->d_name);
43 free(namelist[i]);
44 free(namelist);
66 struct dirent dirent, *next, **namelist = NULL; local
96 items = scandir(path, &namelist, filter, NULL);
117 threads->map[threads->nr + i] = atoi(namelist[i]->d_name);
120 free(namelist[i]);
121 free(namelist);
162 struct dirent **namelist = NULL; local
[all...]
H A Dprobe-event.c1785 struct strlist *namelist, bool allow_suffix)
1795 if (!strlist__has_entry(namelist, buf))
1811 if (!strlist__has_entry(namelist, buf))
1830 struct strlist *namelist; local
1840 namelist = get_probe_trace_event_names(fd, false);
1841 if (!namelist) {
1864 namelist, allow_suffix);
1878 /* Add added event name to namelist */
1879 strlist__add(namelist, event);
1907 strlist__delete(namelist);
1784 get_new_event_name(char *buf, size_t len, const char *base, struct strlist *namelist, bool allow_suffix) argument
2101 del_trace_probe_event(int fd, const char *buf, struct strlist *namelist) argument
2134 struct strlist *namelist = NULL, *unamelist = NULL; local
[all...]
H A Dmachine.c565 struct dirent **namelist = NULL; local
578 items = scandir(symbol_conf.guestmount, &namelist, NULL, NULL);
582 if (!isdigit(namelist[i]->d_name[0])) {
586 pid = (pid_t)strtol(namelist[i]->d_name, &endp, 10);
588 (endp == namelist[i]->d_name) ||
591 namelist[i]->d_name);
596 namelist[i]->d_name);
605 free(namelist);
/external/libselinux/src/
H A Dbooleans.c40 struct dirent **namelist; local
50 *len = scandir(path, &namelist, &filename_select, alphasort);
62 n[i] = strdup(namelist[i]->d_name);
72 free(namelist[i]);
74 free(namelist);
/external/selinux/libselinux/src/
H A Dbooleans.c41 struct dirent **namelist; local
54 *len = scandir(path, &namelist, &filename_select, alphasort);
66 n[i] = (char *)malloc(_D_ALLOC_NAMLEN(namelist[i]));
71 strcpy(n[i], namelist[i]->d_name);
77 free(namelist[i]);
79 free(namelist);
/external/icu/icu4c/source/tools/tzcode/
H A Dzdump.c247 static int getall(struct listentry ** namelist);
357 listentry * namelist = NULL; local
497 count = getall(&namelist);
509 fakeargv[i + argc] = namelist->name;
510 namelist = namelist->next;
674 struct listentry * entry = namelist;
1029 static int getall(struct listentry ** namelist) { argument
1036 *namelist = dummyentry.next;
/external/openssh/
H A Dssh-keyscan.c351 char *namebase, *name, *namelist; local
354 namebase = namelist = xstrdup(iname);
357 name = xstrsep(&namelist, ",");
373 fdcon[s].c_namelist = namelist;
640 "\t\t [host | addrlist namelist] ...\n",
/external/selinux/policycoreutils/setfiles/
H A Drestore.c302 const char *namelist[2] = {name, NULL}; local
313 fts_handle = fts_open((char **)namelist, r_opts->fts_flags, NULL);
317 r_opts->progname, namelist[0], strerror(errno));
326 r_opts->progname, namelist[0], strerror(errno));
/external/selinux/libsemanage/src/
H A Dsemanage_store.c781 struct dirent **namelist = NULL; local
783 if ((num_entries = scandir(path, &namelist, semanage_filename_select,
790 snprintf(s, sizeof(s), "%s/%s", path, namelist[i]->d_name);
804 free(namelist[i]);
806 free(namelist);
/external/emma/core/java12/com/vladium/util/args/
H A DOptsParser.java1026 * optnamelist := namelist
1034 * [ "," "requires" "{" namelist "}" ]
1035 * [ "," "notwith" "{" namelist "}" ]
1038 * namelist := name ( "," name )*
1086 return namelist ();
1156 optdef.setRequiresSet (namelist ());
1167 optdef.setExcludesSet (namelist ());
1188 String [] namelist () method in class:OptsParser.MetadataParser
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc2757 INTERCEPTOR(int, scandir, char *dirp, __sanitizer_dirent ***namelist,
2760 COMMON_INTERCEPTOR_ENTER(ctx, scandir, dirp, namelist, filter, compar);
2767 int res = REAL(scandir)(dirp, namelist, filter ? wrapped_scandir_filter : 0,
2771 if (namelist && res > 0) {
2772 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, namelist, sizeof(*namelist));
2773 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, *namelist, sizeof(**namelist) * res);
2775 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, (*namelist)[i],
2776 (*namelist)[
[all...]
/external/elfutils/src/src/
H A Delflint.c3043 struct namelist struct
3046 struct namelist *next;
3047 } *namelist = NULL; local
3048 struct namelist *refnamelist = NULL;
3118 struct namelist *newname = alloca (sizeof (*newname));
3120 newname->next = namelist;
3121 namelist = newname;
3173 while (namelist != NULL)
3179 && strcmp (runp->name, namelist->name) == 0)
3187 idx, section_name (ebl, idx), namelist
[all...]
/external/sonivox/jet_tools/JetCreator/
H A DJetUtils.py491 if not FileJustName(segment.filename) in zip.namelist():
494 if not FileJustName(segment.output) in zip.namelist():
500 if not FileJustName(library) in zip.namelist():
H A DJetCreator.py1017 fileList = zip.namelist()
1034 for name in zip.namelist():
/external/selinux/sepolgen/src/sepolgen/
H A Dlex.py408 def _names_to_funcs(namelist,fdict):
410 for n in namelist:
/external/elfutils/src/libdw/
H A Dknown-dwarf.h585 ONE_KNOWN_DW_TAG (namelist, DW_TAG_namelist) \
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 1498 milliseconds