Home
last modified time | relevance | path

Searched refs:full_path (Results 1 – 4 of 4) sorted by relevance

/ndk/sources/android/crazy_linker/src/
Dcrazy_linker_library_list.cpp281 String full_path; in LoadLibrary() local
290 full_path = path; in LoadLibrary()
294 full_path = GetCurrentDirectory(); in LoadLibrary()
295 if (full_path.size() && full_path[full_path.size() - 1] != '/') in LoadLibrary()
296 full_path += '/'; in LoadLibrary()
297 full_path += lib_name; in LoadLibrary()
300 full_path = lib_name; in LoadLibrary()
302 LOG("%s: Full library path: %s\n", __FUNCTION__, full_path.c_str()); in LoadLibrary()
303 if (!PathIsFile(full_path.c_str())) { in LoadLibrary()
304 error->Format("Library file doesn't exist: %s", full_path.c_str()); in LoadLibrary()
[all …]
Dcrazy_linker_shared_library.cpp161 bool SharedLibrary::Load(const char* full_path, in Load() argument
166 LOG("%s: full path '%s'\n", __FUNCTION__, full_path); in Load()
168 size_t full_path_len = strlen(full_path); in Load()
170 error->Format("Path too long: %s", full_path); in Load()
174 strlcpy(full_path_, full_path, sizeof(full_path_)); in Load()
Dcrazy_linker_shared_library.h53 bool Load(const char* full_path,
/ndk/tests/abcc/jni/device/
DAbcc_device.cpp110 std::string full_path = mWorkingDir + "/" + filename; in getBitcodeFiles() local
118 lib_files.push_back(full_path); in getBitcodeFiles()
122 int fd = open(full_path.c_str(), O_RDONLY); in getBitcodeFiles()
124 LOGV("Error opening file: %s (Ignored)", full_path.c_str()); in getBitcodeFiles()
134 LOGV("Found file %s magic: %x, but we need a wrapped bitcode.", full_path.c_str(), magic); in getBitcodeFiles()
138 LOGV("Push_back a bitcode: %s", full_path.c_str()); in getBitcodeFiles()
139 bc_files.push_back(full_path); in getBitcodeFiles()