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) {
165 fts_close(fts);
H A Dutils.cpp21 #include <fts.h>
306 FTS *fts; local
310 if (!(fts = fts_open(argv, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL))) {
316 while ((p = fts_read(fts)) != NULL) {
331 fts_set(fts, p, FTS_SKIP);
344 fts_close(fts);
1040 FTS *fts; local
1043 if (!(fts = fts_open(argv, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL))) {
1047 while ((p = fts_read(fts)) != NULL) {
1067 fts_close(fts);
[all...]
H A DInstalldNativeService.cpp24 #include <fts.h>
626 FTS* fts; local
631 if (!(fts = fts_open(argv, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL))) {
634 while ((p = fts_read(fts)) != nullptr) {
648 FTSENT* child = fts_children(fts, 0);
675 fts_set(fts, p, FTS_SKIP);
711 fts_close(fts);
951 FTS *fts; local
958 if (!(fts = fts_open(argv, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL))) {
961 while ((p = fts_read(fts)) !
1307 FTS *fts; local
1705 FTS *fts; local
[all...]

Completed in 331 milliseconds