Home | History | Annotate | Download | only in libcutils

Lines Matching full:equals

38     bool (*equals)(void* keyA, void* keyB);
44 int (*hash)(void* key), bool (*equals)(void* keyA, void* keyB)) {
46 assert(equals != NULL);
70 map->equals = equals;
179 bool (*equals)(void*, void*)) {
186 return equals(keyA, keyB);
210 if (equalKeys(current->key, current->hash, key, hash, map->equals)) {
227 if (equalKeys(entry->key, entry->hash, key, hash, map->equals)) {
242 if (equalKeys(entry->key, entry->hash, key, hash, map->equals)) {
275 if (equalKeys(current->key, current->hash, key, hash, map->equals)) {
292 if (equalKeys(current->key, current->hash, key, hash, map->equals)) {