Searched refs:equals (Results 1 – 8 of 8) sorted by relevance
/system/core/libcutils/ |
D | hashmap.c | 38 bool (*equals)(void* keyA, void* keyB); member 44 int (*hash)(void* key), bool (*equals)(void* keyA, void* keyB)) { in hashmapCreate() 46 assert(equals != NULL); in hashmapCreate() 70 map->equals = equals; in hashmapCreate() 179 bool (*equals)(void*, void*)) { in equalKeys() 186 return equals(keyA, keyB); in equalKeys() 210 if (equalKeys(current->key, current->hash, key, hash, map->equals)) { in hashmapPut() 227 if (equalKeys(entry->key, entry->hash, key, hash, map->equals)) { in hashmapGet() 242 if (equalKeys(entry->key, entry->hash, key, hash, map->equals)) { in hashmapContainsKey() 275 if (equalKeys(current->key, current->hash, key, hash, map->equals)) { in hashmapMemoize() [all …]
|
/system/core/libmincrypt/tools/ |
D | DumpPublicKey.java | 53 if (pubexp.equals(BigInteger.valueOf(3))) { in checkRSA() 55 } else if (pubexp.equals(BigInteger.valueOf(65537))) { in checkRSA() 245 if ("SHA1withRSA".equals(sigAlg) || "MD5withRSA".equals(sigAlg)) { in main() 251 } else if ("SHA256withRSA".equals(sigAlg) || "SHA256withECDSA".equals(sigAlg)) { in main()
|
/system/core/include/cutils/ |
D | hashmap.h | 42 int (*hash)(void* key), bool (*equals)(void* keyA, void* keyB));
|
/system/extras/verity/ |
D | VeritySigner.java | 44 if (args.length > 3 && "-verify".equals(args[3])) { in main()
|
D | BootSignature.java | 189 if (!Arrays.equals(Arrays.copyOfRange(data, 0, 8), in getSignableImageSize() 293 if ("-verify".equals(args[0])) { in main()
|
D | KeystoreSigner.java | 178 if ("-verify".equals(args[0])) { in main()
|
D | Utils.java | 212 if ("RSA".equals(key.getAlgorithm())) { in getSignatureAlgorithm()
|
/system/core/init/ |
D | init_parser.c | 547 const char* equals = strchr(name, '='); in queue_all_property_triggers() local 548 if (equals) { in queue_all_property_triggers() 551 int length = equals - name; in queue_all_property_triggers() 561 if (ret > 0 && (!strcmp(equals + 1, value) || in queue_all_property_triggers() 562 !strcmp(equals + 1, "*"))) { in queue_all_property_triggers()
|