/art/runtime/mirror/ |
D | stack_trace_element.cc | 45 Handle<String> file_name, in Alloc() argument 51 trace->Init<true>(declaring_class.Get(), method_name.Get(), file_name.Get(), line_number); in Alloc() 53 trace->Init<false>(declaring_class.Get(), method_name.Get(), file_name.Get(), line_number); in Alloc() 62 ObjPtr<String> file_name, in Init() argument 69 file_name); in Init()
|
D | stack_trace_element.h | 53 Handle<String> file_name, 76 ObjPtr<String> file_name,
|
D | throwable.cc | 137 auto* file_name = ste->GetFileName(); in Dump() local 141 file_name != nullptr ? file_name->ToModifiedUtf8().c_str() : "(Unknown Source)", in Dump()
|
/art/runtime/gc/space/ |
D | image_space_fs.h | 113 const char* file_name = boot_marker.c_str(); in MarkZygoteStart() local 116 std::unique_ptr<File> file(OS::OpenFileReadWrite(file_name)); in MarkZygoteStart() 118 file.reset(OS::CreateEmptyFile(file_name)); in MarkZygoteStart() 131 file.reset(OS::OpenFileReadWrite(file_name)); in MarkZygoteStart()
|
/art/compiler/debug/ |
D | elf_debug_line_writer.h | 179 std::string file_name(source_file); in WriteCompilationUnit() 180 size_t file_name_slash = file_name.find_last_of('/'); in WriteCompilationUnit() 183 std::string full_path(file_name); in WriteCompilationUnit() 199 full_path = package_name + "/" + file_name; in WriteCompilationUnit() 208 file_name, in WriteCompilationUnit()
|
/art/compiler/driver/ |
D | compiler_options.cc | 137 std::string file_name = option.substr(strlen("--dump-init-failures=")).data(); in ParseDumpInitFailures() local 138 init_failure_output_.reset(new std::ofstream(file_name)); in ParseDumpInitFailures() 142 LOG(ERROR) << "Failed to open " << file_name << " for writing the initialization " in ParseDumpInitFailures()
|
/art/dexlayout/ |
D | dexlayout.h | 78 int ProcessFile(const char* file_name); 79 void ProcessDexFile(const char* file_name, const DexFile* dex_file, size_t dex_file_index);
|
D | dexlayout.cc | 1455 const char* file_name = "unknown"; in DumpClass() local 1457 file_name = class_def->SourceFile()->Data(); in DumpClass() 1461 source_file == nullptr ? 0xffffffffU : source_file->GetIndex(), file_name); in DumpClass() 1921 void DexLayout::ProcessDexFile(const char* file_name, in ProcessDexFile() argument 1929 file_name, dex_file->GetHeader().magic_ + 4); in ProcessDexFile() 1959 int DexLayout::ProcessFile(const char* file_name) { in ProcessFile() argument 1961 fprintf(out_file_, "Processing '%s'...\n", file_name); in ProcessFile() 1969 if (!DexFile::Open(file_name, file_name, verify_checksum, &error_msg, &dex_files)) { in ProcessFile() 1983 ProcessDexFile(file_name, dex_files[i].get(), i); in ProcessFile()
|
/art/cmdline/ |
D | cmdline.h | 267 std::string file_name; in ParseCheckBootImage() local 268 if (!LocationToFilename(boot_image_location, instruction_set_, &file_name)) { in ParseCheckBootImage() 274 DBG_LOG << "boot_image_filename does exist: " << file_name; in ParseCheckBootImage()
|
/art/compiler/debug/dwarf/ |
D | headers.h | 151 std::string file_name; member 188 writer.PushData(file.file_name.data(), file.file_name.size() + 1); in WriteDebugLineTable()
|
/art/runtime/ |
D | utils.cc | 77 bool ReadFileToString(const std::string& file_name, std::string* result) { in ReadFileToString() argument 78 File file(file_name, O_RDONLY, false); in ReadFileToString() 96 bool PrintFileToLog(const std::string& file_name, LogSeverity level) { in PrintFileToLog() argument 97 File file(file_name, O_RDONLY, false); in PrintFileToLog()
|
D | utils.h | 124 bool ReadFileToString(const std::string& file_name, std::string* result); 125 bool PrintFileToLog(const std::string& file_name, LogSeverity level);
|
D | native_stack_dump.cc | 75 Addr2linePipe(int in_fd, int out_fd, const std::string& file_name, pid_t pid) in Addr2linePipe() 76 : 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/imgdiag/ |
D | imgdiag.cc | 295 std::string file_name = in DumpImageDiffMap() local 301 auto map_file = std::unique_ptr<File>(OS::OpenFileForReading(file_name.c_str())); in DumpImageDiffMap() 303 os << "Failed to open " << file_name << " for reading"; in DumpImageDiffMap() 344 os << "Could not fully read file " << file_name; in DumpImageDiffMap()
|
/art/tools/jfuzz/ |
D | run_jfuzz_test.py | 574 for file_name in os.listdir(self._jfuzz_dir): 575 file_path = os.path.join(self._jfuzz_dir, file_name)
|