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

/system/core/libcutils/
H A Dqsort_r_compat.c26 void qsort_r_compat(void* base, size_t nel, size_t width, void* thunk, argument
28 qsort_r(base, nel, width, thunk, compar);
34 * GNU qsort_r parameter order places the thunk parameter last.
38 void* thunk; member in struct:compar_data
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, argument
50 compar_data.thunk = thunk;
58 * Emulate qsort_r using thread local storage to access the thunk data.
66 void* thunk; member in struct:compar_data
75 qsort_r_compat(void* base, size_t nel, size_t width, void* thunk, int (*compar)(void*, const void* , const void*)) argument
[all...]

Completed in 356 milliseconds