Searched refs:handleBar (Results 1 - 3 of 3) sorted by relevance

/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dlclose-dylib-ref-count/
H A Dmain.c37 void* handleBar = dlopen("libbar.dylib", RTLD_LAZY); local
38 if ( handleBar == NULL ) {
50 void* sym_base = dlsym(handleBar, "base");
52 FAIL("dlclose-dylib-ref-count: dlsym(handleBar, \"base\") failed");
58 FAIL("dlclose-dylib-ref-count: dlsym(handleBar, \"base\") failed");
62 void* sym_bar = dlsym(handleBar, "bar");
64 FAIL("dlclose-dylib-ref-count: dlsym(handleBar, \"base\") failed");
68 if ( dlclose(handleBar) != 0 ) {
69 FAIL("dlclose-dylib-ref-count: dlclose(handleBar) != 0, dlerrr()=%s", dlerror());
92 FAIL("dlclose-dylib-ref-count: dlclose(handleBar) !
[all...]
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dlclose-dylib-dynamic-ref/
H A Dmain.c44 void* handleBar = dlopen("libbar.dylib", RTLD_LAZY); local
45 if ( handleBar == NULL ) {
64 void* sym_bar = dlsym(handleBar, "bar");
66 FAIL("dlclose-dylib-dynamic-ref: dlsym(handleBar, \"bar\") failed");
81 FAIL("dlclose-dylib-dynamic-ref: dlclose(handleBar) != 0, dlerrr()=%s", dlerror());
93 if ( dlclose(handleBar) != 0 ) {
94 FAIL("dlclose-dylib-dynamic-ref: dlclose(handleBar) != 0, dlerrr()=%s", dlerror());
114 FAIL("dlclose-dylib-dynamic-ref: dlclose(handleBar) != 0, dlerrr()=%s", dlerror());
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dlopen-RTLD_LOCAL-ignore/
H A Dmain.c68 void* handleBar = dlopen("./bar.dylib", RTLD_LOCAL); local
69 if ( handleBar == NULL ) {

Completed in 123 milliseconds