Home | History | Annotate | Download | only in stdlib

Lines Matching refs:dso

55 extern void __unregister_atfork(void* dso);
70 * with the given dso handle is unloaded dynamically. Also used as
73 * http://www.codesourcery.com/cxx-abi/abi.html#dso-dtor
76 __cxa_atexit(void (*func)(void *), void *arg, void *dso)
111 fnp->fn_dso = dso;
123 * object owning 'dso'.
124 * Note: if 'dso' is NULL, then all remaining handlers are called.
127 __cxa_finalize(void *dso)
143 if (dso != NULL && dso != p->fns[n].fn_dso)
144 continue; /* wrong DSO */
170 if (dso == NULL && call_depth == 0) {
180 /* BEGIN android-changed: call __unregister_atfork if dso is not null */
181 if (dso != NULL) {
182 __unregister_atfork(dso);