Home
last modified time | relevance | path

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

/external/libcxx/include/
D__functional_03100 template<class _FD, class _Alloc, class _FB> class __func;
103 class __func<_Fp, _Alloc, _Rp()>
108 explicit __func(_Fp __f) : __f_(_VSTD::move(__f)) {}
109 explicit __func(_Fp __f, _Alloc __a) : __f_(_VSTD::move(__f), _VSTD::move(__a)) {}
123 __func<_Fp, _Alloc, _Rp()>::__clone() const
126 typedef typename __rebind_alloc_helper<__alloc_traits, __func>::type _Ap;
129 unique_ptr<__func, _Dp> __hold(__a.allocate(1), _Dp(__a, 1));
130 ::new (__hold.get()) __func(__f_.first(), _Alloc(__a));
136 __func<_Fp, _Alloc, _Rp()>::__clone(__base<_Rp()>* __p) const
138 ::new (__p) __func(__f_.first(), __f_.second());
[all …]
D__threading_support168 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *),
320 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *),
323 return pthread_create(__t, 0, __func, __arg);
524 void *(*__func)(void *);
533 auto *__func = __data->__func;
536 return static_cast<unsigned>(reinterpret_cast<uintptr_t>(__func(__arg)));
543 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *),
547 __data->__func = __func;
Dmutex578 call_once(once_flag& __flag, _Callable&& __func, _Args&&... __args)
583 _Gp __f(_VSTD::forward<_Callable>(__func), _VSTD::forward<_Args>(__args)...);
594 call_once(once_flag& __flag, _Callable& __func)
598 __call_once_param<_Callable> __p(__func);
606 call_once(once_flag& __flag, const _Callable& __func)
610 __call_once_param<const _Callable> __p(__func);
Dfunctional1473 template<class _FD, class _Alloc, class _FB> class __func;
1476 class __func<_Fp, _Alloc, _Rp(_ArgTypes...)>
1482 explicit __func(_Fp&& __f)
1486 explicit __func(const _Fp& __f, const _Alloc& __a)
1491 explicit __func(const _Fp& __f, _Alloc&& __a)
1496 explicit __func(_Fp&& __f, _Alloc&& __a)
1512 __func<_Fp, _Alloc, _Rp(_ArgTypes...)>::__clone() const
1515 typedef typename __rebind_alloc_helper<__alloc_traits, __func>::type _Ap;
1518 unique_ptr<__func, _Dp> __hold(__a.allocate(1), _Dp(__a, 1));
1519 ::new (__hold.get()) __func(__f_.first(), _Alloc(__a));
[all …]
D__debug91 bool __libcpp_set_debug_function(__libcpp_debug_function_type __func);
/external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/userInteraction/
DDynamicCallHelper.py64 self.__func = func
74 return self.__func(*self.__args)
/external/e2fsprogs/e2fsck/
Dmtrace.h209 extern void mcheck __P ((void (*__func) __P ((void))));
/external/python/cpython2/Lib/test/
Dtest_signal.py30 def ignoring_eintr(__func, *args, **kwargs): argument
32 return __func(*args, **kwargs)
/external/libcxx/src/
Ddebug.cpp33 bool __libcpp_set_debug_function(__libcpp_debug_function_type __func) { in __libcpp_set_debug_function() argument
34 __libcpp_debug_function = __func; in __libcpp_set_debug_function()
/external/valgrind/perf/
Dtest_input_for_tinycc.c723 extern int atexit (void (*__func) (void)) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__…
729 extern int on_exit (void (*__func) (int __status, void *__arg), void *__arg)