/art/runtime/mirror/ |
D | stack_trace_element.cc | 33 Handle<String> file_name, in Alloc() argument 39 trace->Init<true>(declaring_class.Get(), method_name.Get(), file_name.Get(), line_number); in Alloc() 41 trace->Init<false>(declaring_class.Get(), method_name.Get(), file_name.Get(), line_number); in Alloc() 50 ObjPtr<String> file_name, in Init() argument 57 file_name); in Init()
|
D | stack_trace_element.h | 45 Handle<String> file_name, 59 ObjPtr<String> file_name,
|
D | throwable.cc | 142 ObjPtr<String> file_name = ste->GetFileName(); in Dump() local 146 file_name != nullptr ? file_name->ToModifiedUtf8().c_str() : "(Unknown Source)", in Dump()
|
/art/runtime/gc/space/ |
D | image_space_fs.h | 115 const char* file_name = boot_marker.c_str(); in MarkZygoteStart() local 118 std::unique_ptr<File> file(OS::OpenFileReadWrite(file_name)); in MarkZygoteStart() 120 file.reset(OS::CreateEmptyFile(file_name)); in MarkZygoteStart() 133 file.reset(OS::OpenFileReadWrite(file_name)); in MarkZygoteStart()
|
/art/compiler/debug/ |
D | elf_debug_line_writer.h | 177 std::string file_name(source_file); in WriteCompilationUnit() 178 size_t file_name_slash = file_name.find_last_of('/'); in WriteCompilationUnit() 181 std::string full_path(file_name); in WriteCompilationUnit() 197 full_path = package_name + "/" + file_name; in WriteCompilationUnit() 206 file_name, in WriteCompilationUnit()
|
/art/libelffile/dwarf/ |
D | headers.h | 113 std::string file_name; member 148 writer.PushData(file.file_name.data(), file.file_name.size() + 1); in WriteDebugLineTable()
|
/art/cmdline/ |
D | cmdline.h | 300 std::string file_name; in ParseCheckBootImage() local 301 if (!LocationToFilename(boot_image_location, instruction_set_, &file_name)) { in ParseCheckBootImage() 305 file_name.c_str()); in ParseCheckBootImage() 309 DBG_LOG << "boot_image_filename does exist: " << file_name; in ParseCheckBootImage()
|
/art/libartbase/base/ |
D | logging.h | 99 bool PrintFileToLog(const std::string& file_name, android::base::LogSeverity level);
|
D | logging.cc | 145 bool PrintFileToLog(const std::string& file_name, android::base::LogSeverity level) { in PrintFileToLog() argument 146 File file(file_name, O_RDONLY, false); in PrintFileToLog()
|
D | file_utils.h | 30 bool ReadFileToString(const std::string& file_name, std::string* result);
|
D | file_utils.cc | 78 bool ReadFileToString(const std::string& file_name, std::string* result) { in ReadFileToString() argument 79 File file(file_name, O_RDONLY, false); in ReadFileToString()
|
/art/dexlayout/ |
D | dexlayout.h | 114 int ProcessFile(const char* file_name); 115 bool ProcessDexFile(const char* file_name,
|
D | dexlayout.cc | 1525 const char* file_name = "unknown"; in DumpClass() local 1527 file_name = class_def->SourceFile()->Data(); in DumpClass() 1531 source_file == nullptr ? 0xffffffffU : source_file->GetIndex(), file_name); in DumpClass() 1874 bool DexLayout::ProcessDexFile(const char* file_name, in ProcessDexFile() argument 1896 file_name, dex_file->GetHeader().magic_ + 4); in ProcessDexFile() 1938 std::string location = "memory mapped file for " + std::string(file_name); in ProcessDexFile() 1982 int DexLayout::ProcessFile(const char* file_name) { in ProcessFile() argument 1984 fprintf(out_file_, "Processing '%s'...\n", file_name); in ProcessFile() 1994 file_name, file_name, /* verify= */ true, verify_checksum, &error_msg, &dex_files)) { in ProcessFile() 2008 if (!ProcessDexFile(file_name, in ProcessFile() [all …]
|
/art/runtime/ |
D | native_stack_dump.cc | 96 Addr2linePipe(int in_fd, int out_fd, const std::string& file_name, pid_t pid) in Addr2linePipe() 97 : in(in_fd, false), out(out_fd, false), file(file_name), child_pid(pid), odd(true) {} in Addr2linePipe()
|
/art/compiler/utils/ |
D | assembler_test_base.h | 355 std::string file_name = GetTmpnam() + std::string("---") + test_name; in WriteToFile() local 357 std::ofstream s_out(file_name + ".o"); in WriteToFile() 360 return file_name + ".o"; in WriteToFile()
|
/art/tools/jfuzz/ |
D | run_jfuzz_test.py | 603 for file_name in os.listdir(self._jfuzz_dir): 604 file_path = os.path.join(self._jfuzz_dir, file_name)
|
/art/tools/timeout_dumper/ |
D | timeout_dumper.cc | 136 Addr2linePipe(int in_fd, int out_fd, const std::string& file_name, pid_t pid) in Addr2linePipe() 137 : in(in_fd), out(out_fd), file(file_name), child_pid(pid), odd(true) {} in Addr2linePipe()
|
/art/openjdkjvmti/ |
D | ti_class.cc | 1092 const char* file_name = klass->GetSourceFile(); in GetSourceFileName() local 1093 if (file_name == nullptr) { in GetSourceFileName() 1097 source_copy = CopyString(env, file_name, &ret); in GetSourceFileName()
|
/art/imgdiag/ |
D | imgdiag.cc | 1157 auto open_file = [&os] (const char* file_name, /*out*/ std::unique_ptr<File>* file) { in Init() argument 1158 file->reset(OS::OpenFileForReading(file_name)); in Init() 1160 os << "Failed to open " << file_name << " for reading"; in Init()
|