Home
last modified time | relevance | path

Searched refs:stat_buffer (Results 1 – 2 of 2) sorted by relevance

/art/runtime/jit/
Dprofile_saver.cc244 struct stat stat_buffer; in IsProfileEmpty() local
245 if (stat(location.c_str(), &stat_buffer) != 0) { in IsProfileEmpty()
252 VLOG(profiler) << "Profile " << location << " size=" << stat_buffer.st_size; in IsProfileEmpty()
253 return stat_buffer.st_size == 0; in IsProfileEmpty()
/art/libprofile/profile/
Dprofile_compilation_info.cc1456 struct stat stat_buffer; in HasEmptyContent() local
1457 if (fstat(fd_, &stat_buffer) != 0) { in HasEmptyContent()
1460 return stat_buffer.st_size == 0; in HasEmptyContent()
2363 struct stat stat_buffer; in IsProfileFile() local
2364 if (fstat(fd, &stat_buffer) != 0) { in IsProfileFile()
2368 if (stat_buffer.st_size == 0) { in IsProfileFile()