Home | History | Annotate | Download | only in libcutils

Lines Matching defs:thunk

26 void qsort_r_compat(void* base, size_t nel, size_t width, void* thunk,
28 qsort_r(base, nel, width, thunk, compar);
34 * GNU qsort_r parameter order places the thunk parameter last.
38 void* thunk;
44 return compar_data->compar(compar_data->thunk, a, b);
47 void qsort_r_compat(void* base, size_t nel, size_t width, void* thunk,
50 compar_data.thunk = thunk;
58 * Emulate qsort_r using thread local storage to access the thunk data.
66 void* thunk;
72 return compar_data->compar(compar_data->thunk, a, b);
75 void qsort_r_compat(void* base, size_t nel, size_t width, void* thunk,
78 compar_data.thunk = thunk;