Home
last modified time | relevance | path

Searched refs:st (Results 1 – 6 of 6) sorted by relevance

/art/runtime/
Dos_linux.cc52 struct stat st; in FileExists() local
53 if (stat(name, &st) == 0) { in FileExists()
54 return S_ISREG(st.st_mode); // TODO: Deal with symlinks? in FileExists()
61 struct stat st; in DirectoryExists() local
62 if (stat(name, &st) == 0) { in DirectoryExists()
63 return S_ISDIR(st.st_mode); // TODO: Deal with symlinks? in DirectoryExists()
Dprofiler.cc797 struct stat st; in LoadFile() local
798 int err = stat(fileName.c_str(), &st); in LoadFile()
803 if (st.st_size == 0) { in LoadFile()
809 LOG(VERBOSE) << "file owner: " << st.st_uid << ":" << st.st_gid; in LoadFile()
811 LOG(VERBOSE) << "file permissions: " << std::oct << st.st_mode; in LoadFile()
/art/test/StackWalk2/
DStackWalk2.java58 StackWalk2 st = new StackWalk2(); in main() local
59 st.f(); in main()
/art/test/004-StackWalk/
Dexpected.txt1 1st call
/art/test/004-StackWalk/src/
DMain.java90 Main st = new Main(); in main() local
91 st.f(); in main()
/art/test/115-native-bridge/
Dnativebridge.cc260 struct stat st; in native_bridge_initialize() local
262 && (stat(app_code_cache_dir, &st) == 0) in native_bridge_initialize()
263 && S_ISDIR(st.st_mode)) { in native_bridge_initialize()