Home | History | Annotate | Download | only in ld.elf_so

Lines Matching defs:def

46 	void *def, *use;
54 ATF_REQUIRE_DL(def = dlopen(libdef, 0));
55 ATF_REQUIRE_DL(fdef = dlsym(def, "fdef"));
62 ATF_REQUIRE_DL(def = dlopen(libdef, 0));
67 ATF_REQUIRE_DL(def = dlopen(libdef, 0));
71 ATF_REQUIRE_DL(def = dlopen(libdef, RTLD_NOLOAD));
72 lazy: ATF_REQUIRE_DL(fdef = dlsym(def, "fdef"));
88 " loading static use than dynamic def");
99 " loading static use then dynamic def with RTLD_NOLOAD");
111 " loading dynamic def then static use eagerly");
115 void *def;
118 ATF_REQUIRE_DL(def = dlopen("libh_def_dynamic.so", 0));
119 ATF_REQUIRE_DL(fdef = dlsym(def, "fdef"));
129 " loading dynamic def then static use lazily");
141 " loading def then use eagerly");
153 " loading def then use lazyly");
165 " loading use then def");
177 " loading use then def with RTLD_NOLOAD");
189 " loading dynamic use then static def");
200 " loading dynamic use then static def with RTLD_NOLOAD");
212 " loading static def then dynamic use eagerly");
224 " loading static def then dynamic use lazyly");
236 " loading def then use eagerly");
248 " loading def then use lazyly");
260 " loading use then def");
272 " loading use then def with RTLD_NOLOAD");
394 void *def, *use;
409 ATF_REQUIRE_DL(def = dlopen("libh_def_dynamic.so", 0));
410 ATF_REQUIRE_EQ_MSG(dlclose(def), 0,
411 "dlclose(def): %s", dlerror());
417 ATF_REQUIRE_DL(def = dlopen("libh_def_dynamic.so", 0));
418 ATF_REQUIRE_DL(fdef = dlsym(def, "fdef"));