/external/musl/src/ldso/powerpc64/ |
D | dlsym.s | 2 .global dlsym symbol 4 .type dlsym,@function 5 dlsym: label 6 addis 2, 12, .TOC.-dlsym@ha 7 addi 2, 2, .TOC.-dlsym@l 8 .localentry dlsym,.-dlsym 11 .size dlsym, .-dlsym
|
/external/jazzer-api/driver/ |
D | native_fuzzer_hooks.c | 126 atomic_store(&bcmp_hook, dlsym(handle, "__sanitizer_weak_hook_bcmp")); in jazzer_initialize_native_hooks() 127 atomic_store(&memcmp_hook, dlsym(handle, "__sanitizer_weak_hook_memcmp")); in jazzer_initialize_native_hooks() 128 atomic_store(&strncmp_hook, dlsym(handle, "__sanitizer_weak_hook_strncmp")); in jazzer_initialize_native_hooks() 129 atomic_store(&strcmp_hook, dlsym(handle, "__sanitizer_weak_hook_strcmp")); in jazzer_initialize_native_hooks() 131 dlsym(handle, "__sanitizer_weak_hook_strncasecmp")); in jazzer_initialize_native_hooks() 133 dlsym(handle, "__sanitizer_weak_hook_strcasecmp")); in jazzer_initialize_native_hooks() 134 atomic_store(&strstr_hook, dlsym(handle, "__sanitizer_weak_hook_strstr")); in jazzer_initialize_native_hooks() 136 dlsym(handle, "__sanitizer_weak_hook_strcasestr")); in jazzer_initialize_native_hooks() 137 atomic_store(&memmem_hook, dlsym(handle, "__sanitizer_weak_hook_memmem")); in jazzer_initialize_native_hooks() 140 dlsym(handle, "__sanitizer_cov_8bit_counters_init")); in jazzer_initialize_native_hooks() [all …]
|
/external/google-breakpad/src/common/linux/ |
D | http_upload.cc | 103 *(void**) (&curl_easy_init) = dlsym(curl_lib, "curl_easy_init"); in SendRequest() 115 *(void**) (&curl_easy_setopt) = dlsym(curl_lib, "curl_easy_setopt"); in SendRequest() 135 *(void**) (&curl_formadd) = dlsym(curl_lib, "curl_formadd"); in SendRequest() 157 *(void**) (&curl_slist_append) = dlsym(curl_lib, "curl_slist_append"); in SendRequest() 171 *(void**) (&curl_easy_perform) = dlsym(curl_lib, "curl_easy_perform"); in SendRequest() 175 *(void**) (&curl_easy_getinfo) = dlsym(curl_lib, "curl_easy_getinfo"); in SendRequest() 179 *(void**) (&curl_easy_strerror) = dlsym(curl_lib, "curl_easy_strerror"); in SendRequest() 190 *(void**) (&curl_easy_cleanup) = dlsym(curl_lib, "curl_easy_cleanup"); in SendRequest() 194 *(void**) (&curl_formfree) = dlsym(curl_lib, "curl_formfree"); in SendRequest() 199 *(void**) (&curl_slist_free_all) = dlsym(curl_lib, "curl_slist_free_all"); in SendRequest() [all …]
|
/external/cronet/base/android/ |
D | android_hardware_buffer_compat.cc | 27 dlsym(main_dl_handle, "AHardwareBuffer_allocate"); in AndroidHardwareBufferCompat() 31 dlsym(main_dl_handle, "AHardwareBuffer_acquire"); in AndroidHardwareBufferCompat() 35 dlsym(main_dl_handle, "AHardwareBuffer_describe"); in AndroidHardwareBufferCompat() 39 dlsym(main_dl_handle, "AHardwareBuffer_lock"); in AndroidHardwareBufferCompat() 43 dlsym(main_dl_handle, "AHardwareBuffer_recvHandleFromUnixSocket"); in AndroidHardwareBufferCompat() 47 dlsym(main_dl_handle, "AHardwareBuffer_release"); in AndroidHardwareBufferCompat() 51 dlsym(main_dl_handle, "AHardwareBuffer_sendHandleToUnixSocket"); in AndroidHardwareBufferCompat() 55 dlsym(main_dl_handle, "AHardwareBuffer_unlock"); in AndroidHardwareBufferCompat()
|
/external/libchrome/base/android/ |
D | android_hardware_buffer_compat.cc | 35 dlsym(main_dl_handle, "AHardwareBuffer_allocate"); in AndroidHardwareBufferCompat() 39 dlsym(main_dl_handle, "AHardwareBuffer_acquire"); in AndroidHardwareBufferCompat() 43 dlsym(main_dl_handle, "AHardwareBuffer_describe"); in AndroidHardwareBufferCompat() 47 dlsym(main_dl_handle, "AHardwareBuffer_lock"); in AndroidHardwareBufferCompat() 51 dlsym(main_dl_handle, "AHardwareBuffer_recvHandleFromUnixSocket"); in AndroidHardwareBufferCompat() 55 dlsym(main_dl_handle, "AHardwareBuffer_release"); in AndroidHardwareBufferCompat() 59 dlsym(main_dl_handle, "AHardwareBuffer_sendHandleToUnixSocket"); in AndroidHardwareBufferCompat() 63 dlsym(main_dl_handle, "AHardwareBuffer_unlock"); in AndroidHardwareBufferCompat()
|
/external/musl/src/ldso/powerpc/ |
D | dlsym.s | 2 .global dlsym symbol 4 .type dlsym,@function 5 dlsym: label 8 .size dlsym, .-dlsym
|
/external/AFLplusplus/src/ |
D | afl-fuzz-mutators.c | 195 mutator->afl_custom_init = dlsym(dh, "afl_custom_init"); in load_custom_mutator() 203 mutator->afl_custom_fuzz = dlsym(dh, "afl_custom_fuzz"); in load_custom_mutator() 209 mutator->afl_custom_fuzz = dlsym(dh, "afl_custom_mutator"); in load_custom_mutator() 220 mutator->afl_custom_introspection = dlsym(dh, "afl_custom_introspection"); in load_custom_mutator() 230 mutator->afl_custom_fuzz_count = dlsym(dh, "afl_custom_fuzz_count"); in load_custom_mutator() 238 mutator->afl_custom_deinit = dlsym(dh, "afl_custom_deinit"); in load_custom_mutator() 246 mutator->afl_custom_post_process = dlsym(dh, "afl_custom_post_process"); in load_custom_mutator() 255 mutator->afl_custom_init_trim = dlsym(dh, "afl_custom_init_trim"); in load_custom_mutator() 264 mutator->afl_custom_trim = dlsym(dh, "afl_custom_trim"); in load_custom_mutator() 273 mutator->afl_custom_post_trim = dlsym(dh, "afl_custom_post_trim"); in load_custom_mutator() [all …]
|
/external/musl/src/ldso/mips64/ |
D | dlsym.s | 2 .global dlsym symbol 4 .type dlsym,@function 5 dlsym: label 6 lui $3, %hi(%neg(%gp_rel(dlsym))) 7 daddiu $3, $3, %lo(%neg(%gp_rel(dlsym)))
|
/external/musl/src/ldso/mipsn32/ |
D | dlsym.s | 2 .global dlsym symbol 4 .type dlsym,@function 5 dlsym: label 6 lui $3, %hi(%neg(%gp_rel(dlsym))) 7 addiu $3, $3, %lo(%neg(%gp_rel(dlsym)))
|
/external/angle/src/gpu_info_util/ |
D | SystemInfo_libpci.cpp | 50 (Alloc = reinterpret_cast<decltype(Alloc)>(dlsym(mHandle, "pci_alloc"))) != nullptr && in LibPCI() 51 (Init = reinterpret_cast<decltype(Init)>(dlsym(mHandle, "pci_init"))) != nullptr && in LibPCI() 52 (Cleanup = reinterpret_cast<decltype(Cleanup)>(dlsym(mHandle, "pci_cleanup"))) != in LibPCI() 54 (ScanBus = reinterpret_cast<decltype(ScanBus)>(dlsym(mHandle, "pci_scan_bus"))) != in LibPCI() 56 (FillInfo = reinterpret_cast<decltype(FillInfo)>(dlsym(mHandle, "pci_fill_info"))) != in LibPCI() 59 dlsym(mHandle, "pci_lookup_name"))) != nullptr && in LibPCI() 61 dlsym(mHandle, "pci_read_byte"))) != nullptr; in LibPCI()
|
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/ |
D | UnmanagedLibrary.cs | 99 return Mono.dlsym(this.handle, symbolName); in LoadSymbol() 103 return CoreCLR.dlsym(this.handle, symbolName); in LoadSymbol() 105 return Linux.dlsym(this.handle, symbolName); in LoadSymbol() 109 return MacOSX.dlsym(this.handle, symbolName); in LoadSymbol() 187 internal static extern IntPtr dlsym(IntPtr handle, string symbol); in dlsym() method in Grpc.Core.Internal.UnmanagedLibrary.Linux 196 internal static extern IntPtr dlsym(IntPtr handle, string symbol); in dlsym() method in Grpc.Core.Internal.UnmanagedLibrary.MacOSX 212 internal static extern IntPtr dlsym(IntPtr handle, string symbol); in dlsym() method in Grpc.Core.Internal.UnmanagedLibrary.Mono 226 internal static extern IntPtr dlsym(IntPtr handle, string symbol); in dlsym() method in Grpc.Core.Internal.UnmanagedLibrary.CoreCLR
|
/external/e2fsprogs/lib/ss/ |
D | get_readline.c | 81 dlsym(handle, "readline"); in ss_get_readline() 83 dlsym(handle, "add_history"); in ss_get_readline() 85 dlsym(handle, "rl_forced_update_display"); in ss_get_readline() 88 dlsym(handle, "rl_completion_matches"); in ss_get_readline() 89 if ((t = dlsym(handle, "rl_readline_name")) != NULL) in ss_get_readline() 92 dlsym(handle, "rl_attempted_completion_function")) != NULL) in ss_get_readline()
|
/external/selinux/libselinux/src/ |
D | load_policy.c | 84 vers_max = dlsym(libsepolh, "sepol_policy_kern_vers_max"); in selinux_mkload_policy() 86 vers_min = dlsym(libsepolh, "sepol_policy_kern_vers_min"); in selinux_mkload_policy() 89 policy_file_create = dlsym(libsepolh, "sepol_policy_file_create"); in selinux_mkload_policy() 91 policy_file_free = dlsym(libsepolh, "sepol_policy_file_free"); in selinux_mkload_policy() 93 policy_file_set_mem = dlsym(libsepolh, "sepol_policy_file_set_mem"); in selinux_mkload_policy() 95 policydb_create = dlsym(libsepolh, "sepol_policydb_create"); in selinux_mkload_policy() 97 policydb_free = dlsym(libsepolh, "sepol_policydb_free"); in selinux_mkload_policy() 99 policydb_read = dlsym(libsepolh, "sepol_policydb_read"); in selinux_mkload_policy() 101 policydb_set_vers = dlsym(libsepolh, "sepol_policydb_set_vers"); in selinux_mkload_policy() 103 policydb_to_image = dlsym(libsepolh, "sepol_policydb_to_image"); in selinux_mkload_policy()
|
/external/cronet/third_party/ashmem/patches/ |
D | 0003-Pthread-once-for-funcs-init.patch | 29 - dlsym(lib, "ASharedMemory_create"); 31 - dlsym(lib, "ASharedMemory_getSize"); 33 - dlsym(lib, "ASharedMemory_setProt"); 43 + (ASharedMemory_createFunc)dlsym(lib, "ASharedMemory_create"); 45 + (ASharedMemory_getSizeFunc)dlsym(lib, "ASharedMemory_getSize"); 47 + (ASharedMemory_setProtFunc)dlsym(lib, "ASharedMemory_setProt");
|
/external/oboe/src/aaudio/ |
D | AAudioLoader.cpp | 159 void *proc = dlsym(mLibHandle, functionName); in load_I_PPB() 165 void *proc = dlsym(mLibHandle, functionName); in load_CPH_I() 171 void *proc = dlsym(mLibHandle, functionName); in load_V_PBI() 177 void *proc = dlsym(mLibHandle, functionName); in load_V_PBCPH() 183 void *proc = dlsym(mLibHandle, functionName); in load_V_PBPDPV() 189 void *proc = dlsym(mLibHandle, functionName); in load_V_PBPEPV() 195 void *proc = dlsym(mLibHandle, functionName); in load_I_PSI() 201 void *proc = dlsym(mLibHandle, functionName); in load_I_PS() 207 void *proc = dlsym(mLibHandle, functionName); in load_L_PS() 213 void *proc = dlsym(mLibHandle, functionName); in load_F_PS() [all …]
|
/external/conscrypt/common/src/jni/main/cpp/conscrypt/ |
D | compatibility_close_monitor.cc | 41 asyncCloseMonitorCreate = (acm_create_func) dlsym(lib, "async_close_monitor_create"); in init() 42 asyncCloseMonitorDestroy = (acm_destroy_func) dlsym(lib, "async_close_monitor_destroy"); in init() 51 (acm_ctor_func)dlsym(lib, "_ZN24AsynchronousCloseMonitorC1Ei"); in init() 53 (acm_dtor_func)dlsym(lib, "_ZN24AsynchronousCloseMonitorD1Ev"); in init()
|
/external/smali/deodexerant/ |
D | deodexerant.c | 55 dvmGetInlineOpsTablePtr dvmGetInlineOpsTable = dlsym(libdvm, "dvmGetInlineOpsTable"); in main() 60 dvmGetInlineOpsTable = dlsym(libdvm, "_Z20dvmGetInlineOpsTablev"); in main() 69 …dvmGetInlineOpsTableLengthPtr dvmGetInlineOpsTableLength = dlsym(libdvm, "dvmGetInlineOpsTableLeng… in main() 74 dvmGetInlineOpsTableLength = dlsym(libdvm, "_Z26dvmGetInlineOpsTableLengthv"); in main()
|
/external/google-smali/deodexerant/ |
D | deodexerant.c | 54 dvmGetInlineOpsTablePtr dvmGetInlineOpsTable = dlsym(libdvm, "dvmGetInlineOpsTable"); in main() 59 dvmGetInlineOpsTable = dlsym(libdvm, "_Z20dvmGetInlineOpsTablev"); in main() 68 …dvmGetInlineOpsTableLengthPtr dvmGetInlineOpsTableLength = dlsym(libdvm, "dvmGetInlineOpsTableLeng… in main() 73 dvmGetInlineOpsTableLength = dlsym(libdvm, "_Z26dvmGetInlineOpsTableLengthv"); in main()
|
/external/e2fsprogs/contrib/ |
D | spd_readdir.c | 125 real_opendir = dlsym(RTLD_NEXT, "opendir"); in setup_ptr() 126 real_fdopendir = dlsym(RTLD_NEXT, "fdopendir"); in setup_ptr() 127 real_closedir = dlsym(RTLD_NEXT, "closedir"); in setup_ptr() 128 real_rewinddir = dlsym(RTLD_NEXT, "rewinddir"); in setup_ptr() 129 real_readdir = dlsym(RTLD_NEXT, "readdir"); in setup_ptr() 130 real_readdir_r = dlsym(RTLD_NEXT, "readdir_r"); in setup_ptr() 131 real_readdir64 = dlsym(RTLD_NEXT, "readdir64"); in setup_ptr() 132 real_readdir64_r = dlsym(RTLD_NEXT, "readdir64_r"); in setup_ptr() 133 real_telldir = dlsym(RTLD_NEXT, "telldir"); in setup_ptr() 134 real_seekdir = dlsym(RTLD_NEXT, "seekdir"); in setup_ptr() [all …]
|
/external/musl/src/ldso/s390x/ |
D | dlsym.s | 1 .global dlsym symbol 3 .type dlsym,@function 4 dlsym: label
|
/external/musl/src/ldso/aarch64/ |
D | dlsym.s | 1 .global dlsym symbol 3 .type dlsym,%function 4 dlsym: label
|
/external/musl/src/ldso/riscv64/ |
D | dlsym.s | 1 .global dlsym symbol 3 .type dlsym, %function 4 dlsym: label
|
/external/musl/src/ldso/x32/ |
D | dlsym.s | 2 .global dlsym symbol 4 .type dlsym,@function 5 dlsym: label
|
/external/musl/src/ldso/microblaze/ |
D | dlsym.s | 1 .global dlsym symbol 3 .type dlsym,@function 4 dlsym: label
|
/external/musl/src/ldso/x86_64/ |
D | dlsym.s | 2 .global dlsym symbol 4 .type dlsym,@function 5 dlsym: label
|