Home
last modified time | relevance | path

Searched refs:file_name (Results 1 – 16 of 16) sorted by relevance

/art/runtime/mirror/
Dstack_trace_element.cc45 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()
Dstack_trace_element.h53 Handle<String> file_name,
76 ObjPtr<String> file_name,
Dthrowable.cc137 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/
Dimage_space_fs.h113 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/
Delf_debug_line_writer.h179 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/
Dcompiler_options.cc137 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/
Ddexlayout.h78 int ProcessFile(const char* file_name);
79 void ProcessDexFile(const char* file_name, const DexFile* dex_file, size_t dex_file_index);
Ddexlayout.cc1455 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/
Dcmdline.h267 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/
Dheaders.h151 std::string file_name; member
188 writer.PushData(file.file_name.data(), file.file_name.size() + 1); in WriteDebugLineTable()
/art/runtime/
Dutils.cc77 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()
Dutils.h124 bool ReadFileToString(const std::string& file_name, std::string* result);
125 bool PrintFileToLog(const std::string& file_name, LogSeverity level);
Dnative_stack_dump.cc75 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/
Dassembler_test_base.h355 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/
Dimgdiag.cc295 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/
Drun_jfuzz_test.py574 for file_name in os.listdir(self._jfuzz_dir):
575 file_path = os.path.join(self._jfuzz_dir, file_name)