Home
last modified time | relevance | path

Searched refs:DICT_ERR (Results 1 – 6 of 6) sorted by relevance

/f-stack/app/redis-5.0.5/deps/hiredis/
H A Ddict.c95 return DICT_ERR; in dictExpand()
142 return DICT_ERR; in dictAdd()
187 return DICT_ERR; in dictDelete()
209 return DICT_ERR; /* not found */ in dictDelete()
325 if (_dictExpandIfNeeded(ht) == DICT_ERR) in _dictKeyIndex()
H A Ddict.h40 #define DICT_ERR 1 macro
/f-stack/app/redis-5.0.5/src/
H A Ddict.c139 if (!dict_can_resize || dictIsRehashing(d)) return DICT_ERR; in dictResize()
152 return DICT_ERR; in dictExpand()
158 if (realsize == d->ht[0].size) return DICT_ERR; in dictExpand()
269 if (!entry) return DICT_ERR; in dictAdd()
404 return dictGenericDelete(ht,key,0) ? DICT_OK : DICT_ERR; in dictDelete()
970 if (_dictExpandIfNeeded(d) == DICT_ERR) in _dictKeyIndex()
H A Ddict.h42 #define DICT_ERR 1 macro
H A Dt_set.c688 int retval = DICT_ERR; in srandmemberWithCountCommand()
H A Drdb.c1546 if (ret == DICT_ERR) { in rdbLoadObject()