/art/libartbase/base/ |
D | os_linux.cc | 74 struct stat st; in FileExists() 75 if (stat(name, &st) == 0) { in FileExists() 87 struct stat st; in DirectoryExists() 88 if (stat(name, &st) == 0) { in DirectoryExists() 96 struct stat st; in GetFileSizeBytes() 97 if (stat(name, &st) == 0) { in GetFileSizeBytes()
|
D | scoped_flock.cc | 68 struct stat fstat_stat; in Open() 74 struct stat stat_stat; in Open() 75 int stat_result = TEMP_FAILURE_RETRY(stat(filename, &stat_stat)); in Open()
|
D | common_art_test.cc | 68 nftw(path_.c_str(), [](const char* name, const struct stat*, int type, struct FTW *) { in ~ScratchDir() argument 356 struct stat s; in ClearDirectory()
|
/art/compiler/optimizing/ |
D | optimizing_compiler_stats.h | 118 void RecordStat(MethodCompilationStat stat, uint32_t count = 1) { 119 size_t stat_index = static_cast<size_t>(stat); 124 uint32_t GetStat(MethodCompilationStat stat) const { in GetStat() argument 125 size_t stat_index = static_cast<size_t>(stat); in GetStat() 170 for (std::atomic<uint32_t>& stat : compile_stats_) { in Reset() 171 stat = 0u; in Reset() 182 MethodCompilationStat stat, 185 compiler_stats->RecordStat(stat, count);
|
D | inliner.cc | 81 #define LOG_FAIL(stats_ptr, stat) MaybeRecordStat(stats_ptr, stat); LOG_INTERNAL("Fail: ") argument
|
/art/libnativebridge/tests/ |
D | CodeCacheCreate_test.cpp | 29 struct stat st; in TEST_F() 30 ASSERT_EQ(-1, stat(kCodeCache, &st)); in TEST_F() 41 ASSERT_EQ(0, stat(kCodeCache, &st)); in TEST_F()
|
D | CodeCacheExists_test.cpp | 29 struct stat st; in TEST_F() 30 ASSERT_EQ(-1, stat(kCodeCache, &st)); in TEST_F() 44 ASSERT_EQ(0, stat(kCodeCache, &st)); in TEST_F()
|
D | CodeCacheStatFail_test.cpp | 33 struct stat st; in TEST_F() 34 ASSERT_EQ(-1, stat(kCodeCacheStatFail, &st)); in TEST_F()
|
/art/runtime/ |
D | prebuilt_tools_test.cc | 34 struct stat exec_st; in CheckToolsExist() 36 if (stat(exec_path.c_str(), &exec_st) != 0) { in CheckToolsExist()
|
D | oat_file_manager.cc | 883 struct stat s; in UnlinkLeastRecentlyUsedVdexIfNeeded() 884 int rc = TEMP_FAILURE_RETRY(stat(fullname.c_str(), &s)); in UnlinkLeastRecentlyUsedVdexIfNeeded()
|
D | oat_file_assistant.cc | 754 struct stat s; in Status()
|
D | oat_file.cc | 308 struct stat s; in LoadVdex()
|
/art/libnativebridge/ |
D | native_bridge.cc | 431 struct stat st; in InitializeNativeBridge() 432 if (stat(app_code_cache_dir, &st) == -1) { in InitializeNativeBridge()
|
/art/libnativeloader/ |
D | public_libraries.cpp | 204 struct stat s; in InitDefaultPublicLibraries() 207 if (stat(path.c_str(), &s) != 0) { in InitDefaultPublicLibraries()
|
/art/libartbase/base/unix_file/ |
D | fd_file.cc | 383 struct stat s; in GetLength() 528 struct stat this_stat, current_stat; in Unlink()
|
/art/compiler/utils/ |
D | assembler_test_base.h | 468 struct stat buf; in FileExists() 469 return stat(copy.c_str(), &buf) == 0; in FileExists()
|
/art/test/115-native-bridge/ |
D | nativebridge.cc | 423 struct stat st; in native_bridge_initialize() 425 if (stat(app_code_cache_dir, &st) == 0) { in native_bridge_initialize()
|
/art/libdexfile/external/ |
D | dex_file_ext.cc | 212 struct stat sbuf; in ExtDexFileOpenFromFd()
|
/art/dex2oat/linker/ |
D | oat_writer.h | 347 bool WriteUpTo16BytesAlignment(OutputStream* out, uint32_t size, uint32_t* stat);
|
D | oat_writer.cc | 4016 bool OatWriter::WriteUpTo16BytesAlignment(OutputStream* out, uint32_t size, uint32_t* stat) { in WriteUpTo16BytesAlignment() argument 4024 *stat += size; in WriteUpTo16BytesAlignment()
|
/art/libdexfile/dex/ |
D | art_dex_file_loader.cc | 321 struct stat sbuf; in OpenFile()
|
/art/imgdiag/ |
D | imgdiag.cc | 1145 struct stat sts; in Init() 1148 if (stat(proc_pid_str.c_str(), &sts) == -1) { in Init()
|
/art/libprofile/profile/ |
D | profile_compilation_info.cc | 1282 struct stat stat_buffer; in HasEmptyContent() 2146 struct stat stat_buffer; in IsProfileFile()
|
/art/dex2oat/ |
D | dex2oat.cc | 1510 struct stat s; in OpenFile()
|