Home
last modified time | relevance | path

Searched refs:stat (Results 1 – 12 of 12) sorted by relevance

/art/runtime/
Dos_linux.cc52 struct stat st; in FileExists()
53 if (stat(name, &st) == 0) { in FileExists()
61 struct stat st; in DirectoryExists()
62 if (stat(name, &st) == 0) { in DirectoryExists()
Dprebuilt_tools_test.cc34 struct stat exec_st; in CheckToolsExist()
36 if (stat(exec_path.c_str(), &exec_st) != 0) { in CheckToolsExist()
Dprofiler.cc797 struct stat st; in LoadFile()
798 int err = stat(fileName.c_str(), &st); in LoadFile()
Dcommon_runtime_test.cc367 struct stat s; in ClearDirectory()
Doat_file_assistant.cc569 struct stat stat_src; in CopyProfileFile()
Ddex_file.cc217 struct stat sbuf; in OpenFile()
/art/compiler/optimizing/
Doptimizing_compiler_stats.h63 void RecordStat(MethodCompilationStat stat, size_t count = 1) {
64 compile_stats_[stat] += count;
95 std::string PrintMethodCompilationStat(int stat) const { in PrintMethodCompilationStat() argument
96 switch (stat) { in PrintMethodCompilationStat()
/art/runtime/base/
Dscoped_flock.cc43 struct stat fstat_stat; in Init()
49 struct stat stat_stat; in Init()
50 int stat_result = TEMP_FAILURE_RETRY(stat(filename, &stat_stat)); in Init()
/art/test/115-native-bridge/
Dnativebridge.cc260 struct stat st; in native_bridge_initialize()
262 && (stat(app_code_cache_dir, &st) == 0) in native_bridge_initialize()
/art/compiler/utils/
Dassembler_test_base.h448 struct stat buf; in FileExists()
449 return stat(copy.c_str(), &buf) == 0; in FileExists()
/art/runtime/base/unix_file/
Dfd_file.cc158 struct stat s; in GetLength()
/art/imgdiag/
Dimgdiag.cc99 struct stat sts; in DumpImageDiff()
102 if (stat(proc_pid_str.c_str(), &sts) == -1) { in DumpImageDiff()