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

Function get_remote_object_list

http-push.c:1199–1210  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1197}
1198
1199static void get_remote_object_list(unsigned char parent)
1200{
1201 char path[] = "objects/XX/";
1202 static const char hex[] = "0123456789abcdef";
1203 unsigned int val = parent;
1204
1205 path[8] = hex[val >> 4];
1206 path[9] = hex[val & 0xf];
1207 remote_dir_exists[val] = 0;
1208 remote_ls(path, (PROCESS_FILES | PROCESS_DIRS),
1209 process_ls_object, &val);
1210}
1211
1212static int locking_available(void)
1213{

Callers 2

add_fetch_requestFunction · 0.85
add_send_requestFunction · 0.85

Calls 1

remote_lsFunction · 0.85

Tested by

no test coverage detected