Lines Matching refs:inherit_A
180 Dl_namespace inherit_A, inherit_B;
181 dlns_init(&inherit_A, "inherir_error_lib_A");
183 dlns_create2(&inherit_A, NULL, 0);
187 // inherit_A can't load the so because search path is NULL.
188 void* handle1 = dlopen_ns(&inherit_A, dllName, RTLD_LAZY);
194 // inherit_A can load the so by inherit_B.
195 dlns_inherit(&inherit_A, &inherit_B, dllName);
196 void* handle2 = dlopen_ns(&inherit_A, dllName, RTLD_LAZY);
203 // inherit_A can't load the so by inherit ns if the so isn't in shared libs.
204 dlns_inherit(&inherit_A, &inherit_B, dllName2);
205 void* handle3 = dlopen_ns(&inherit_A, dllName, RTLD_LAZY);