Lines Matching refs:top
88 static int notify_override_masked(const char *top, const char *bottom) { in notify_override_masked() argument
94 top, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), bottom); in notify_override_masked()
98 static int notify_override_equivalent(const char *top, const char *bottom) { in notify_override_equivalent() argument
104 top, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), bottom); in notify_override_equivalent()
108 static int notify_override_redirected(const char *top, const char *bottom) { in notify_override_redirected() argument
114 top, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), bottom); in notify_override_redirected()
118 static int notify_override_overridden(const char *top, const char *bottom) { in notify_override_overridden() argument
124 top, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), bottom); in notify_override_overridden()
128 static int notify_override_extended(const char *top, const char *bottom) { in notify_override_extended() argument
134 top, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), bottom); in notify_override_extended()
146 static int found_override(const char *top, const char *bottom) { in found_override() argument
151 assert(top); in found_override()
154 if (null_or_empty_path(top) > 0) in found_override()
155 return notify_override_masked(top, bottom); in found_override()
157 r = readlink_malloc(top, &dest); in found_override()
160 return notify_override_equivalent(top, bottom); in found_override()
162 return notify_override_redirected(top, bottom); in found_override()
165 r = notify_override_overridden(top, bottom); in found_override()
177 execlp("diff", "diff", "-us", "--", bottom, top, NULL); in found_override()
190 OrderedHashmap *top, in enumerate_dir_d() argument
239 k = ordered_hashmap_put(top, d, p); in enumerate_dir_d()
286 OrderedHashmap *top, in enumerate_dir() argument
296 assert(top); in enumerate_dir()
338 r = enumerate_dir_d(top, bottom, drops, path, *t); in enumerate_dir()
351 r = ordered_hashmap_put(top, basename(p), p); in enumerate_dir()
402 OrderedHashmap *top, *bottom, *drops, *h; in process_suffix() local
412 top = ordered_hashmap_new(&string_hash_ops); in process_suffix()
415 if (!top || !bottom || !drops) { in process_suffix()
432 k = enumerate_dir(top, bottom, drops, t, dropins); in process_suffix()
437 ORDERED_HASHMAP_FOREACH_KEY(f, key, top) { in process_suffix()
463 ordered_hashmap_free_free(top); in process_suffix()