Lines Matching full:dlopen
37 void* self = dlopen(NULL, RTLD_NOW);
54 void* self = dlopen("/does/not/exist", RTLD_NOW);
57 ASSERT_STREQ("dlopen failed: library \"/does/not/exist\" not found", dlerror());
64 dlopen("/child/thread", RTLD_NOW);
69 dlopen("/main/thread", RTLD_NOW);
86 void* self = dlopen(NULL, RTLD_NOW);
119 void* self = dlopen(NULL, RTLD_NOW);
198 void* handle = dlopen("no-elf-hash-table-library.so", RTLD_NOW);
200 ASSERT_STREQ("dlopen failed: empty/missing DT_HASH in \"no-elf-hash-table-library.so\" (built with --hash-style=gnu?)", dlerror());
211 handle = dlopen(NULL, 0);
216 handle = dlopen(NULL, 0xffffffff);
221 handle = dlopen(NULL, RTLD_NOW|RTLD_LAZY);