Home
last modified time | relevance | path

Searched refs:file_path (Results 1 – 8 of 8) sorted by relevance

/art/dexlist/
Ddexlist_test.cc45 std::string file_path = GetTestAndroidRoot(); in Exec() local
47 file_path += "/bin/dexlist"; in Exec()
49 file_path += "/xbin/dexlist"; in Exec()
51 EXPECT_TRUE(OS::FileExists(file_path.c_str())) << file_path << " should be a valid file path"; in Exec()
52 std::vector<std::string> exec_argv = { file_path }; in Exec()
/art/dexdump/
Ddexdump_test.cc46 std::string file_path = GetTestAndroidRoot() + "/bin/dexdump2"; in Exec() local
47 EXPECT_TRUE(OS::FileExists(file_path.c_str())) << file_path << " should be a valid file path"; in Exec()
48 std::vector<std::string> exec_argv = { file_path }; in Exec()
/art/imgdiag/
Dimgdiag_test.cc90 std::string file_path = GetImgDiagFilePath(); in Exec() local
91 EXPECT_TRUE(OS::FileExists(file_path.c_str())) << file_path << " should be a valid file path"; in Exec()
109 file_path, in Exec()
/art/oatdump/
Doatdump_test.cc62 std::string file_path = GetOatDumpFilePath(); in Exec() local
64 EXPECT_TRUE(OS::FileExists(file_path.c_str())) << file_path << " should be a valid file path"; in Exec()
66 std::vector<std::string> exec_argv = { file_path }; in Exec()
/art/profman/
Dprofile_assistant_test.cc66 std::string file_path = GetTestAndroidRoot(); in ProcessProfiles() local
67 file_path += "/bin/profman"; in ProcessProfiles()
69 file_path += "d"; in ProcessProfiles()
72 EXPECT_TRUE(OS::FileExists(file_path.c_str())) << file_path << " should be a valid file path"; in ProcessProfiles()
74 argv_str.push_back(file_path); in ProcessProfiles()
/art/runtime/base/unix_file/
Dfd_file.h50 bool Open(const std::string& file_path, int flags);
51 bool Open(const std::string& file_path, int flags, mode_t mode);
/art/runtime/
Doat_file.cc111 const std::string& file_path,
169 const std::string& file_path, in ComputeFields() argument
175 file_path.c_str(), in ComputeFields()
192 file_path.c_str(), in ComputeFields()
206 *error_msg = StringPrintf("Failed to find oatbasslastword symbol in '%s'", file_path.c_str()); in ComputeFields()
/art/patchoat/
Dpatchoat.cc404 const std::string& file_path = oat_in->GetFile().GetPath(); in IsOatPic() local
408 LOG(ERROR) << "Failed to find oat header in oat file " << file_path; in IsOatPic()
413 LOG(ERROR) << "Elf file " << file_path << " has an invalid oat header"; in IsOatPic()
419 LOG(INFO) << "Oat file at " << file_path << " is " << (is_pic ? "PIC" : "not pic"); in IsOatPic()