Searched defs:st (Results 1 - 4 of 4) sorted by relevance

/art/runtime/
H A Dos_linux.cc64 struct stat st; local
65 if (stat(name, &st) == 0) {
66 return S_ISREG(st.st_mode); // TODO: Deal with symlinks?
73 struct stat st; local
74 if (stat(name, &st) == 0) {
75 return S_ISDIR(st.st_mode); // TODO: Deal with symlinks?
H A Dprofiler.cc806 struct stat st; local
807 int err = stat(fileName.c_str(), &st);
812 if (st.st_size == 0) {
818 LOG(VERBOSE) << "file owner: " << st.st_uid << ":" << st.st_gid;
820 LOG(VERBOSE) << "file permissions: " << std::oct << st.st_mode;
/art/test/115-native-bridge/
H A Dnativebridge.cc269 struct stat st; local
271 if (stat(app_code_cache_dir, &st) == 0) {
272 if (!S_ISDIR(st.st_mode)) {
/art/dexdump/
H A Ddexdump.cc552 const char* st = pDexFile->StringDataByIdx(index); local
553 outSize = snprintf(buf, bufSize, "\"%s\" // string@%0*x", st, width, index);

Completed in 131 milliseconds