Searched refs:func (Results 1 - 9 of 9) sorted by relevance

/bootable/recovery/minadbd/
H A Dfdevent.h39 fdevent *fdevent_create(int fd, fd_func func, void *arg);
48 void fdevent_install(fdevent *fde, int fd, fd_func func, void *arg);
78 fd_func func; member in struct:fdevent
H A Dservices.c33 void (*func)(int fd, void *cookie); member in struct:stinfo
42 sti->func(sti->fd, sti->cookie);
98 static int create_service_thread(void (*func)(int, void *), void *cookie) argument
111 sti->func = func;
H A Dsysdeps.h69 static __inline__ int adb_thread_create( adb_thread_t *thread, adb_thread_func_t func, void* arg) argument
71 thread->tid = _beginthread( (win_thread_func_t)func, 0, arg );
185 fdevent *fdevent_create(int fd, fd_func func, void *arg);
187 void fdevent_install(fdevent *fde, int fd, fd_func func, void *arg);
204 fd_func func; member in struct:fdevent
H A Dfdevent.c514 fde->func(fde->fd, events, fde->arg);
575 fdevent *fdevent_create(int fd, fd_func func, void *arg) argument
579 fdevent_install(fde, fd, func, arg);
593 void fdevent_install(fdevent *fde, int fd, fd_func func, void *arg) argument
599 fde->func = func;
H A Dtransport.c91 dis->func( dis->opaque, t );
98 dump_packet(const char* name, const char* func, apacket* p) argument
131 name, func, cmd, arg0, arg1, len);
H A Dadb.h140 void (*func)(void* opaque, atransport* t); member in struct:adisconnect
243 /* initialize a transport object's func pointers and state */
H A Dsockets.c494 dis->func = remote_socket_disconnect;
/bootable/recovery/minzip/
H A DHash.h130 * Execute "func" on every entry in the hash table.
132 * If "func" returns a nonzero value, terminate early and return the value.
134 int mzHashForeach(HashTable* pHashTable, HashForeachFunc func, void* arg);
H A DHash.c88 // call free func then nuke entry
290 * If "func" returns a nonzero value, terminate early and return the value.
292 int mzHashForeach(HashTable* pHashTable, HashForeachFunc func, void* arg) argument
300 val = (*func)(pEnt->data, arg);

Completed in 1008 milliseconds