HomeSort by relevance Sort by last modified time
    Searched defs:compar_r_t (Results 1 - 2 of 2) sorted by null

  /system/core/libutils/include/utils/
VectorImpl.h 94 typedef int (*compar_r_t)(const void* lhs, const void* rhs, void* state); typedef in class:android::VectorImpl
96 status_t sort(compar_r_t cmp, void* state);
Vector.h 184 typedef int (*compar_r_t)(const TYPE* lhs, const TYPE* rhs, void* state); typedef in class:android::Vector
187 inline status_t sort(compar_r_t cmp, void* state);
390 status_t Vector<TYPE>::sort(Vector<TYPE>::compar_r_t cmp, void* state) {
391 return VectorImpl::sort(reinterpret_cast<VectorImpl::compar_r_t>(cmp), state);

Completed in 907 milliseconds