Searched refs:dli_sname (Results 1 - 12 of 12) sorted by relevance

/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dladdr/
H A Dmain.c57 if ( strcmp(info.dli_sname, "bar") != 0 ) {
58 if ( strcmp(info.dli_sname, "_bar") == 0 ) {
59 XFAIL("dladdr()->dli_sname is \"%s\" instead of \"bar\"", info.dli_sname);
62 FAIL("dladdr()->dli_sname is \"%s\" instead of \"bar\"", info.dli_sname);
86 if ( strcmp(info.dli_sname, "foo") != 0 ) {
87 FAIL("dladdr()->dli_sname is \"%s\" instead of \"foo\"", info.dli_sname);
110 if ( strcmp(info.dli_sname, "hid
[all...]
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dladdr-stripped/
H A Dmain.c45 if ( info.dli_sname != NULL ){
46 FAIL("dladdr() returned: \"%s\" instead of NULL", info.dli_sname);
/macosx-10.10.1/libunwind-35.3/testsuite/
H A DUnwind_Backtrace.c34 if ( strcmp(dyldInfo.dli_sname, expected[step]) != 0 ) {
35 fprintf(stderr, "unexpected frame %s\n", dyldInfo.dli_sname);
/macosx-10.10.1/Libc-1044.1.2/gen/
H A Dbacktrace.c68 if (info->dli_sname) {
69 symbol = info->dli_sname;
110 if (info[i].dli_sname) {
111 total_bytes += strlen(info[i].dli_sname);
/macosx-10.10.1/dyld-353.2.1/include/
H A Ddlfcn.h48 const char *dli_sname; /* Name of nearest symbol */ member in struct:dl_info
/macosx-10.10.1/JavaScriptCore-7600.1.17/tools/
H A DCodeProfile.cpp61 if (!dladdr(address, &info) || !info.dli_sname)
64 const char* mangledName = info.dli_sname;
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/
H A DJSGlobalObjectInspectorController.cpp134 if (dladdr(stack[i], &info) && info.dli_sname)
135 mangledName = info.dli_sname;
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/Unix/
H A DSignals.inc290 if (dlinfo.dli_sname != NULL) {
293 char* d = abi::__cxa_demangle(dlinfo.dli_sname, NULL, NULL, &res);
294 if (d == NULL) fputs(dlinfo.dli_sname, stderr);
/macosx-10.10.1/libunwind-35.3/src/
H A DAddressSpace.hpp268 if ( dyldInfo.dli_sname != NULL ) {
269 strlcpy(buf, dyldInfo.dli_sname, bufLen);
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DAssertions.cpp295 if (dladdr(stack[i], &info) && info.dli_sname)
296 mangledName = info.dli_sname;
/macosx-10.10.1/dyld-353.2.1/src/
H A DdyldAPIs.cpp1599 info->dli_sname = "__dso_handle";
1605 info->dli_sname = image->findClosestSymbol(address, (const void**)&info->dli_saddr);
1608 info->dli_sname = NULL;
1613 if ( info->dli_sname != NULL ) {
1614 if ( info->dli_sname[0] == '_' )
1615 info->dli_sname = info->dli_sname +1; // strip off leading underscore
1616 //dyld::log("dladdr(%p) => %p %s\n", address, info->dli_saddr, info->dli_sname);
1620 info->dli_sname = NULL;
/macosx-10.10.1/iodbc-42.5/iodbc/iodbcadm/gtk/
H A Dadministrator.c90 const char *dli_sname; /* Name of nearest symbol. */ member in struct:__anon8950

Completed in 142 milliseconds