Searched refs:sym (Results 1 - 8 of 8) sorted by relevance

/art/runtime/native/
H A Djava_lang_Runtime.cc57 void* sym = dlsym(RTLD_DEFAULT, "android_update_LD_LIBRARY_PATH"); local
58 if (sym != NULL) {
60 Fn android_update_LD_LIBRARY_PATH = reinterpret_cast<Fn>(sym);
/art/runtime/
H A Delf_utils.h70 inline void SetBindingAndType(Elf32_Sym* sym, unsigned char b, unsigned char t) { argument
71 sym->st_info = (b << 4) + (t & 0x0f);
H A Dcommon_runtime_test.cc276 void* sym = dlsym(RTLD_DEFAULT, "u_cleanup_" U_ICU_VERSION_SHORT); local
277 CHECK(sym != nullptr) << dlerror();
278 IcuCleanupFn icu_cleanup_fn = reinterpret_cast<IcuCleanupFn>(sym);
H A Delf_file.cc775 const Elf32_Sym* sym = FindDynamicSymbol(symbol_name); local
776 if (sym != nullptr) {
779 return base_address_ + sym->st_value;
H A Djni_internal.cc3317 void* sym = nullptr; local
3320 sym = library->FindSymbolWithNativeBridge("JNI_OnLoad", nullptr);
3322 sym = dlsym(handle, "JNI_OnLoad");
3325 if (sym == nullptr) {
3334 JNI_OnLoadFn jni_on_load = reinterpret_cast<JNI_OnLoadFn>(sym);
/art/runtime/arch/x86/
H A Dfault_handler_x86.cc76 #define EXT_SYM(sym) _ ## sym
81 #define EXT_SYM(sym) sym
/art/compiler/
H A Delf_writer_quick.cc673 Elf32_Sym sym; local
674 memset(&sym, 0, sizeof(sym));
675 sym.st_name = it->name_idx_;
677 sym.st_value = it->addr_ + it->section_->section_.sh_offset;
679 sym.st_value = it->addr_;
681 sym.st_size = it->size_;
682 sym.st_other = it->other_;
683 sym.st_shndx = it->section_->section_index_;
684 sym
[all...]
/art/test/115-native-bridge/
H A Dnativebridge.cc255 void* sym = dlsym(handle, name); local
259 method->fnPtr = sym;

Completed in 900 milliseconds