Home
last modified time | relevance | path

Searched refs:dlsym (Results 1 – 20 of 20) sorted by relevance

/art/runtime/
Dplugin.cc47 dlsym(res, PLUGIN_INITIALIZATION_FUNCTION_NAME)); in Load()
67 dlsym(handle, PLUGIN_DEINITIALIZATION_FUNCTION_NAME)); in Unload()
Doat_file.cc984 reinterpret_cast<const uint8_t*>(dlsym(dlopen_handle_, symbol_name.c_str())); in FindDynamicSymbolAddress()
/art/simulator/
Dcode_simulator_container.cc40 dlsym(libart_simulator_handle_, "CreateCodeSimulator")); in CodeSimulatorContainer()
/art/tools/jvmti-agents/chain-agents/
Dchainagents.cc78 dlsym(handle, start == StartType::OnLoad ? kOnLoad : kOnAttach)); in Load()
90 AgentUnloadFunction auf = reinterpret_cast<AgentUnloadFunction>(dlsym(handle, kOnUnload)); in Load()
/art/libnativeloader/
Dnative_loader_lazy.cpp38 auto f = reinterpret_cast<FuncPtr>(dlsym(GetLibHandle(), function_name)); in GetFuncPtr()
/art/libdexfile/external/
Ddex_file_supp.cc79 decltype(DLFUNC)* DLFUNC##_ptr = reinterpret_cast<decltype(DLFUNC)*>(dlsym(handle, #DLFUNC)); \ in FOR_ALL_DLFUNCS()
/art/tools/jvmti-agents/wrapagentproperties/
Dwrapagentproperties.cc72 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/
Dpalette.cc90 method = dlsym(palette_lib, name); in GetMethod()
/art/libnativebridge/
Dnative_bridge_lazy.cc38 auto f = reinterpret_cast<FuncPtr>(dlsym(GetLibHandle(), function_name)); in GetFuncPtr()
Dnative_bridge.cc229 callbacks = reinterpret_cast<NativeBridgeCallbacks*>(dlsym(handle, in LoadNativeBridge()
/art/test/986-native-method-bind/
Dnative_bind.cc87 *out_address = dlsym(RTLD_DEFAULT, new_symbol_chars); in doJvmtiMethodBind()
/art/dex2oat/linker/
Delf_writer_test.cc56 TEST_F(ElfWriterTest, dlsym) { in TEST_F() argument
/art/sigchainlib/
Dsigchain.cc122 void* sym = dlsym(libc, name); // NOLINT glibc triggers cert-dcl16-c with RTLD_NEXT. in lookup_libc_symbol()
124 sym = dlsym(RTLD_DEFAULT, name); in lookup_libc_symbol()
/art/runtime/ti/
Dagent.cc162 return dlsym(dlopen_handle_, name.c_str()); in FindSymbol()
/art/test/ti-agent/
Djni_binder.cc108 void* sym = dlsym(RTLD_DEFAULT, mangled_name.c_str()); in BindMethod()
/art/openjdkjvm/
DOpenjdkJvm.cc201 return dlsym(handle, name); in JVM_FindLibraryEntry()
/art/test/115-native-bridge/
Dnativebridge.cc474 void* sym = dlsym(handle, name); in native_bridge_getTrampoline()
/art/compiler/optimizing/
Dgraph_visualizer.cc128 dlsym(libart_disassembler_handle_, create_disassembler_symbol)); in HGraphVisualizerDisassembler()
/art/runtime/jni/
Djava_vm_ext.cc176 return dlsym(handle_, symbol_name.c_str()); in FindSymbolWithoutNativeBridge()
/art/runtime/jit/
Djit.cc269 *address = reinterpret_cast<T>(dlsym(jit_library_handle_, name)); in LoadSymbol()