Home
last modified time | relevance | path

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

/external/libcxxabi/src/
Dcxa_thread_atexit.cpp106 _LIBCXXABI_FUNC_VIS int __cxa_thread_atexit(Dtor dtor, void* obj, void* dso_symbol) throw() { in __cxa_thread_atexit() argument
108 return __cxa_thread_atexit_impl(dtor, obj, dso_symbol); in __cxa_thread_atexit()
111 return __cxa_thread_atexit_impl(dtor, obj, dso_symbol); in __cxa_thread_atexit()
/external/llvm-project/libcxxabi/src/
Dcxa_thread_atexit.cpp111 _LIBCXXABI_FUNC_VIS int __cxa_thread_atexit(Dtor dtor, void* obj, void* dso_symbol) throw() { in __cxa_thread_atexit() argument
113 return __cxa_thread_atexit_impl(dtor, obj, dso_symbol); in __cxa_thread_atexit()
116 return __cxa_thread_atexit_impl(dtor, obj, dso_symbol); in __cxa_thread_atexit()
/external/llvm-project/libcxxabi/test/
Dcxa_thread_atexit_test.pass.cpp18 void *dso_symbol) { in __cxa_thread_atexit_impl() argument
21 assert(dso_symbol == reinterpret_cast<void *>(3)); in __cxa_thread_atexit_impl()
/external/libcxxabi/test/
Dcxa_thread_atexit_test.pass.cpp19 void *dso_symbol) { in __cxa_thread_atexit_impl() argument
22 assert(dso_symbol == reinterpret_cast<void *>(3)); in __cxa_thread_atexit_impl()
/external/llvm-project/compiler-rt/test/cfi/
Dcross-dso-diagnostic.cpp22 void* dso_symbol() { return new S1(); } in dso_symbol() function
/external/tensorflow/tensorflow/c/experimental/filesystem/
Dmodular_filesystem.cc469 void* dso_symbol; in RegisterFilesystemPlugin() local
471 env->GetSymbolFromLibrary(dso_handle, "TF_InitPlugin", &dso_symbol)); in RegisterFilesystemPlugin()
477 reinterpret_cast<int (*)(TF_FilesystemPluginInfo*)>(dso_symbol); in RegisterFilesystemPlugin()
/external/tensorflow/tensorflow/c/experimental/stream_executor/
Dstream_executor.cc750 void* dso_symbol; in InitStreamExecutorPlugin() local
752 env->GetSymbolFromLibrary(dso_handle, "SE_InitPlugin", &dso_symbol)); in InitStreamExecutorPlugin()
755 auto init_fn = reinterpret_cast<SEInitPluginFn>(dso_symbol); in InitStreamExecutorPlugin()