/third_party/musl/libc-test/src/functional/ |
D | dlopen_ns.c | 7 const char* dllName = "libdlopen_ns_dso.so"; variable 17 t_error("dlopen_by_path handle get error %s open failed: %s\n", dllName, dlerror()); in test_open_by_path() 20 t_error("dlclose_by_path handle %s close failed : %s \n", dllName, dlerror()); in test_open_by_path() 29 void* handle = dlopen_ns(&dlns, dllName, RTLD_LAZY); in test_open_by_ini_name() 33 t_error("dlopen_ns_by_ini_name handle get error %s open failed: %s\n", dllName, dlerror()); in test_open_by_ini_name() 36 t_error("dlclose_by_ini_name handle %s close failed : %s \n", dllName, dlerror()); in test_open_by_ini_name() 46 dlns_inherit(&dlns1, &dlns2 , dllName); in test_open_by_ini_api() 48 void* handle = dlopen_ns(&dlns1, dllName, RTLD_LAZY); in test_open_by_ini_api() 50 t_error("dlopen_ns_by_ini_api handle get error %s open failed: %s\n", dllName, dlerror()); in test_open_by_ini_api() 53 t_error("dlclose_by_ini_api handle %s close failed : %s \n", dllName, dlerror()); in test_open_by_ini_api() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/IntelJITEvents/ |
D | jitprofiling.c | 279 char *dllName = (char*)rcsid; /* !! Just to avoid unused code elimination */ in loadiJIT_Funcs() local 310 dllName = (char*)malloc(sizeof(char) * (dNameLength + 1)); in loadiJIT_Funcs() 312 dllName, dNameLength); in loadiJIT_Funcs() 316 m_libHandle = LoadLibraryExA(dllName, in loadiJIT_Funcs() 319 free(dllName); in loadiJIT_Funcs() 326 dllName = (char*)malloc(sizeof(char) * (dNameLength + 1)); in loadiJIT_Funcs() 328 dllName, dNameLength); in loadiJIT_Funcs() 332 m_libHandle = LoadLibraryA(dllName); in loadiJIT_Funcs() 334 free(dllName); in loadiJIT_Funcs() 338 dllName = getenv(NEW_DLL_ENVIRONMENT_VAR); in loadiJIT_Funcs() [all …]
|
/third_party/musl/libc-test/src/functionalext/dlns/ |
D | dlns_special_scene.c | 34 void* handle1 = dlopen_ns(&dlns, dllName, RTLD_LAZY); in dlopen_ns_special_0100() 37 void* handle2 = dlopen_ns(&dlns, dllName, RTLD_LAZY); in dlopen_ns_special_0100() 40 void* handle3 = dlopen_ns(&dlns, dllName, RTLD_LAZY); in dlopen_ns_special_0100() 60 void* handle1 = dlopen_ns(&dlns_no_allowed_libs, dllName, RTLD_LAZY); in dlopen_ns_special_0200() 63 void* handle2 = dlopen_ns(&dlns_normal, dllName, RTLD_LAZY); in dlopen_ns_special_0200() 66 void* handle3 = dlopen_ns(&dlns_wrong_lib_path, dllName, RTLD_LAZY); in dlopen_ns_special_0200() 84 void* handle = dlopen_ns(&dlns, dllName, RTLD_LAZY); in dlopen_ns_sys_path_0100()
|
D | dlns_inherit.c | 39 void* handle = dlopen_ns(&dlnsA, dllName, RTLD_LAZY); in dlns_inherit_0100() 60 EXPECT_EQ("dlns_inherit_0200", dlns_inherit(&dlnsA, &dlnsB, dllName), EOK); in dlns_inherit_0200() 62 void* handle = dlopen_ns(&dlnsA, dllName, RTLD_LAZY); in dlns_inherit_0200() 106 EXPECT_EQ("dlns_inherit_0400", dlns_inherit(&dlnsA, &dlnsB, dllName), EOK); in dlns_inherit_0400() 108 void* handle = dlopen_ns(&dlnsA, dllName, RTLD_LAZY); in dlns_inherit_0400() 114 void* handle1 = dlopen_ns(&dlnsAA, dllName, RTLD_LAZY); in dlns_inherit_0400() 138 void* handle = dlopen_ns(&dlnsA, dllName, RTLD_LAZY); in dlns_inherit_0500() 165 EXPECT_EQ("dlns_inherit_0600", dlns_inherit(&dlnsA, &dlnsB, dllName), EOK); in dlns_inherit_0600() 167 void* handle = dlopen_ns(&dlnsA, dllName, RTLD_LAZY); in dlns_inherit_0600() 305 void* handle1 = dlopen_ns(&dlnsB, dllName, RTLD_LAZY); in dlns_inherit_1000() [all …]
|
D | dlns_separated.c | 35 void* handle = dlopen_ns(&dlns, dllName, RTLD_LAZY); in separated_0100() 117 void* handle = dlopen_ns(&dlns, dllName, RTLD_LAZY); in separated_0600() 155 EXPECT_EQ("separated_0800", dlns_set_namespace_allowed_libs("separated_0800", dllName), EOK); in separated_0800() 216 void* handle = dlopen_ns(&dlns, dllName, RTLD_LAZY); in separated_1100()
|
D | dlns_dlopen.c | 123 void* handle = dlopen_ns(&dlns, dllName, RTLD_LAZY); in dlns_create_0300() 191 void* handle = dlopen_ns(&dlns, dllName, RTLD_LAZY); in dlopen_ns_0300()
|
D | dlns_test.h | 20 static const char* dllName = "libdlopen_ns_dso.so"; variable
|
D | dlns_set_fun.c | 101 void *handle = dlopen_ns(&dlns, dllName, RTLD_LAZY); in dlns_set_namespace_lib_path_0500() 299 dlns_set_namespace_allowed_libs("ns_no_allowed_libs", dllName), EOK); in dlns_set_namespace_allowed_libs_0200()
|