Lines Matching refs:open_slots
4257 dict *open_slots = NULL; in clusterManagerCheckCluster() local
4261 if (open_slots == NULL) in clusterManagerCheckCluster()
4262 open_slots = dictCreate(&clusterManagerDictType, NULL); in clusterManagerCheckCluster()
4271 dictAdd(open_slots, slot, sdsdup(n->migrating[i + 1])); in clusterManagerCheckCluster()
4279 if (open_slots == NULL) in clusterManagerCheckCluster()
4280 open_slots = dictCreate(&clusterManagerDictType, NULL); in clusterManagerCheckCluster()
4289 dictAdd(open_slots, slot, sdsdup(n->importing[i + 1])); in clusterManagerCheckCluster()
4297 if (open_slots != NULL) { in clusterManagerCheckCluster()
4299 dictIterator *iter = dictGetIterator(open_slots); in clusterManagerCheckCluster()
4313 iter = dictGetIterator(open_slots); in clusterManagerCheckCluster()
4321 dictRelease(open_slots); in clusterManagerCheckCluster()