Searched defs:func (Results 1 - 7 of 7) sorted by relevance

/development/ndk/platforms/android-3/arch-arm/src/
H A Datexit.h32 int atexit(void (*func)(void)) argument
34 return (__cxa_atexit((void (*)(void *))func, (void *)0, &__dso_handle));
/development/ndk/platforms/android-9/arch-mips/src/
H A Datexit.h30 extern int __cxa_atexit(void (*func)(void *), void *arg, void *dso);
33 int atexit(void (*func)(void)) argument
35 return (__cxa_atexit((void (*)(void *))func, (void *)0, &__dso_handle));
/development/ndk/platforms/android-9/arch-x86/src/
H A Datexit.h32 int atexit(void (*func)(void)) argument
34 return (__cxa_atexit((void (*)(void *))func, (void *)0, &__dso_handle));
/development/ndk/platforms/android-9/arch-x86_64/src/
H A Datexit.h32 int atexit(void (*func)(void)) argument
34 return (__cxa_atexit((void (*)(void *))func, (void *)0, &__dso_handle));
/development/ndk/platforms/android-3/include/linux/
H A Dworkqueue.h24 void (*func)(void *); member in struct:work_struct
34 #define __WORK_INITIALIZER(n, f, d) { .entry = { &(n).entry, &(n).entry }, .func = (f), .data = (d), .timer = TIMER_INITIALIZER(NULL, 0, 0), }
38 #define PREPARE_WORK(_work, _func, _data) do { (_work)->func = _func; (_work)->data = _data; } while (0)
H A Dinterrupt.h103 void (*func)(unsigned long); member in struct:tasklet_struct
107 #define DECLARE_TASKLET(name, func, data) struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(0), func, data }
109 #define DECLARE_TASKLET_DISABLED(name, func, data) struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(1), func, data }
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
H A DMatrixTrackingGL.java85 public void glAlphaFunc(int func, float ref) { argument
86 mgl.glAlphaFunc(func, ref);
89 public void glAlphaFuncx(int func, int ref) { argument
90 mgl.glAlphaFuncx(func, ref);
184 public void glDepthFunc(int func) { argument
185 mgl.glDepthFunc(func);
581 public void glStencilFunc(int func, int ref, int mask) { argument
582 mgl.glStencilFunc(func, ref, mask);

Completed in 103 milliseconds