Home
last modified time | relevance | path

Searched refs:opendir (Results 1 – 25 of 244) sorted by relevance

12345678910

/third_party/node/test/parallel/
Dtest-fs-opendir.js68 fs.opendir(testDir, common.mustSucceed((dir) => {
96 fs.opendir(__filename);
99 fs.opendir(__filename, common.mustCall(function(e) {
105 () => fs.opendir(i, common.mustNotCall()),
123 const dir = await fs.promises.opendir(testDir);
145 for await (const dirent of await fs.promises.opendir(testDir)) {
159 const dir = await fs.promises.opendir(testDir);
169 const dir = await fs.promises.opendir(testDir);
181 const dir = await fs.promises.opendir(testDir);
221 const dir = await fs.promises.opendir(testDir);
[all …]
/third_party/musl/libc-test/src/functionalext/supplement/dirent/
Dopendir.c30 DIR *dir = opendir(path); in opendir_0100()
48 DIR *dir1 = opendir("/dev/null"); in opendir_0200()
54 DIR *dir2 = opendir("/does/not/exit/folder"); in opendir_0200()
70 DIR *dir = opendir(NULL); in opendir_0300()
Dseekdir.c39 DIR *dir = opendir(path); in seekdir_0100()
89 DIR *dir = opendir(path); in seekdir_0200()
Ddirfd.c26 DIR *dir = opendir("."); in dirfd_0100()
Dreaddir.c29 dir = opendir("/etc"); in readdir_0100()
Dclosedir.c32 dir_ptr = opendir(path); in closedir_0100()
Dreaddir_r.c36 DIR *dir = opendir(name); in readdir_r_0100()
/third_party/node/lib/internal/fs/
Ddir.js230 function opendir(path, options, callback) { function
251 dirBinding.opendir(
265 const handle = dirBinding.opendir(
278 opendir, property
/third_party/eudev/src/udev/
Dudevadm-info.c229 dir = opendir(UDEV_ROOT_RUN "/udev/data"); in cleanup_db()
235 dir = opendir(UDEV_ROOT_RUN "/udev/links"); in cleanup_db()
241 dir = opendir(UDEV_ROOT_RUN "/udev/tags"); in cleanup_db()
247 dir = opendir(UDEV_ROOT_RUN "/udev/static_node-tags"); in cleanup_db()
253 dir = opendir(UDEV_ROOT_RUN "/udev/watch"); in cleanup_db()
/third_party/node/benchmark/fs/
Dbench-opendir.js22 const dir = await fs.promises.opendir(fullPath, { bufferSize });
27 const dir = await fs.promises.opendir(fullPath, { bufferSize });
/third_party/musl/libc-test/src/functionalext/supplement/unistd/
Dsymlinkat.c43 dp = opendir(path_name); in symlinkat_0100()
90 dp = opendir(path_name); in symlinkat_0200()
/third_party/icu/icu4c/source/tools/toolutil/
Dfiletools.cpp55 if ((pDir= opendir(checkAgainst)) != NULL) { in isFileModTimeLater()
70 if ((subDirp = opendir(newpath.data())) != NULL) { in isFileModTimeLater()
/third_party/node/deps/icu-small/source/tools/toolutil/
Dfiletools.cpp55 if ((pDir= opendir(checkAgainst)) != NULL) { in isFileModTimeLater()
70 if ((subDirp = opendir(newpath.data())) != NULL) { in isFileModTimeLater()
/third_party/flutter/skia/third_party/externals/icu/source/tools/toolutil/
Dfiletools.cpp55 if ((pDir= opendir(checkAgainst)) != NULL) { in isFileModTimeLater()
70 if ((subDirp = opendir(newpath.data())) != NULL) { in isFileModTimeLater()
/third_party/boost/boost/process/detail/posix/
Dhandles.hpp25 std::unique_ptr<DIR, void(*)(DIR*)> dir{::opendir("/dev/fd"), +[](DIR* p){::closedir(p);}}; in get_handles()
111 auto dir = ::opendir("/dev/fd"); in on_exec_setup()
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
Dfiletools.cpp55 if ((pDir= opendir(checkAgainst)) != NULL) { in isFileModTimeLater()
70 if ((subDirp = opendir(newpath.data())) != NULL) { in isFileModTimeLater()
/third_party/ltp/testcases/kernel/syscalls/getcpu/
Dgetcpu01.c90 directory_parent = opendir("/sys/devices/system/node"); in get_nodeid()
105 directory_node = opendir(directory_path); in get_nodeid()
/third_party/node/test/wasi/c/
Dnotdir.c6 DIR* dir = opendir("/sandbox/notadir"); in main()
/third_party/e2fsprogs/lib/blkid/
Ddevname.c132 if ((dir = opendir("/sys/block")) == NULL) in is_dm_leaf()
141 if ((d_dir = opendir(path)) == NULL) in is_dm_leaf()
310 if ((vg_list = opendir(VG_DIR)) == NULL) in lvm_probe_all()
329 lv_list = opendir(vdirname); in lvm_probe_all()
/third_party/musl/src/dirent/
Dopendir.c8 DIR *opendir(const char *name) in opendir() function
/third_party/e2fsprogs/tests/progs/
Dhold_inode.c37 if (!opendir(filename)) { in main()
/third_party/skia/src/ports/
DSkOSFile_posix.cpp157 self.fDIR = ::opendir(path); in reset()
161 self.fDIR = ::opendir(self.fPath.c_str()); in reset()
/third_party/flutter/skia/src/ports/
DSkOSFile_posix.cpp157 self.fDIR = ::opendir(path); in reset()
161 self.fDIR = ::opendir(self.fPath.c_str()); in reset()
/third_party/flutter/skia/third_party/externals/sdl/src/power/linux/
DSDL_syspower.c248 dirp = opendir(proc_acpi_battery_path); in SDL_GetPowerInfo_Linux_proc_acpi()
260 dirp = opendir(proc_acpi_ac_adapter_path); in SDL_GetPowerInfo_Linux_proc_acpi()
437 dirp = opendir(base); in SDL_GetPowerInfo_Linux_sys_class_power_supply()
/third_party/musl/porting/liteos_a_newlib/kernel/include/
Ddirent.h69 DIR *opendir(const char *dirName);

12345678910