Searched defs:namelist (Results 1 - 20 of 20) sorted by relevance

/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dzipfileset_mock.py38 def namelist(self): member in class:make_factory.MockZipFileSet
H A Ddirectoryfileset.py54 def namelist(self): member in class:DirectoryFileSet
H A Dzip_mock.py40 def namelist(self): member in class:MockZip
H A Dzipfileset.py58 def namelist(self): member in class:ZipFileSet
60 return self._zip_file.namelist()
H A Dzipfileset_unittest.py45 def namelist(self): member in class:FakeZip
95 self.assertTrue('some-file' in self._zip.namelist())
/external/linux-tools-perf/util/
H A Dthread_map.c20 struct dirent **namelist = NULL; local
24 items = scandir(name, &namelist, filter, NULL);
31 threads->map[i] = atoi(namelist[i]->d_name);
36 free(namelist[i]);
37 free(namelist);
H A Dprobe-event.c1598 struct strlist *namelist, bool allow_suffix)
1608 if (!strlist__has_entry(namelist, buf))
1624 if (!strlist__has_entry(namelist, buf))
1643 struct strlist *namelist; local
1649 namelist = get_probe_trace_event_names(fd, false);
1650 if (!namelist) {
1673 namelist, allow_suffix);
1687 /* Add added event name to namelist */
1688 strlist__add(namelist, event);
1716 strlist__delete(namelist);
1597 get_new_event_name(char *buf, size_t len, const char *base, struct strlist *namelist, bool allow_suffix) argument
1882 del_trace_probe_event(int fd, const char *group, const char *event, struct strlist *namelist) argument
1925 struct strlist *namelist; local
[all...]
H A Dsymbol.c2599 struct dirent **namelist = NULL; local
2611 items = scandir(symbol_conf.guestmount, &namelist, NULL, NULL);
2615 if (!isdigit(namelist[i]->d_name[0])) {
2619 pid = atoi(namelist[i]->d_name);
2622 namelist[i]->d_name);
2631 free(namelist);
/external/webkit/Tools/Scripts/webkitpy/tool/bot/
H A Dflakytestreporter_unittest.py143 def namelist(self): member in class:FlakyTestReporterTest.test_report_flaky_tests_creating_bug.MockZipFile
162 def namelist(self): member in class:FlakyTestReporterTest.test_find_in_archive.MockZipFile
/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/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_ufd.c53 struct dirent **namelist; local
56 file_num = scandir(path, &namelist, &dev_pwd_e_file_filter,
65 os_free(namelist);
68 os_strlcpy(file_name, namelist[0]->d_name, 13);
70 os_free(namelist[i]);
71 os_free(namelist);
/external/wpa_supplicant_8/src/wps/
H A Dwps_ufd.c53 struct dirent **namelist; local
56 file_num = scandir(path, &namelist, &dev_pwd_e_file_filter,
65 os_free(namelist);
68 os_strlcpy(file_name, namelist[0]->d_name, 13);
70 os_free(namelist[i]);
71 os_free(namelist);
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_ufd.c53 struct dirent **namelist; local
56 file_num = scandir(path, &namelist, &dev_pwd_e_file_filter,
65 os_free(namelist);
68 os_strlcpy(file_name, namelist[0]->d_name, 13);
70 os_free(namelist[i]);
71 os_free(namelist);
/external/webkit/Tools/Scripts/webkitpy/tool/commands/
H A Dqueues_unittest.py375 def namelist(self): member in class:CommitQueueTest.test_report_flaky_tests.MockZipFile
/external/openssh/
H A Dssh-keyscan.c324 char *namebase, *name, *namelist; local
327 namebase = namelist = xstrdup(iname);
330 name = xstrsep(&namelist, ",");
346 fdcon[s].c_namelist = namelist;
605 "\t\t [host | addrlist namelist] ...\n",
/external/icu4c/tools/tzcode/
H A Dzdump.c182 static int getall(struct listentry ** namelist);
298 listentry * namelist = NULL; local
407 count = getall(&namelist);
419 fakeargv[i + argc] = namelist->name;
420 namelist = namelist->next;
580 struct listentry * entry = namelist;
973 static int getall(struct listentry ** namelist) { argument
980 *namelist = dummyentry.next;
/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/elfutils/src/
H A Delflint.c2962 struct namelist struct
2965 struct namelist *next;
2966 } *namelist = NULL; local
2967 struct namelist *refnamelist = NULL;
3037 struct namelist *newname = alloca (sizeof (*newname));
3039 newname->next = namelist;
3040 namelist = newname;
3092 while (namelist != NULL)
3098 && strcmp (runp->name, namelist->name) == 0)
3106 idx, section_name (ebl, idx), namelist
[all...]
/external/libppp/src/
H A Dcommand.c282 char namelist[LINE_LEN]; local
289 namelist[sizeof namelist - 1] = '\0';
291 strncpy(namelist, arg->argv[f], sizeof namelist - 1);
292 for(name = strtok(namelist, ", "); name; name = strtok(NULL,", "))
2679 char namelist[LINE_LEN]; local
2698 strncpy(namelist, arg->argv[arg->argn], sizeof namelist - 1);
2699 namelist[sizeo
[all...]
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 1649 milliseconds