Home | History | Annotate | Download | only in gdb.base

Lines Matching refs:handle

31   void *handle[4];
36 handle[0] = dlmopen (LM_ID_NEWLM, DSO1_NAME, RTLD_LAZY | RTLD_LOCAL);
37 assert (handle[0] != NULL);
39 dlinfo (handle[0], RTLD_DI_LMID, &lmid);
41 handle[1] = dlopen (DSO1_NAME, RTLD_LAZY | RTLD_LOCAL);
42 assert (handle[1] != NULL);
44 handle[2] = dlmopen (LM_ID_NEWLM, DSO1_NAME, RTLD_LAZY | RTLD_LOCAL);
45 assert (handle[2] != NULL);
47 handle[3] = dlmopen (lmid, DSO2_NAME, RTLD_LAZY | RTLD_LOCAL);
48 assert (handle[3] != NULL);
56 fun = dlsym (handle[dl], "inc");
61 dlclose (handle[dl]);