Searched defs:lib_path (Results 1 - 1 of 1) sorted by relevance

/bionic/tests/
H A Ddlext_test.cpp106 const std::string lib_path = std::string(getenv("ANDROID_DATA")) + LIBPATH; local
110 extinfo.library_fd = TEMP_FAILURE_RETRY(open(lib_path.c_str(), O_RDONLY | O_CLOEXEC));
112 handle_ = android_dlopen_ext(lib_path.c_str(), RTLD_NOW, &extinfo);
120 const std::string lib_path = std::string(getenv("ANDROID_DATA")) + LIBZIPPATH; local
124 extinfo.library_fd = TEMP_FAILURE_RETRY(open(lib_path.c_str(), O_RDONLY | O_CLOEXEC));
127 handle_ = android_dlopen_ext(lib_path.c_str(), RTLD_NOW, &extinfo);
136 const std::string lib_path = std::string(getenv("ANDROID_DATA")) + LIBZIPPATH; local
137 // lib_path is relative when $ANDROID_DATA is relative
139 ASSERT_TRUE(realpath(lib_path.c_str(), lib_realpath_buf) == lib_realpath_buf);
144 extinfo.library_fd = TEMP_FAILURE_RETRY(open(lib_path
215 const std::string lib_path = std::string(getenv("ANDROID_DATA")) + LIBZIPPATH; local
229 const std::string lib_path = std::string(getenv("ANDROID_DATA")) + LIBZIPPATH + "!/libdir"; local
[all...]

Completed in 325 milliseconds