Home
last modified time | relevance | path

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

/art/runtime/mirror/
Dstack_trace_element.cc43 Handle<String> method_name, Handle<String> file_name, in Alloc() argument
49 trace->Init<true>(declaring_class, method_name, file_name, line_number); in Alloc()
51 trace->Init<false>(declaring_class, method_name, file_name, line_number); in Alloc()
59 Handle<String> file_name, int32_t line_number) { in Init() argument
65 file_name.Get()); in Init()
Dstack_trace_element.h51 Handle<String> method_name, Handle<String> file_name,
72 void Init(Handle<String> declaring_class, Handle<String> method_name, Handle<String> file_name,
Dthrowable.cc132 auto* file_name = ste->GetFileName(); in Dump() local
136 file_name != nullptr ? file_name->ToModifiedUtf8().c_str() : "(Unknown Source)", in Dump()
/art/cmdline/
Dcmdline.h263 std::string file_name; in ParseCheckBootImage() local
264 if (!LocationToFilename(boot_image_location, instruction_set_, &file_name)) { in ParseCheckBootImage()
266 file_name.c_str()); in ParseCheckBootImage()
270 DBG_LOG << "boot_image_filename does exist: " << file_name; in ParseCheckBootImage()
/art/compiler/dwarf/
Dheaders.h131 std::string file_name; member
168 writer.PushData(file.file_name.data(), file.file_name.size() + 1); in WriteDebugLineTable()
/art/compiler/
Delf_writer_debug.cc360 std::string file_name(source_file); in WriteDebugSections() local
361 size_t file_name_slash = file_name.find_last_of('/'); in WriteDebugSections()
364 std::string full_path(file_name); in WriteDebugSections()
380 full_path = package_name + "/" + file_name; in WriteDebugSections()
389 file_name, in WriteDebugSections()
/art/compiler/utils/
Dassembler_test_base.h337 std::string file_name = GetTmpnam() + std::string("---") + test_name; in WriteToFile() local
339 std::ofstream s_out(file_name + ".o"); in WriteToFile()
342 return file_name + ".o"; in WriteToFile()
/art/runtime/
Dutils.h190 bool ReadFileToString(const std::string& file_name, std::string* result);
191 bool PrintFileToLog(const std::string& file_name, LogSeverity level);
Dutils.cc134 bool ReadFileToString(const std::string& file_name, std::string* result) { in ReadFileToString() argument
136 if (!file.Open(file_name, O_RDONLY)) { in ReadFileToString()
153 bool PrintFileToLog(const std::string& file_name, LogSeverity level) { in PrintFileToLog() argument
155 if (!file.Open(file_name, O_RDONLY)) { in PrintFileToLog()
/art/imgdiag/
Dimgdiag.cc148 std::string file_name = in DumpImageDiffMap() local
154 auto map_file = std::unique_ptr<File>(OS::OpenFileForReading(file_name.c_str())); in DumpImageDiffMap()
156 os << "Failed to open " << file_name << " for reading"; in DumpImageDiffMap()
197 os << "Could not fully read file " << file_name; in DumpImageDiffMap()
/art/runtime/gc/space/
Dimage_space.cc131 const char* file_name = boot_marker.c_str(); in MarkZygoteStart() local
134 std::unique_ptr<File> file(OS::OpenFileReadWrite(file_name)); in MarkZygoteStart()
136 file.reset(OS::CreateEmptyFile(file_name)); in MarkZygoteStart()
/art/dex2oat/
Ddex2oat.cc818 std::string file_name = option.substr(strlen("--dump-init-failures=")).data(); in ParseArgs() local
819 init_failure_output_.reset(new std::ofstream(file_name)); in ParseArgs()
823 LOG(ERROR) << "Failed to open " << file_name << " for writing the initialization " in ParseArgs()