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

/frameworks/base/tools/aapt/
H A Dqsort_r_compat.c32 void qsort_r_compat(void* base, size_t nel, size_t width, void* thunk, argument
34 qsort_r(base, nel, width, thunk, compar);
40 * GNU qsort_r parameter order places the thunk parameter last.
44 void* thunk; member in struct:compar_data
50 return compar_data->compar(compar_data->thunk, a, b);
53 void qsort_r_compat(void* base, size_t nel, size_t width, void* thunk, argument
56 compar_data.thunk = thunk;
64 * Emulate qsort_r using thread local storage to access the thunk data.
72 void* thunk; member in struct:compar_data
81 qsort_r_compat(void* base, size_t nel, size_t width, void* thunk, int (*compar)(void*, const void* , const void*)) argument
[all...]
H A Dqsort_r_compat.h32 void qsort_r_compat(void* base, size_t nel, size_t width, void* thunk,

Completed in 44 milliseconds