Home | History | Annotate | Download | only in stdlib

Lines Matching refs:dso

55  * with the given dso handle is unloaded dynamically.  Also used as
58 * http://www.codesourcery.com/cxx-abi/abi.html#dso-dtor
61 __cxa_atexit(void (*func)(void *), void *arg, void *dso)
98 fnp->fn_dso = dso;
109 * object owning 'dso'.
110 * Note: if 'dso' is NULL, then all remaining handlers are called.
113 __cxa_finalize(void *dso)
130 if (dso != NULL && dso != p->fns[n].fn_dso)
131 continue; /* wrong DSO */
145 * with an argument, even if dso is not NULL. Otherwise
151 if (dso != NULL)
165 if (dso == NULL && --call_depth == 0) {