HomeSort by: relevance | last modified time | path
    Searched refs:dladdr (Results 1 - 25 of 57) sorted by relevancy

1 2 3

  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_dl.cpp 28 int ret = dladdr((void *)&SanitizerToolName, &info);
sanitizer_symbolizer_mac.cpp 32 int result = dladdr((const void *)addr, &info);
35 // Compute offset if possible. `dladdr()` doesn't always ensure that `addr >=
53 int result = dladdr((const void *)addr, &info);
175 // Fallback to dladdr() to get function start address if atos doesn't report
178 int result = dladdr((const void *)addr, &info);
184 // start address and we got a sensible `start_address` (dladdr doesn't always
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/posix/
dlfcn.d 171 int dladdr(const scope void*, Dl_info*);
195 int dladdr(scope const void* addr, Dl_info* info);
220 int dladdr(const(void)* addr, Dl_info* info);
243 int dladdr(const(void)* addr, Dl_info* info);
266 int dladdr(const(void)* addr, Dl_info* info);
291 int dladdr(const(void)* addr, Dl_info* info);
320 int dladdr(const(void)* addr, Dl_info* info);
340 int dladdr(const scope void*, Dl_info*);
369 int dladdr(scope const void *addr, Dl_info *info);
417 int dladdr(const scope void*, Dl_info*)
    [all...]
  /src/tests/libexec/ld.elf_so/
t_dladdr.c 56 "Verify dladdr of data in this object returns self");
65 * If we're statically linked, dladdr just fails (XXX is that
73 ATF_CHECK_MSG(dladdr(ptr, &info) != 0,
74 "[bar @ %p + [0,%zu)] dladdr(%p) failed: %s",
82 "[bar @ %p + [0,%zu)] dladdr found %p in %s, not self=%s",
85 "[bar @ %p + [0,%zu)] dladdr found %p in %s at %p, not bar",
93 "Verify dladdr(errno) returns libc.so (or self if static)");
101 * If we're statically linked, dladdr just fails (XXX is that
113 ATF_CHECK_MSG(dladdr(&errno, &info) != 0,
114 "[errno @ %p] dladdr failed: %s", &errno, dlerror())
    [all...]
  /src/lib/libc/dlfcn/
dlfcn_elf.c 46 #undef dladdr macro
54 #define dladdr ___dladdr macro
67 __weak_alias(dladdr,___dladdr)
136 dladdr(const void *addr, Dl_info *dli) function
  /src/libexec/ld.elf_so/
compat.c 83 [(RTLD_OBJ_DLOPEN_OFFSET / sizeof(uintptr_t)) + 4] = (uintptr_t)dladdr,
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
dlfcn.hin 86 dladdr(void *addr, Dl_info *dli);
dlfcn_w32.c 169 dladdr(void *addr, Dl_info *dli) function
  /src/include/
dlfcn.h 63 int dladdr(const void * __restrict, Dl_info * __restrict);
link_aout.h 177 int (*dladdr)(const void *, Dl_info *); member in struct:ld_entry
  /src/external/gpl3/gcc/dist/libgcc/config/
darwin-crt-tm.c 54 if (! dladdr (f, &info) || info.dli_fbase == NULL)
  /src/external/gpl3/gcc.old/dist/libgcc/config/
darwin-crt-tm.c 54 if (! dladdr (f, &info) || info.dli_fbase == NULL)
  /src/usr.sbin/isibootd/
isibootd.c 368 uint8_t dladdr[ETHER_ADDR_LEN], *buf; local
391 if (pickif(ifr.ifr_name, dladdr) < 0)
411 memcpy(st->addr, dladdr, ETHER_ADDR_LEN);
415 pickif(char *xname, uint8_t *dladdr)
439 memcpy(dladdr, CLLADDR(sdl),
444 memcpy(dladdr, CLLADDR(sdl),
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_symbolizer_mac.cc 33 int result = dladdr((const void *)addr, &info);
43 int result = dladdr((const void *)addr, &info);
  /src/external/gpl3/gcc/dist/libgcc/config/s390/
tpf-unwind.h 177 retval = dladdr (target, &targetcodeInfo);
216 retval = dladdr (current, &currentcodeInfo);
  /src/external/gpl3/gcc.old/dist/libgcc/config/s390/
tpf-unwind.h 177 retval = dladdr (target, &targetcodeInfo);
216 retval = dladdr (current, &currentcodeInfo);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/dragonflybsd/
execinfo.d 75 if (dladdr(addr, &info) == 0)
109 if (dladdr(addr, &info) == 0)
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/freebsd/
execinfo.d 79 if (dladdr(addr, &info) == 0)
113 if (dladdr(addr, &info) == 0)
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/netbsd/
execinfo.d 75 if (dladdr(addr, &info) == 0)
109 if (dladdr(addr, &info) == 0)
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_symbolizer_mac.cpp 33 int result = dladdr((const void *)addr, &info);
36 // Compute offset if possible. `dladdr()` doesn't always ensure that `addr >=
53 int result = dladdr((const void *)addr, &info);
221 // Fallback to dladdr() to get function start address if atos doesn't report
224 int result = dladdr((const void *)addr, &info);
230 // start address and we got a sensible `start_address` (dladdr doesn't always
  /src/crypto/external/apache2/openssl/dist/crypto/dso/
dso_dlfcn.c 16 #define _GNU_SOURCE /* make sure dladdr is declared */
276 This is a quote from IRIX manual for dladdr(3c):
278 <dlfcn.h> does not contain a prototype for dladdr or definition of
280 but contains no dladdr prototype and no IRIX library contains an
305 static int dladdr(void *address, Dl_info *dl) function
327 * This dladdr()-implementation will also find the ptrgl (Pointer Glue) virtual
331 static int dladdr(void *ptr, Dl_info *dl) function
411 if (dladdr(addr, &dli)) {
  /src/crypto/external/bsd/openssl/dist/crypto/dso/
dso_dlfcn.c 16 # define _GNU_SOURCE /* make sure dladdr is declared */
285 This is a quote from IRIX manual for dladdr(3c):
287 <dlfcn.h> does not contain a prototype for dladdr or definition of
289 but contains no dladdr prototype and no IRIX library contains an
314 static int dladdr(void *address, Dl_info *dl) function
336 * This dladdr()-implementation will also find the ptrgl (Pointer Glue) virtual
340 static int dladdr(void *ptr, Dl_info *dl) function
423 if (dladdr(addr, &dli)) {
  /src/crypto/external/bsd/openssl.old/dist/crypto/dso/
dso_dlfcn.c 16 # define _GNU_SOURCE /* make sure dladdr is declared */
284 This is a quote from IRIX manual for dladdr(3c):
286 <dlfcn.h> does not contain a prototype for dladdr or definition of
288 but contains no dladdr prototype and no IRIX library contains an
313 static int dladdr(void *address, Dl_info *dl) function
335 * This dladdr()-implementation will also find the ptrgl (Pointer Glue) virtual
339 static int dladdr(void *ptr, Dl_info *dl) function
422 if (dladdr(addr, &dli)) {
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndexer.cpp 130 if (dladdr((void *)(uintptr_t)clang_createTranslationUnit, &info) == 0)
131 llvm_unreachable("Call to dladdr() failed");
  /src/external/apache2/llvm/dist/llvm/lib/Support/Unix/
Signals.inc 588 dladdr(StackTrace[i], &dlinfo);
600 dladdr(StackTrace[i], &dlinfo);

Completed in 50 milliseconds

1 2 3