Searched refs:dlopen (Results 1 – 25 of 26) sorted by relevance
12
/art/libartbase/base/ |
D | globals_unix.cc | 46 bool debug_build_loaded = (dlopen(kLibArtBaseDebug, RTLD_NOW | RTLD_NOLOAD) != nullptr); in CheckLoadedBuild() 47 bool release_build_loaded = (dlopen(kLibArtBaseRelease, RTLD_NOW | RTLD_NOLOAD) != nullptr); in CheckLoadedBuild()
|
/art/libdexfile/external/ |
D | dex_file_supp.cc | 68 void* handle = dlopen(so_name, RTLD_NOLOAD | RTLD_NOW | RTLD_NODELETE); in FOR_ALL_DLFUNCS() 71 handle = dlopen(so_name, RTLD_NOW | RTLD_GLOBAL | RTLD_NODELETE); in FOR_ALL_DLFUNCS()
|
/art/libartpalette/ |
D | Android.bp | 37 required: ["libartpalette-system"], // libartpalette.so dlopen()'s libartpalette-system. 40 // Targets supporting dlopen build the client library which loads 69 // Targets without support for dlopen just use the sources for
|
/art/simulator/ |
D | code_simulator_container.cc | 32 libart_simulator_handle_ = dlopen(libart_simulator_so_name, RTLD_NOW); in CodeSimulatorContainer()
|
/art/test/136-daemon-jni-shutdown/ |
D | daemon_jni_shutdown.cc | 65 void* handle = dlopen(kIsDebugBuild ? "libarttestd.so" : "libarttest.so", RTLD_NOW); in Java_Main_destroyJavaVMAndExit()
|
/art/runtime/ |
D | plugin.cc | 40 void* res = dlopen(library_.c_str(), RTLD_LAZY); in Load()
|
D | Android.bp | 566 // Otherwise, it would try to load the non-debug version with dlopen.
|
D | oat_file.cc | 1209 dlopen_handle_ = dlopen(absolute_path.get(), RTLD_NOW); in Dlopen()
|
/art/libnativeloader/ |
D | native_loader_test.cpp | 54 virtual void* dlopen(const char* filename, int flags) = 0; 121 MOCK_METHOD2(dlopen, void*(const char*, int)); 152 void* dlopen(const char* file, int flag) { in dlopen() function 153 return mock->dlopen(file, flag); in dlopen() 308 EXPECT_CALL(*mock, dlopen(StrEq(l.c_str()), RTLD_NOW | RTLD_NODELETE)) in SetExpectations()
|
D | native_loader.cpp | 127 void* handle = dlopen(path, RTLD_NOW); in OpenNativeLibrary() 182 void* handle = dlopen(path_arg, RTLD_NOW); in OpenNativeLibrary()
|
D | native_loader_lazy.cpp | 31 static void* handle = dlopen("libnativeloader.so", RTLD_NOW); in GetLibHandle()
|
D | library_namespaces.cpp | 136 LOG_ALWAYS_FATAL_IF(dlopen(soname.c_str(), RTLD_NOW | RTLD_NODELETE) == nullptr, in Initialize()
|
/art/libartpalette/apex/ |
D | palette.cc | 79 void* handle = dlopen(kPaletteSystemLibrary, RTLD_NOW | RTLD_GLOBAL | RTLD_NODELETE); in OpenLibrary()
|
/art/libnativebridge/ |
D | native_bridge_lazy.cc | 31 static void* handle = dlopen("libnativebridge.so", RTLD_NOW); in GetLibHandle()
|
D | native_bridge.cc | 227 void* handle = dlopen(nb_library_filename, RTLD_LAZY); in LoadNativeBridge()
|
/art/tools/jvmti-agents/chain-agents/ |
D | chainagents.cc | 70 void* handle = dlopen(lib_and_args.first.c_str(), RTLD_LAZY); in Load()
|
/art/sigchainlib/ |
D | sigchain_test.cc | 214 void* libc = dlopen(kLibcSoName, RTLD_LAZY | RTLD_NOLOAD); in TEST_F()
|
D | sigchain.cc | 115 void* result = dlopen(libc_name, RTLD_LOCAL | RTLD_LAZY); in lookup_libc_symbol()
|
/art/build/apex/ |
D | ld.config.txt | 38 # has to be able to dlopen them. 44 # dalvikvm has to be able to dlopen the files for CTS. 56 # Need allow_all_shared_libs because libart.so can dlopen oat files in
|
D | Android.bp | 37 // libadbconnection is internal and loaded with dlopen(), but it cannot use
|
/art/tools/jvmti-agents/wrapagentproperties/ |
D | wrapagentproperties.cc | 65 dlopen_handle(dlopen(agent_lib.c_str(), RTLD_LAZY)), in ProxyJavaVM()
|
/art/test/115-native-bridge/ |
D | nativebridge.cc | 454 void* handle = dlopen(tmp, flag); in native_bridge_loadLibrary()
|
/art/compiler/optimizing/ |
D | graph_visualizer.cc | 118 libart_disassembler_handle_ = dlopen(libart_disassembler_so_name, RTLD_NOW); in HGraphVisualizerDisassembler()
|
/art/runtime/jit/ |
D | jit.cc | 277 jit_library_handle_ = dlopen( in LoadCompilerLibrary()
|
/art/test/ |
D | Android.bp | 81 // within itself using dlopen(NULL, ...).
|
12