Searched refs:fts (Results 1 - 5 of 5) sorted by relevance

/frameworks/native/cmds/installd/
H A DCacheItem.h23 #include <fts.h>
H A DCacheItem.cpp73 FTS *fts; local
76 if (!(fts = fts_open(argv, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL))) {
80 while ((p = fts_read(fts)) != nullptr) {
H A DCacheTracker.cpp21 #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);
H A Dutils.cpp21 #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
1079 if (!(fts = fts_open(argv, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL))) {
1083 while ((p = fts_read(fts)) != NULL) {
1103 fts_close(fts);
[all...]
H A DInstalldNativeService.cpp24 #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
964 if (!(fts = fts_open(argv, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL))) {
967 while ((p = fts_read(fts)) !
1313 FTS *fts; local
1719 FTS *fts; local
[all...]

Completed in 46 milliseconds