Home
last modified time | relevance | path

Searched refs:test_lib (Results 1 – 2 of 2) sorted by relevance

/system/unwinding/libunwindstack/tests/
DAndroidUnwinderTest.cpp395 void* test_lib = GetTestLibHandle(); in TEST_F() local
396 ASSERT_TRUE(test_lib != nullptr); in TEST_F()
397 void (*wait_func)() = reinterpret_cast<void (*)()>(dlsym(test_lib, "WaitForever")); in TEST_F()
/system/core/debuggerd/
Ddebuggerd_test.cpp2393 std::string test_lib(testing::internal::GetArgvs()[0]); in GetTestLibraryPath() local
2394 auto const value = test_lib.find_last_of('/'); in GetTestLibraryPath()
2396 test_lib = "./"; in GetTestLibraryPath()
2398 test_lib = test_lib.substr(0, value + 1) + "./"; in GetTestLibraryPath()
2400 return test_lib + "libcrash_test.so"; in GetTestLibraryPath()
2404 std::string test_lib(GetTestLibraryPath()); in CreateEmbeddedLibrary() local
2405 android::base::unique_fd fd(open(test_lib.c_str(), O_RDONLY | O_CLOEXEC)); in CreateEmbeddedLibrary()
2455 std::string test_lib(GetTestLibraryPath()); in CopySharedLibrary() local
2458 std::string cp_cmd = android::base::StringPrintf("cp %s %s", test_lib.c_str(), tmp_dir); in CopySharedLibrary()