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

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

Completed in 113 milliseconds