Home
last modified time | relevance | path

Searched refs:fileStat (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/tools/aapt/
H A DFileFinder.cpp24 struct stat fileStat; in isDirectory() local
25 if (stat(filename, &fileStat) == -1) { in isDirectory()
28 return(S_ISDIR(fileStat.st_mode)); in isDirectory()
34 struct stat fileStat; in isFile() local
35 if (stat(filename, &fileStat) == -1) { in isFile()
38 return(S_ISREG(fileStat.st_mode)); in isFile()
/aosp14/system/core/libmodprobe/
H A Dlibmodprobe_ext.cpp87 struct stat fileStat; in ModuleExists() local
97 if (stat(deps.front().c_str(), &fileStat)) { in ModuleExists()
101 if (!S_ISREG(fileStat.st_mode)) { in ModuleExists()
/aosp14/system/core/init/
H A Dfirst_stage_init.cpp155 struct stat fileStat; in GetModuleLoadList() local
157 if (!stat(recovery_load_path.c_str(), &fileStat)) { in GetModuleLoadList()
/aosp14/frameworks/base/cmds/incidentd/src/
H A DSection.cpp754 struct stat fileStat; in BlockingCall() local
755 if (stat(link_name, &fileStat) != OK) { in BlockingCall()