Home
last modified time | relevance | path

Searched refs:dictIsRehashing (Results 1 – 3 of 3) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Ddict.c190 if (!dictIsRehashing(d)) return 0; in dictRehash()
396 if (!dictIsRehashing(d)) break; in dictGenericDelete()
492 if (!dictIsRehashing(d)) return NULL; in dictFind()
618 if (dictIsRehashing(d)) { in dictGetRandomKey()
684 if (dictIsRehashing(d)) in dictGetSomeKeys()
690 tables = dictIsRehashing(d) ? 2 : 1; in dictGetSomeKeys()
850 if (!dictIsRehashing(d)) { in dictScan()
925 if (dictIsRehashing(d)) return DICT_OK; in _dictExpandIfNeeded()
983 if (!dictIsRehashing(d)) break; in _dictKeyIndex()
1104 if (dictIsRehashing(d) && bufsize > 0) { in dictGetStats()
[all …]
H A Ddict.h148 #define dictIsRehashing(d) ((d)->rehashidx != -1) macro
H A Dserver.c762 if (dictIsRehashing(server.db[dbid].dict)) { in incrementallyRehash()
767 if (dictIsRehashing(server.db[dbid].expires)) { in incrementallyRehash()