MCPcopy Create free account
hub / github.com/git/git / oidset_iter_next

Function oidset_iter_next

oidset.h:113–120  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111}
112
113static inline struct object_id *oidset_iter_next(struct oidset_iter *iter)
114{
115 for (; iter->iter != kh_end(iter->set); iter->iter++) {
116 if (kh_exist(iter->set, iter->iter))
117 return &kh_key(iter->set, iter->iter++);
118 }
119 return NULL;
120}
121
122static inline struct object_id *oidset_iter_first(struct oidset *set,
123 struct oidset_iter *iter)

Callers 15

find_commonFunction · 0.85
add_commonFunction · 0.85
add_havesFunction · 0.85
clear_common_flagFunction · 0.85
send_shallow_listFunction · 0.85
oidset_equalFunction · 0.85
oidset_insert_from_setFunction · 0.85
fill_oids_from_commitsFunction · 0.85
fsck_blobsFunction · 0.85
oidset_iter_firstFunction · 0.85
prefetch_cherry_blobsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected