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

/system/tools/aidl/tests/java_app/src/android/aidl/tests/
H A DSimpleParcelable.java44 public boolean equals(Object o) { method in class:SimpleParcelable
53 (mName != null && !mName.equals(p.mName))) {
/system/update_engine/payload_generator/
H A Dblock_mapping.cc88 bool equals = false; local
89 if (!existing_block.CompareData(block_data, &equals))
91 if (equals)
114 bool* equals) {
116 *equals = block_data == other_block;
126 *equals = blob == other_block;
113 CompareData(const brillo::Blob& other_block, bool* equals) argument
/system/core/libcutils/
H A Dhashmap.c38 bool (*equals)(void* keyA, void* keyB); member in struct:Hashmap
44 int (*hash)(void* key), bool (*equals)(void* keyA, void* keyB)) {
46 assert(equals != NULL);
70 map->equals = equals;
186 bool (*equals)(void*, void*)) {
193 return equals(keyA, keyB);
217 if (equalKeys(current->key, current->hash, key, hash, map->equals)) {
234 if (equalKeys(entry->key, entry->hash, key, hash, map->equals)) {
249 if (equalKeys(entry->key, entry->hash, key, hash, map->equals)) {
185 equalKeys(void* keyA, int hashA, void* keyB, int hashB, bool (*equals)(void*, void*)) argument
[all...]

Completed in 284 milliseconds