Home
last modified time | relevance | path

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

/bionic/libc/kernel/common/linux/
Dsmp.h17 #define smp_call_function(func,info,retry,wait) (up_smp_call_function()) argument
18 #define on_each_cpu(func,info,retry,wait) ({ local_irq_disable(); func(info); local_irq_ena… argument
Dpci.h19 #define PCI_DEVFN(slot,func) ((((slot) & 0x1f) << 3) | ((func) & 0x07)) argument
Dinterrupt.h103 void (*func)(unsigned long); member
107 #define DECLARE_TASKLET(name, func, data) struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(0), argument
109 #define DECLARE_TASKLET_DISABLED(name, func, data) struct tasklet_struct name = { NULL, 0, ATOMIC_… argument
Dworkqueue.h24 void (*func)(void *); member
34 #define __WORK_INITIALIZER(n, f, d) { .entry = { &(n).entry, &(n).entry }, .func = (f), .data…
38 #define PREPARE_WORK(_work, _func, _data) do { (_work)->func = _func; (_work)->data = _data; …
Dinit.h101 #define __setup(str, func) argument
/bionic/libc/stdlib/
Dassert.c47 __assert2(const char *file, int line, const char *func, const char *failedexpr) in __assert2() argument
51 failedexpr, file, line, func); in __assert2()
Datexit.c61 __cxa_atexit(void (*func)(void *), void *arg, void *dso) in __cxa_atexit()
96 fnp->fn_ptr.cxa_func = func; in __cxa_atexit()
112 atexit(void (*func)(void)) in atexit()
114 return (__cxa_atexit((void (*)(void *))func, NULL, NULL)); in atexit()
187 __atexit_register_cleanup(void (*func)(void)) in __atexit_register_cleanup()
214 p->fns[0].fn_ptr.std_func = func; in __atexit_register_cleanup()
/bionic/libc/bionic/
Dlibc_init_common.c114 void (*func)() = (void (*)) fini_array[--count]; in __libc_fini() local
117 if ((size_t)func == minus1) in __libc_fini()
120 func(); in __libc_fini()
Dmalloc_debug_leak.c333 const char* func) in chk_mem_check() argument
347 func, mem, CHK_SENTINEL_HEAD_SIZE-i); in chk_mem_check()
363 func, buffer, bytes, i+1); in chk_mem_check()
Dpthread.c199 void __thread_entry(int (*func)(void*), void *arg, void **tls) in __thread_entry()
217 pthread_exit( (void*)func(arg) ); in __thread_entry()
/bionic/libc/netbsd/isc/
Dev_timers.c59 evTimerFunc func; member
176 evTimerFunc func, in evSetTimer() argument
186 ctx, func, uap, in evSetTimer()
213 id->func = func; in evSetTimer()
293 evTimerFunc func, in evResetTimer() argument
325 timer->func = func; in evResetTimer()
352 evTimerFunc func, in evSetIdleTimer() argument
362 tt->func = func; in evSetIdleTimer()
391 evTimerFunc func, in evResetIdleTimer() argument
399 tt->func = func; in evResetIdleTimer()
[all …]
Deventlib_p.h82 evConnFunc func; member
118 evFileFunc func; member
130 evStreamFunc func; member
149 evTimerFunc func; member
158 evWaitFunc func; member
Dev_streams.c62 evStreamFunc func, void *uap, evStreamID *id) in evWrite() argument
69 new->func = func; in evWrite()
96 evStreamFunc func, void *uap, evStreamID *id) in evRead() argument
103 new->func = func; in evRead()
/bionic/libthread_db/
Dlibthread_db.c207 td_ta_thr_iter(td_thragent_t const * agent, td_thr_iter_f * func, void * cookie, in td_ta_thr_iter() argument
228 if (func(&handle, cookie) != 0) { in td_ta_thr_iter()
/bionic/libc/private/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/linker/
Dlinker.c1585 void (*func)() = (void (*)()) *ctor; in call_array() local
1587 if(((int) func == 0) || ((int) func == -1)) continue; in call_array()
1588 TRACE("[ %5d Calling func @ 0x%08x ]\n", pid, (unsigned)func); in call_array()
1589 func(); in call_array()
/bionic/libc/kernel/tools/
Dcpp.py1415 func, params = e[1]
1419 return (op, (func, params2))