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

/haiku/src/kits/tracker/
H A DIconCache.h250 static size_t Hash(const TypeAndSignature& typeAndSignature);
254 bool operator==(const TypeAndSignature& typeAndSignature) const;
H A DIconCache.cpp1570 SharedCacheEntry::Hash(const TypeAndSignature& typeAndSignature) argument
1572 size_t hash = HashString(typeAndSignature.type, 0);
1573 if (typeAndSignature.signature != NULL
1574 && *typeAndSignature.signature != '\0')
1575 hash = HashString(typeAndSignature.signature, hash);
1589 SharedCacheEntry::operator==(const TypeAndSignature& typeAndSignature) const
1591 return fFileType == typeAndSignature.type
1592 && fAppSignature == typeAndSignature.signature;

Completed in 30 milliseconds