OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fileStat
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/tools/aapt/
FileFinder.cpp
24
struct stat
fileStat
;
25
if (stat(filename, &
fileStat
) == -1) {
28
return(S_ISDIR(
fileStat
.st_mode));
34
struct stat
fileStat
;
35
if (stat(filename, &
fileStat
) == -1) {
38
return(S_ISREG(
fileStat
.st_mode));
/external/chromium_org/third_party/WebKit/Tools/Scripts/
svn-create-patch
188
my $
fileStat
= substr($stat, 0, 1);
190
if ($
fileStat
eq "A" || $
fileStat
eq "R") {
194
return "modification" if ($
fileStat
eq "M" || $propertyStat eq "M");
195
return "deletion" if ($
fileStat
eq "D");
/dalvik/vm/analysis/
DexPrepare.cpp
133
struct stat fdStat,
fileStat
;
195
cc = stat(cacheFileName, &
fileStat
);
197
fdStat.st_dev !=
fileStat
.st_dev || fdStat.st_ino !=
fileStat
.st_ino)
[
all
...]
Completed in 48 milliseconds