Home
last modified time | relevance | path

Searched refs:wrapped_arg (Results 1 – 1 of 1) sorted by relevance

/frameworks/libs/native_bridge_support/android_api/libc/
D__cxa_thread_atexit_impl.cpp34 WrappedArg* wrapped_arg = static_cast<WrappedArg*>(arg); in WrappedFn() local
35 WrappedArg::thread_atexit_fn_t origin_fn = wrapped_arg->fn; in WrappedFn()
36 void* origin_arg = wrapped_arg->arg; in WrappedFn()
37 void* dso_handle = wrapped_arg->dso_handle; in WrappedFn()
39 delete wrapped_arg; in WrappedFn()
49 WrappedArg* wrapped_arg = new WrappedArg(); in __cxa_thread_atexit_impl() local
50 wrapped_arg->fn = func; in __cxa_thread_atexit_impl()
51 wrapped_arg->arg = arg; in __cxa_thread_atexit_impl()
52 wrapped_arg->dso_handle = dso_handle; in __cxa_thread_atexit_impl()
58 return native_bridge___cxa_thread_atexit_impl(WrappedFn, wrapped_arg, dso_handle); in __cxa_thread_atexit_impl()