Home
last modified time | relevance | path

Searched refs:readdir_r (Results 1 - 17 of 17) sorted by relevance

/third_party/musl/src/dirent/
H A Dreaddir_r.c7 int readdir_r(DIR *restrict dir, struct dirent *restrict buf, struct dirent **restrict result) in readdir_r() function
29 weak_alias(readdir_r, readdir64_r);
/third_party/musl/libc-test/src/functionalext/supplement/dirent/
H A Dreaddir_r.c46 int result = readdir_r(dir, &buf, &res); in readdir_r_0100()
48 t_error("%s failed: readdir_r. result = %s\n", __func__, result); in readdir_r_0100()
67 readdir_r(dir, &buf, &res); in readdir_r_0200()
/third_party/musl/porting/liteos_a/kernel/include/
H A Ddirent.h28 int readdir_r(DIR *__restrict, struct dirent *__restrict, struct dirent **__restrict);
62 #define readdir64_r readdir_r
/third_party/musl/porting/liteos_m/kernel/include/
H A Ddirent.h28 int readdir_r(DIR *__restrict, struct dirent *__restrict, struct dirent **__restrict);
62 #define readdir64_r readdir_r
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
H A Ddirent.h28 int readdir_r(DIR *__restrict, struct dirent *__restrict, struct dirent **__restrict);
62 #define readdir64_r readdir_r
/third_party/musl/porting/uniproton/kernel/include/
H A Ddirent.h28 int readdir_r(DIR *__restrict, struct dirent *__restrict, struct dirent **__restrict);
62 #define readdir64_r readdir_r
/third_party/musl/include/
H A Ddirent.h28 int readdir_r(DIR *__restrict, struct dirent *__restrict, struct dirent **__restrict);
62 #define readdir64_r readdir_r
/third_party/rust/crates/nix/src/
H A Ddir.rs13 use libc::{dirent64 as dirent, readdir64_r as readdir_r};
16 use libc::{dirent, readdir_r};
83 // future versions of POSIX are likely to obsolete `readdir_r` and specify that it's unsafe to
113 if let Err(e) = Errno::result(readdir_r( in next()
/third_party/libwebsockets/win32port/dirent/
H A Ddirent-win32.h297 static int readdir_r(
742 (void) readdir_r (dirp, &dirp->ent, &entry); in readdir()
755 readdir_r( in readdir_r() function
944 if (readdir_r (dir, tmp, &entry) == /*OK*/0) { in scandir()
/third_party/musl/libc-test/src/api/
H A Ddirent.c25 {int(*p)(DIR*restrict,struct dirent*restrict,struct dirent**restrict) = readdir_r;} in f()
/third_party/lwip/src/apps/http/makefsdata/
H A Dtinydir.h118 /* readdir_r usage; define TINYDIR_USE_READDIR_R to use it (if supported) */
121 /* readdir_r is a POSIX-only function, and may not be available under various
319 /* allocate dirent buffer for readdir_r */ in tinydir_open()
325 error = readdir_r(dir->_d, dir->_ep, &dir->_e); in tinydir_open()
461 if (readdir_r(dir->_d, dir->_ep, &dir->_e) != 0) in tinydir_open()
763 from https://womble.decadent.org.uk/readdir_r-advisory.html in tinydir_open()
791 #error "buffer size for readdir_r cannot be determined" in tinydir_open()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
H A Dwpa_ctrl.c287 while (readdir_r(dir, &entry, &result) == 0 && result != NULL) { in wpa_ctrl_cleanup()
/third_party/rust/crates/libc/src/vxworks/
H A Dmod.rs1365 pub fn readdir_r(pDir: *mut ::DIR, entry: *mut ::dirent, result: *mut *mut ::dirent) in readdir_r() functions
/third_party/rust/crates/libc/src/unix/
H A Dmod.rs1454 link_name = "readdir_r$INODE64")]
1458 link_name = "readdir_r@FBSD_1.0"
1461 /// The 64-bit libc on Solaris and illumos only has readdir_r. If a
1467 pub fn readdir_r(dirp: *mut ::DIR, entry: *mut ::dirent, in readdir_r() functions
/third_party/ltp/testcases/kernel/fs/scsi/ltpscsi/
H A Dscsimain.c1623 res = readdir_r(sdir, de_entry, &de_result); in leaf_dir()
1626 "leaf_dir: readdir_r of %s: %s\n", lf, in leaf_dir()
1695 /* Return 0 -> ok, -1 -> opendir() error, -2 -> readdir_r error,
1716 res = readdir_r(sdir, de_entry, &de_result); in hbtl_scan()
1718 fprintf(stderr, "hbtl_scan: readdir_r of %s: %s\n", in hbtl_scan()
/third_party/rust/crates/libc/src/fuchsia/
H A Dmod.rs3529 pub fn readdir_r(dirp: *mut ::DIR, entry: *mut ::dirent, result: *mut *mut ::dirent) in readdir_r() functions
/third_party/sqlite/src/
H A Dshell.c1193 ** readdir_r() functions.
1209 ** readdir(), readdir_r(), and closedir() POSIX functions.
1214 extern INT readdir_r(LPDIR dirp, LPDIRENT entry, LPDIRENT *result);
1349 ** Implementation of the POSIX readdir_r() function using the MSVCRT.
1351 INT readdir_r( in readdir_r() function

Completed in 64 milliseconds