Lines Matching refs:existing
1144 [CREATION_EXISTING] = "Found existing",
1814 ItemArray *existing;
2069 existing = ordered_hashmap_get(h, i.path);
2070 if (existing) {
2073 for (n = 0; n < existing->count; n++) {
2074 if (!item_compatible(existing->items + n, &i)) {
2081 existing = new0(ItemArray, 1);
2082 r = ordered_hashmap_put(h, i.path, existing);
2087 if (!GREEDY_REALLOC(existing->items, existing->size, existing->count + 1))
2090 memcpy(existing->items + existing->count++, &i, sizeof(i));
2093 qsort_safe(existing->items, existing->count, sizeof(Item), item_compare);