MCPcopy Index your code
hub / github.com/git/git / for_each_note

Function for_each_note

notes.c:1188–1195  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1186}
1187
1188int for_each_note(struct notes_tree *t, int flags, each_note_fn fn,
1189 void *cb_data)
1190{
1191 if (!t)
1192 t = &default_notes_tree;
1193 assert(t->initialized);
1194 return for_each_note_helper(t, t->root, 0, 0, flags, fn, cb_data);
1195}
1196
1197int write_notes_tree(struct notes_tree *t, struct object_id *result)
1198{

Callers 3

write_notes_treeFunction · 0.85
prune_notesFunction · 0.85
listFunction · 0.85

Calls 1

for_each_note_helperFunction · 0.85

Tested by

no test coverage detected