HomeSort by relevance Sort by last modified time
    Searched refs:fts (Results 1 - 20 of 20) sorted by null

  /bionic/tools/versioner/src/
Utils.cpp 20 #include <fts.h>
44 std::unique_ptr<FTS, decltype(&fts_close)> fts(
47 if (!fts) {
51 while (FTSENT* ent = fts_read(fts.get())) {
VFS.cpp 19 #include <fts.h>
39 std::unique_ptr<FTS, decltype(&fts_close)> fts(
42 if (!fts) {
46 while (FTSENT* ent = fts_read(fts.get())) {
Preprocessor.cpp 21 #include <fts.h>
443 std::unique_ptr<FTS, decltype(&fts_close)> fts(fts_open(fts_paths, FTS_LOGICAL, nullptr),
445 if (!fts) {
449 while (FTSENT* ent = fts_read(fts.get())) {
  /bionic/libc/bionic/
ftw.cpp 22 #include <fts.h>
50 FTS* fts = fts_open(paths, fts_options, nullptr); local
51 if (fts == nullptr) {
58 while (error == 0 && (cur = fts_read(fts)) != nullptr) {
109 if (fts_close(fts) != 0 && error == 0) {
fts.c 1 /* $OpenBSD: fts.c,v 1.48 2014/11/20 04:14:15 guenther Exp $ */
39 #include <fts.h>
45 static FTSENT *fts_alloc(FTS *, char *, size_t);
46 static FTSENT *fts_build(FTS *, int);
48 static void fts_load(FTS *, FTSENT *);
50 static void fts_padjust(FTS *, FTSENT *);
51 static int fts_palloc(FTS *, size_t);
52 static FTSENT *fts_sort(FTS *, FTSENT *, int);
53 static u_short fts_stat(FTS *, FTSENT *, int, int);
54 static int fts_safe_changedir(FTS *, FTSENT *, int, char *)
    [all...]
  /frameworks/native/cmds/installd/
CacheItem.h 23 #include <fts.h>
CacheItem.cpp 73 FTS *fts; local
76 if (!(fts = fts_open(argv, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL))) {
80 while ((p = fts_read(fts)) != nullptr) {
CacheTracker.cpp 21 #include <fts.h>
103 FTS *fts; local
106 if (!(fts = fts_open(argv, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL))) {
110 while ((p = fts_read(fts)) != nullptr) {
134 while ((p = fts_read(fts)) != nullptr) {
166 fts_close(fts);
utils.cpp 21 #include <fts.h>
330 FTS *fts; local
334 if (!(fts = fts_open(argv, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL))) {
340 while ((p = fts_read(fts)) != NULL) {
355 fts_set(fts, p, FTS_SKIP);
368 fts_close(fts);
1076 FTS *fts; local
    [all...]
InstalldNativeService.cpp 24 #include <fts.h>
632 FTS* fts; local
637 if (!(fts = fts_open(argv, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL))) {
640 while ((p = fts_read(fts)) != nullptr) {
654 FTSENT* child = fts_children(fts, 0);
681 fts_set(fts, p, FTS_SKIP);
717 fts_close(fts);
957 FTS *fts; local
1313 FTS *fts; local
1719 FTS *fts; local
    [all...]
  /external/elfutils/libdwfl/
linux-kernel-modules.c 33 #include <fts.h>
48 /* Since fts.h is included before config.h, its indirect inclusions may not
344 FTS *fts = fts_open (modulesdir, FTS_NOSTAT | FTS_LOGICAL, NULL); local
347 if (fts == NULL)
354 while ((f = fts_read (fts)) != NULL)
361 fts_set (fts, f, FTS_SKIP);
434 fts_close (fts);
584 FTS *fts = fts_open (dirs, FTS_NOSTAT | FTS_LOGICAL, NULL)
    [all...]
  /external/selinux/policycoreutils/setfiles/
restore.h 6 #include <fts.h>
  /external/selinux/restorecond/
restore.h 6 #include <fts.h>
  /external/selinux/libselinux/src/
selinux_restorecon.c 17 #include <fts.h>
776 FTS *fts; local
908 fts = fts_open(paths, fts_flags, NULL);
909 if (!fts)
912 ftsent = fts_read(fts);
918 * flag tells fts not to descend into directories with different
919 * device numbers, but fts will still give back the actual directory.
948 fts_set(fts, ftsent, FTS_SKIP);
955 fts_set(fts, ftsent, FTS_SKIP)
1143 FTS *fts; local
    [all...]
  /external/selinux/libselinux/src/android/
android_common.h 18 #include <fts.h>
android_platform.c 1408 FTS *fts; local
    [all...]
  /system/core/toolbox/upstream-netbsd/usr.bin/grep/
util.c 46 #include <fts.h>
115 FTS *fts; local
137 if (!(fts = fts_open(argv, fts_flags, NULL)))
139 while ((p = fts_read(fts)) != NULL) {
179 fts_close(fts);
  /system/vold/
VolumeManager.cpp 20 #include <fts.h>
1301 FTS *fts = fts_open(paths, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL); local
    [all...]
  /external/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
libcpuset.c 33 #include <fts.h>
3206 FTS *fts = NULL; local
    [all...]
  /system/extras/tests/sdcard/
sdcard_perf_test.cpp 40 #include <fts.h>
638 FTS *ftsp;

Completed in 636 milliseconds