Home
last modified time | relevance | path

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

/bionic/libc/arch-mips/bionic/
Datexit.h30 extern int __cxa_atexit(void (*func)(void *), void *arg, void *dso);
33 int atexit(void (*func)(void)) in atexit()
35 return (__cxa_atexit((void (*)(void *))func, (void *)0, &__dso_handle)); in atexit()
/bionic/libc/arch-arm/bionic/
Datexit_legacy.c39 extern int __cxa_atexit(void (*func)(void *), void *arg, void *dso);
45 atexit(void (*func)(void)) in atexit()
58 return (__cxa_atexit((void (*)(void *))func, NULL, NULL)); in atexit()
Datexit.h32 int atexit(void (*func)(void)) in atexit()
34 return (__cxa_atexit((void (*)(void *))func, (void *)0, &__dso_handle)); in atexit()
/bionic/libc/kernel/common/linux/
Dsmp.h24 #define smp_call_function(func,info,retry,wait) (up_smp_call_function()) argument
25 #define on_each_cpu(func,info,retry,wait) ({ local_irq_disable(); func(info); local_irq_ena… argument
Dinterrupt.h115 void (*func)(unsigned long); member
119 #define DECLARE_TASKLET(name, func, data) struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(0), argument
120 #define DECLARE_TASKLET_DISABLED(name, func, data) struct tasklet_struct name = { NULL, 0, ATOMIC_… argument
Dpci.h24 #define PCI_DEVFN(slot,func) ((((slot) & 0x1f) << 3) | ((func) & 0x07)) argument
Dworkqueue.h30 void (*func)(void *); member
40 #define __WORK_INITIALIZER(n, f, d) { .entry = { &(n).entry, &(n).entry }, .func = (f), .data…
42 #define PREPARE_WORK(_work, _func, _data) do { (_work)->func = _func; (_work)->data = _data; …
Dinit.h92 #define __setup(str, func) argument
/bionic/libc/arch-x86/bionic/
Datexit.h32 int atexit(void (*func)(void)) in atexit()
34 return (__cxa_atexit((void (*)(void *))func, (void *)0, &__dso_handle)); in atexit()
/bionic/libc/upstream-netbsd/libc/isc/
Dev_timers.c63 evTimerFunc func; member
187 evTimerFunc func, in evSetTimer() argument
198 ctx, func, uap, in evSetTimer()
225 id->func = func; in evSetTimer()
305 evTimerFunc func, in evResetTimer() argument
337 timer->func = func; in evResetTimer()
364 evTimerFunc func, in evSetIdleTimer() argument
374 tt->func = func; in evSetIdleTimer()
403 evTimerFunc func, in evResetIdleTimer() argument
411 tt->func = func; in evResetIdleTimer()
[all …]
Deventlib_p.h79 evConnFunc func; member
115 evFileFunc func; member
127 evStreamFunc func; member
146 evTimerFunc func; member
155 evWaitFunc func; member
Dev_streams.c68 evStreamFunc func, void *uap, evStreamID *id) in evWrite() argument
75 new->func = func; in evWrite()
102 evStreamFunc func, void *uap, evStreamID *id) in evRead() argument
109 new->func = func; in evRead()
/bionic/libc/bionic/
Dlibc_init_common.cpp157 void (*func)() = (void (*)()) fini_array[--count]; in __libc_fini() local
160 if ((size_t)func == minus1) { in __libc_fini()
164 func(); in __libc_fini()
Dmalloc_debug_common.cpp296 void InitMallocFunction(void* malloc_impl_handler, FunctionType* func, const char* prefix, const ch… in InitMallocFunction() argument
299 *func = reinterpret_cast<FunctionType>(dlsym(malloc_impl_handler, symbol)); in InitMallocFunction()
300 if (*func == NULL) { in InitMallocFunction()
Dpthread_create.cpp88 extern "C" void __thread_entry(void* (*func)(void*), void* arg, void** tls) { in __thread_entry()
105 void* result = func(arg); in __thread_entry()
/bionic/libc/stdlib/
Datexit.c62 __cxa_atexit(void (*func)(void *), void *arg, void *dso) in __cxa_atexit()
97 fnp->fn_ptr.cxa_func = func; in __cxa_atexit()
/bionic/libthread_db/
Dlibthread_db.c216 td_ta_thr_iter(td_thragent_t const * agent, td_thr_iter_f * func, void * cookie, in td_ta_thr_iter() argument
237 if (func(&handle, cookie) != 0) { in td_ta_thr_iter()
/bionic/libc/upstream-netbsd/libc/include/isc/
Deventlib.h139 evStreamFunc func, void *, evStreamID *));
141 evStreamFunc func, void *, evStreamID *));
/bionic/libthread_db/include/
Dthread_db.h149 extern td_err_e td_ta_thr_iter(td_thragent_t const * agent, td_thr_iter_f * func, void * cookie,
/bionic/libc/kernel/tools/
Dcpp.py1415 func, params = e[1]
1419 return (op, (func, params2))