Searched refs:callback (Results 1 - 8 of 8) sorted by relevance

/bionic/libc/bionic/
H A Dbionic_netlink.h45 bool ReadResponses(void callback(void*, nlmsghdr*), void* context);
H A Dbionic_netlink.cpp79 bool NetlinkConnection::ReadResponses(void callback(void*, nlmsghdr*), void* context) { argument
80 // Read through all the responses, handing interesting ones to the callback.
87 callback(context, hdr);
H A Dposix_timers.cpp65 void (*callback)(sigval_t); member in struct:PosixTimer
67 atomic_bool deleted; // Set when the timer is deleted, to prevent further calling of callback.
90 // This signal was sent because a timer fired, so call the callback.
92 // All events to the callback will be ignored when the timer is deleted.
96 timer->callback(timer->callback_argument);
131 timer->callback = evp->sigev_notify_function;
136 if (timer->callback == NULL) {
213 // period (like below 1ms), the kernel may continue to send events to the callback thread
H A Dmalloc_common.cpp423 // Calls callback for every allocation in the anonymous heap mapping
426 void (*callback)(uintptr_t base, size_t size, void* arg), void* arg) {
429 return _iterate(base, size, callback, arg);
431 return Malloc(iterate)(base, size, callback, arg);
/bionic/libc/dns/net/
H A Dnsdispatch.c89 return (disp_tab[curdisp].callback);
/bionic/libc/include/
H A Dnsswitch.h102 * ns_dtab `callback' function signature.
112 nss_method callback; member in struct:__anon50
162 * tuples to the nss_method and associated callback data. Effectively,
/bionic/libc/kernel/uapi/linux/
H A Disdn.h134 int callback; member in struct:__anon483
/bionic/libc/malloc_debug/
H A Dmalloc_debug.cpp81 void (*callback)(uintptr_t base, size_t size, void* arg), void* arg);
602 void (*callback)(uintptr_t base, size_t size, void* arg), void* arg) {
606 decltype(callback) callback; member in struct:iterate_ctx
608 } ctx = { callback, arg };
619 ctx->callback(reinterpret_cast<uintptr_t>(g_debug->GetPointer(header)),
626 ctx->callback(base, size, ctx->arg);

Completed in 141 milliseconds