/third_party/musl/libc-test/src/functional/ |
H A D | dlopen_ns.c | 7 const char* dllName = "libdlopen_ns_dso.so"; variable 67 void* handle1 = dlopen_ns(&dlns1, dllName, RTLD_NOW); in dlopen_same_so_twice_by_same_ns() 69 t_error("dlopen_ns(ns=%s, name=%s) failed : %s \n", dlns1.name, dllName, dlerror()); in dlopen_same_so_twice_by_same_ns() 71 void* handle2 = dlopen_ns(&dlns1, dllName, RTLD_NOW); in dlopen_same_so_twice_by_same_ns() 73 t_error("dlopen_ns(ns=%s, name=%s) failed : %s \n", dlns1.name, dllName, dlerror()); in dlopen_same_so_twice_by_same_ns() 76 t_error("dlopen same so(%s) by same ns but handle is different %s \n", dllName); in dlopen_same_so_twice_by_same_ns() 79 t_error("dlclose %s failed : %s \n", dllName, dlerror()); in dlopen_same_so_twice_by_same_ns() 82 t_error("dlclose %s failed : %s \n", dllName, dlerror()); in dlopen_same_so_twice_by_same_ns() 96 void* handle1 = dlopen_ns(&dlns1, dllName, RTLD_NOW); in dlopen_same_so_by_different_ns() 98 t_error("dlopen_ns(ns=%s, name=%s) failed : %s \n", dlns1.name, dllName, dlerro in dlopen_same_so_by_different_ns() [all...] |
/third_party/node/deps/v8/third_party/ittapi/src/ittnotify/ |
H A D | jitprofiling.c | 127 char *dllName = (char*)rcsid; /* !! Just to avoid unused code elimination */ in loadiJIT_Funcs() local 158 dllName = (char*)malloc(sizeof(char) * (dNameLength + 1)); in loadiJIT_Funcs() 159 if(dllName != NULL) in loadiJIT_Funcs() 162 dllName, dNameLength); in loadiJIT_Funcs() 166 m_libHandle = LoadLibraryExA(dllName, in loadiJIT_Funcs() 169 free(dllName); in loadiJIT_Funcs() 177 dllName = (char*)malloc(sizeof(char) * (dNameLength + 1)); in loadiJIT_Funcs() 178 if(dllName != NULL) in loadiJIT_Funcs() 181 dllName, dNameLength); in loadiJIT_Funcs() 185 m_libHandle = LoadLibraryA(dllName); in loadiJIT_Funcs() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/IntelJITEvents/ |
H A 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 in loadiJIT_Funcs() [all...] |
/third_party/musl/libc-test/src/functionalext/dlns/ |
H A D | dlns_special_scene.c | 37 void* handle1 = dlopen_ns(&dlns, dllName, RTLD_LAZY); in dlopen_ns_special_0100() 40 void* handle2 = dlopen_ns(&dlns, dllName, RTLD_LAZY); in dlopen_ns_special_0100() 43 void* handle3 = dlopen_ns(&dlns, dllName, RTLD_LAZY); in dlopen_ns_special_0100() 68 void* handle1 = dlopen_ns(&dlns_no_allowed_libs, dllName, RTLD_LAZY); in dlopen_ns_special_0200() 71 void* handle2 = dlopen_ns(&dlns_normal, dllName, RTLD_LAZY); in dlopen_ns_special_0200() 74 void* handle3 = dlopen_ns(&dlns_wrong_lib_path, dllName, RTLD_LAZY); in dlopen_ns_special_0200() 92 void* handle = dlopen_ns(&dlns, dllName, RTLD_LAZY); in dlopen_ns_sys_path_0100()
|
H A 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_LAZ in dlns_inherit_1000() [all...] |
H A 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()
|
H A D | dlns_dlopen.c | 124 void* handle = dlopen_ns(&dlns, dllName, RTLD_LAZY); in dlns_create_0300() 201 void* handle = dlopen_ns(&dlns, dllName, RTLD_LAZY); in dlopen_ns_0300()
|
H A D | dlns_test.h | 20 static const char* dllName = "libdlopen_ns_dso.so"; variable
|
H A 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()
|
/third_party/lzma/CPP/7zip/Bundles/SFXWin/ |
H A D | SfxWin.cpp | 50 static DWORD GetDllVersion(LPCTSTR dllName)
in GetDllVersion() argument 53 const HINSTANCE hinstDll = LoadLibrary(dllName);
in GetDllVersion()
|