Searched refs:dlsym (Results 1 – 16 of 16) sorted by relevance
/art/runtime/ |
D | plugin.cc | 43 dlsym(res, PLUGIN_INITIALIZATION_FUNCTION_NAME)); in Load() 62 dlsym(handle, PLUGIN_DEINITIALIZATION_FUNCTION_NAME)); in Unload()
|
D | oat_file.cc | 903 reinterpret_cast<const uint8_t*>(dlsym(dlopen_handle_, symbol_name.c_str())); in FindDynamicSymbolAddress()
|
/art/simulator/ |
D | code_simulator_container.cc | 40 dlsym(libart_simulator_handle_, "CreateCodeSimulator")); in CodeSimulatorContainer()
|
/art/libdexfile/external/ |
D | dex_file_supp.cc | 64 CLASS::g_##DLFUNC = reinterpret_cast<decltype(DLFUNC)*>(dlsym(handle, #DLFUNC)); \ in LoadLibdexfileExternal()
|
/art/tools/jvmti-agents/wrapagentproperties/ |
D | wrapagentproperties.cc | 72 reinterpret_cast<AgentUnloadFunction>(dlsym(dlopen_handle, kOnUnload)), in ProxyJavaVM() 75 attach = reinterpret_cast<AgentLoadFunction>(dlsym(dlopen_handle, kOnAttach)); in ProxyJavaVM() 76 load = reinterpret_cast<AgentLoadFunction>(dlsym(dlopen_handle, kOnLoad)); in ProxyJavaVM()
|
/art/libartpalette/apex/ |
D | palette.cc | 90 method = dlsym(palette_lib, name); in GetMethod()
|
/art/test/986-native-method-bind/ |
D | native_bind.cc | 87 *out_address = dlsym(RTLD_DEFAULT, new_symbol_chars); in doJvmtiMethodBind()
|
/art/dex2oat/linker/ |
D | elf_writer_test.cc | 56 TEST_F(ElfWriterTest, dlsym) { in TEST_F() argument
|
/art/sigchainlib/ |
D | sigchain.cc | 103 void* sym = dlsym(RTLD_NEXT, name); // NOLINT glibc triggers cert-dcl16-c with RTLD_NEXT. in lookup_next_symbol() 105 sym = dlsym(RTLD_DEFAULT, name); in lookup_next_symbol()
|
/art/runtime/ti/ |
D | agent.cc | 162 return dlsym(dlopen_handle_, name.c_str()); in FindSymbol()
|
/art/test/ti-agent/ |
D | jni_binder.cc | 108 void* sym = dlsym(RTLD_DEFAULT, mangled_name.c_str()); in BindMethod()
|
/art/openjdkjvm/ |
D | OpenjdkJvm.cc | 201 return dlsym(handle, name); in JVM_FindLibraryEntry()
|
/art/test/115-native-bridge/ |
D | nativebridge.cc | 474 void* sym = dlsym(handle, name); in native_bridge_getTrampoline()
|
/art/compiler/optimizing/ |
D | graph_visualizer.cc | 123 dlsym(libart_disassembler_handle_, "create_disassembler")); in HGraphVisualizerDisassembler()
|
/art/runtime/jit/ |
D | jit.cc | 217 *address = reinterpret_cast<T>(dlsym(jit_library_handle_, name)); in LoadSymbol()
|
/art/runtime/jni/ |
D | java_vm_ext.cc | 174 return dlsym(handle_, symbol_name.c_str()); in FindSymbolWithoutNativeBridge()
|