OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ftsent
(Results
1 - 2
of
2
) sorted by null
/system/core/toolbox/
restorecon.c
96
FTSENT
*
ftsent
;
local
103
while ((
ftsent
= fts_read(fts))) {
104
switch (
ftsent
->fts_info) {
110
fprintf(stderr, "Could not access %s: %s\n",
ftsent
->fts_path,
112
fts_set(fts,
ftsent
, FTS_SKIP);
115
if (restore(
ftsent
->fts_path,
ftsent
->fts_statp) < 0)
116
fts_set(fts,
ftsent
, FTS_SKIP);
/system/vold/
VolumeManager.cpp
588
for (
FTSENT
*
ftsent
= fts_read(fts);
ftsent
!= NULL;
ftsent
= fts_read(fts)) {
590
if (!strcmp(
ftsent
->fts_name, "lost+found")) {
599
const bool privateFile = !strcmp(
ftsent
->fts_name, filename);
601
int fd = open(
ftsent
->fts_accpath, O_NOFOLLOW);
603
SLOGE("Couldn't open file %s: %s",
ftsent
->fts_accpath, strerror(errno));
610
if (
ftsent
->fts_info & FTS_D) {
612
} else if (
ftsent
->fts_info & FTS_F)
[
all
...]
Completed in 144 milliseconds