/bionic/libc/kernel/common/linux/ |
D | smp.h | 17 #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
|
D | pci.h | 19 #define PCI_DEVFN(slot,func) ((((slot) & 0x1f) << 3) | ((func) & 0x07)) argument
|
D | interrupt.h | 103 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
|
D | workqueue.h | 24 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; …
|
D | init.h | 101 #define __setup(str, func) argument
|
/bionic/libc/stdlib/ |
D | assert.c | 47 __assert2(const char *file, int line, const char *func, const char *failedexpr) in __assert2() argument 51 failedexpr, file, line, func); in __assert2()
|
D | atexit.c | 61 __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/ |
D | libc_init_common.c | 114 void (*func)() = (void (*)) fini_array[--count]; in __libc_fini() local 117 if ((size_t)func == minus1) in __libc_fini() 120 func(); in __libc_fini()
|
D | malloc_debug_leak.c | 333 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()
|
D | pthread.c | 199 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/ |
D | ev_timers.c | 59 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 …]
|
D | eventlib_p.h | 82 evConnFunc func; member 118 evFileFunc func; member 130 evStreamFunc func; member 149 evTimerFunc func; member 158 evWaitFunc func; member
|
D | ev_streams.c | 62 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/ |
D | libthread_db.c | 207 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/ |
D | eventlib.h | 139 evStreamFunc func, void *, evStreamID *)); 141 evStreamFunc func, void *, evStreamID *));
|
/bionic/libthread_db/include/ |
D | thread_db.h | 149 extern td_err_e td_ta_thr_iter(td_thragent_t const * agent, td_thr_iter_f * func, void * cookie,
|
/bionic/linker/ |
D | linker.c | 1585 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/ |
D | cpp.py | 1415 func, params = e[1] 1419 return (op, (func, params2))
|