Home
last modified time | relevance | path

Searched refs:scandir (Results 1 – 25 of 83) sorted by relevance

1234

/third_party/musl/libc-test/src/functionalext/supplement/dirent/
Dscandir.c37 int n = scandir(name, &namelist, NULL, alphasort); in scandir_0100()
60 int n = scandir(name, &namelist, NULL, versionsort); in scandir_0200()
82 int n = scandir(name, &namelist, filter, versionsort); in scandir_0300()
102 int n = scandir(NULL, &namelist, NULL, alphasort); in scandir_0400()
Dalphasort.c27 int total = scandir("/", &namelist, 0, alphasort); in alphasort_0100()
39 int total = scandir(NULL, &namelist, 0, alphasort); in alphasort_0200()
Dtest_src_functionalext_supplement_dirent.gni21 "scandir",
/third_party/python/Lib/
Dpathlib.py290 scandir = os.scandir variable in _NormalAccessor
404 scandir = parent_path._accessor.scandir
407 return self._select_from(parent_path, is_dir, exists, scandir)
412 def _select_from(self, parent_path, is_dir, exists, scandir): argument
422 def _select_from(self, parent_path, is_dir, exists, scandir): argument
426 for p in self.successor._select_from(path, is_dir, exists, scandir):
438 def _select_from(self, parent_path, is_dir, exists, scandir): argument
440 with scandir(parent_path) as scandir_it:
457 for p in self.successor._select_from(path, is_dir, exists, scandir):
468 def _iterate_directories(self, parent_path, is_dir, scandir): argument
[all …]
Dshutil.py554 with os.scandir(src) as itr:
595 with os.scandir(path) as scandir_it:
598 onerror(os.scandir, path, sys.exc_info())
626 with os.scandir(topfd) as scandir_it:
630 onerror(os.scandir, path, sys.exc_info())
678 os.scandir in os.supports_fd and
Dos.py357 scandir_it = scandir(top)
428 if {open, stat} <= supports_dir_fd and {scandir, stat} <= supports_fd:
484 scandir_it = scandir(topfd)
/third_party/musl/src/dirent/
Dscandir.c8 int scandir(const char *path, struct dirent ***res, in scandir() function
47 weak_alias(scandir, scandir64);
/third_party/musl/include/
Ddirent.h33 int scandir(const char *, struct dirent ***, int (*)(const struct dirent *), int (*)(const struct d…
63 #define scandir64 scandir
/third_party/musl/porting/liteos_m/kernel/include/
Ddirent.h33 int scandir(const char *, struct dirent ***, int (*)(const struct dirent *), int (*)(const struct d…
63 #define scandir64 scandir
/third_party/musl/porting/uniproton/kernel/include/
Ddirent.h33 int scandir(const char *, struct dirent ***, int (*)(const struct dirent *), int (*)(const struct d…
63 #define scandir64 scandir
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
Ddirent.h33 int scandir(const char *, struct dirent ***, int (*)(const struct dirent *), int (*)(const struct d…
63 #define scandir64 scandir
/third_party/musl/porting/liteos_a/kernel/include/
Ddirent.h33 int scandir(const char *, struct dirent ***, int (*)(const struct dirent *), int (*)(const struct d…
63 #define scandir64 scandir
/third_party/musl/libc-test/src/functionalext/supplement/dirent/dirent_gtest/
Ddirent_scandir_test.cpp23 EXPECT_TRUE(scandir("/fake-dir", &result, nullptr, nullptr) == -1);
Ddirent_alphasort64_test.cpp19 int n = scandir(".", &nameList, nullptr, alphasort64);
/third_party/protobuf/php/tests/
Dautoload.php7 $files = scandir($dir);
/third_party/musl/libc-test/src/api/
Ddirent.c27 …nt***,int(*)(const struct dirent*),int(*)(const struct dirent**,const struct dirent**)) = scandir;} in f()
/third_party/libuv/src/unix/
Dos390-syscalls.h61 int scandir(const char* maindir, struct dirent*** namelist,
/third_party/node/deps/uv/src/unix/
Dos390-syscalls.h61 int scandir(const char* maindir, struct dirent*** namelist,
/third_party/elfutils/tests/
Dlfs-symbols66 scandir
/third_party/node/test/parallel/
Dtest-repl-underscore.js180 /^Uncaught Error: ENOENT: no such file or directory, scandir '.*nonexistent\?'/,
/third_party/musl/Benchmark/musl/
Dlibc_dirent.cpp44 int n = scandir(dir, &entry, nullptr, alphasort); in Bm_function_ScanDir()
/third_party/libevdev/libevdev/
Dlibevdev-uinput.c206 ndev = scandir(path, &namelist, is_event_device, alphasort); in fetch_device_node()
245 ndev = scandir(SYS_INPUT_DIR, &namelist, is_input_device, alphasort); in fetch_syspath_and_devnode()
/third_party/python/PC/layout/support/
Dfilesets.py81 condition, (type(root)(f2) for f2 in os.scandir(d) if f2.is_dir())
/third_party/libuv/docs/src/
Dmigration_010_100.rst239 actually implemented using ``scandir(3)``.
244 list of *dents* returned by ``scandir(3)`` around.
/third_party/python/Misc/NEWS.d/
D3.5.0a2.rst18 New os.scandir() function, part of the :pep:`471`: "os.scandir() function -- a

1234