Home
last modified time | relevance | path

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

/ndk/sources/android/crazy_linker/src/
Dcrazy_linker_line_reader.h31 void Open(const char* file_path);
Dcrazy_linker_api.cpp99 const char* file_path) { in crazy_context_add_search_path() argument
100 context->search_paths.AddPaths(file_path); in crazy_context_add_search_path()
/ndk/sources/third_party/googletest/googletest/test/
Dgtest-filepath_test.cc564 FilePath file_path(FilePath::GenerateUniqueFileName(testdata_path_, in TEST_F() local
566 EXPECT_EQ(unique_file0_.string(), file_path.string()); in TEST_F()
567 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file not there in TEST_F()
570 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file still not there in TEST_F()
571 CreateTextFile(file_path.c_str()); in TEST_F()
572 EXPECT_TRUE(file_path.FileOrDirectoryExists()); in TEST_F()
/ndk/sources/android/crazy_linker/tests/
Dtest_util.h153 String file_path; in ~TempDirectory() local
154 file_path.Format("%s/%s", path_, entry->d_name); in ~TempDirectory()
155 if (unlink(file_path.c_str()) < 0) in ~TempDirectory()
156 Panic("Could not remove %s: %s\n", file_path.c_str(), strerror(errno)); in ~TempDirectory()
/ndk/sources/host-tools/ndk-depends/
Dndk-depends.cc960 String file_path = search_paths[n]; in FindLibraryPath() local
961 if (file_path.empty()) in FindLibraryPath()
963 if (file_path[file_path.size() - 1] != _T('/') && in FindLibraryPath()
964 file_path[file_path.size() - 1] != _T('\\')) { in FindLibraryPath()
965 file_path.append(_T("/")); in FindLibraryPath()
967 file_path.append(libname); in FindLibraryPath()
969 LOG2(_T(" in %s: "), file_path.c_str()); in FindLibraryPath()
971 if (_tstat(file_path.c_str(), &st) < 0) { in FindLibraryPath()
981 result->assign(file_path); in FindLibraryPath()
/ndk/sources/android/crazy_linker/include/
Dcrazy_linker.h99 const char* file_path) _CRAZY_PUBLIC;