/aosp12/system/apex/tests/testdata/sharedlibs/build/ |
H A D | shared_libs_repack.py | 270 libpath = lib_full_path[len(payload_dir):].lstrip('/').split('/') 271 return libpath[0] 303 assert libpath in ('lib', 'lib64') 355 source_lib_paths = [os.path.join('/', libpath, lib) 356 for libpath in ['lib', 'lib64'] 373 libpath = _extract_lib_or_lib64(payload_dir, lib_path_hash[0]) 374 tmp_lib = os.path.join(payload_dir, libpath, basename + '.bak') 381 ['/' + libpath + '/' + basename, '0', '2000', '0755']) 383 ['/' + libpath + '/' + basename + '/' + lib_path_hash[1], 389 libpath, [all …]
|
/aosp12/art/libnativebridge/include/nativebridge/ |
H A D | native_bridge.h | 81 void* NativeBridgeLoadLibrary(const char* libpath, int flag); 91 bool NativeBridgeIsSupported(const char* libpath); 173 void* NativeBridgeLoadLibraryExt(const char* libpath, int flag, 206 void* (*loadLibrary)(const char* libpath, int flag); 228 bool (*isSupported)(const char* libpath); 366 void* (*loadLibraryExt)(const char* libpath, int flag, struct native_bridge_namespace_t* ns);
|
/aosp12/bionic/tests/ |
H A D | dlfcn_test.cpp | 1306 std::string libpath = GetTestlibRoot() + "/libtest_dt_runpath_d.so"; in TEST() local 1307 void* handle = dlopen(libpath.c_str(), RTLD_NOW); in TEST() 1627 void* handle = dlopen(libpath.c_str(), RTLD_NOW); in TEST() 1636 void* handle = dlopen(libpath.c_str(), RTLD_NOW); in TEST() 1645 void* handle = dlopen(libpath.c_str(), RTLD_NOW); in TEST() 1654 void* handle = dlopen(libpath.c_str(), RTLD_NOW); in TEST() 1663 void* handle = dlopen(libpath.c_str(), RTLD_NOW); in TEST() 1672 void* handle = dlopen(libpath.c_str(), RTLD_NOW); in TEST() 1681 void* handle = dlopen(libpath.c_str(), RTLD_NOW); in TEST() 1690 void* handle = dlopen(libpath.c_str(), RTLD_NOW); in TEST() [all …]
|
H A D | elftls_dl_test.cpp | 332 std::string libpath = GetTestlibRoot() + "/libtest_elftls_dynamic.so"; in TEST() local 335 ASSERT_STREQ(libpath.c_str(), dli_realpath); in TEST()
|
/aosp12/system/sepolicy/tests/ |
H A D | sepolicy_tests.py | 135 if not options.libpath: 137 if not os.path.exists(options.libpath): 138 sys.exit("Error: library-path " + options.libpath + " does not exist\n" 154 pol = policy.Policy(options.policy, options.file_contexts, options.libpath)
|
H A D | treble_sepolicy_tests.py | 352 if not options.libpath: 354 if not os.path.exists(options.libpath): 355 sys.exit("Error: library-path " + options.libpath + " does not exist\n" 384 basepol = policy.Policy(options.basepolicy, None, options.libpath) 385 oldpol = policy.Policy(options.oldpolicy, None, options.libpath) 393 pol = policy.Policy(options.policy, options.file_contexts, options.libpath)
|
H A D | searchpolicy.py | 32 if not args.libpath: 38 pol = policy.Policy(args.policy, None, args.libpath)
|
/aosp12/art/test/115-native-bridge/ |
H A D | nativebridge.cc | 441 extern "C" void* native_bridge_loadLibrary(const char* libpath, int flag) { in native_bridge_loadLibrary() argument 442 if (strstr(libpath, "libinvalid.so") != nullptr) { in native_bridge_loadLibrary() 446 size_t len = strlen(libpath); in native_bridge_loadLibrary() 448 strncpy(tmp, libpath, len); in native_bridge_loadLibrary() 459 printf("Was looking for %s.\n", libpath); in native_bridge_loadLibrary() 483 extern "C" bool native_bridge_isSupported(const char* libpath) { in native_bridge_isSupported() argument 486 if (libpath == nullptr) { in native_bridge_isSupported() 490 return strcmp(libpath, "libjavacore.so") != 0; in native_bridge_isSupported() 644 extern "C" void* native_bridge_loadLibraryExt(const char* libpath ATTRIBUTE_UNUSED, in native_bridge_loadLibraryExt()
|
/aosp12/art/libnativebridge/ |
H A D | native_bridge.cc | 563 void* NativeBridgeLoadLibrary(const char* libpath, int flag) { in NativeBridgeLoadLibrary() argument 565 return callbacks->loadLibrary(libpath, flag); in NativeBridgeLoadLibrary() 578 bool NativeBridgeIsSupported(const char* libpath) { in NativeBridgeIsSupported() argument 580 return callbacks->isSupported(libpath); in NativeBridgeIsSupported() 702 void* NativeBridgeLoadLibraryExt(const char* libpath, int flag, native_bridge_namespace_t* ns) { in NativeBridgeLoadLibraryExt() argument 705 return callbacks->loadLibraryExt(libpath, flag, ns); in NativeBridgeLoadLibraryExt()
|
/aosp12/art/libnativeloader/ |
H A D | native_loader_test.h | 173 bool NativeBridgeIsSupported(const char* libpath) { in NativeBridgeIsSupported() argument 174 return mock->NativeBridgeIsSupported(libpath); in NativeBridgeIsSupported() 194 void* NativeBridgeLoadLibraryExt(const char* libpath, int flag, in NativeBridgeLoadLibraryExt() argument 196 return mock->mock_dlopen_ext(true, libpath, flag, TO_MOCK_NAMESPACE(ns)); in NativeBridgeLoadLibraryExt()
|
/aosp12/system/apex/tests/native/ |
H A D | apex_shared_libraries_test.cpp | 122 auto libpath = fs::path(dl_info.dli_fname); in TEST() local 123 if (libpath == dest) { in TEST()
|
/aosp12/build/make/target/board/emulator_arm/ |
H A D | system_ext.prop | 5 rild.libpath=/vendor/lib/libreference-ril.so
|
/aosp12/build/make/target/board/emulator_x86/ |
H A D | system_ext.prop | 5 rild.libpath=/vendor/lib/libreference-ril.so
|
/aosp12/build/make/target/board/emulator_x86_64/ |
H A D | system_ext.prop | 5 rild.libpath=/vendor/lib64/libreference-ril.so
|
/aosp12/build/make/target/board/emulator_x86_64_arm64/ |
H A D | system_ext.prop | 5 rild.libpath=/vendor/lib64/libreference-ril.so
|
/aosp12/build/make/target/board/emulator_x86_arm/ |
H A D | system_ext.prop | 5 rild.libpath=/vendor/lib/libreference-ril.so
|
/aosp12/build/make/target/board/generic/ |
H A D | system_ext.prop | 5 rild.libpath=/vendor/lib/libreference-ril.so
|
/aosp12/build/make/target/board/generic_64bitonly_x86_64/ |
H A D | system.prop | 5 rild.libpath=/vendor/lib64/libreference-ril.so
|
/aosp12/build/make/target/board/generic_x86/ |
H A D | system_ext.prop | 5 rild.libpath=/vendor/lib/libreference-ril.so
|
/aosp12/build/make/target/board/generic_x86_64/ |
H A D | system_ext.prop | 5 rild.libpath=/vendor/lib64/libreference-ril.so
|
/aosp12/build/make/target/board/generic_x86_64_arm64/ |
H A D | system_ext.prop | 5 rild.libpath=/vendor/lib64/libreference-ril.so
|
/aosp12/build/make/target/board/generic_x86_arm/ |
H A D | system_ext.prop | 5 rild.libpath=/vendor/lib/libreference-ril.so
|
/aosp12/build/make/target/board/emulator_arm64/ |
H A D | system_ext.prop | 5 rild.libpath=/vendor/lib64/libreference-ril.so
|
/aosp12/build/make/target/board/generic_arm64/ |
H A D | system_ext.prop | 5 rild.libpath=/vendor/lib64/libreference-ril.so
|
/aosp12/system/bt/ |
H A D | build.py | 189 libpath = self.env['LIBRARY_PATH'] 190 self.env['LIBRARY_PATH'] = '{}:{}'.format(libdir, libpath)
|