MCPcopy Create free account
hub / github.com/acl-dev/acl / acl_array_append

Function acl_array_append

lib_acl/src/stdlib/common/acl_array.c:219–225  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

217}
218
219int acl_array_append(ACL_ARRAY *a, void *obj)
220{
221 if (a->count >= a->capacity)
222 acl_array_grow(a, a->count + 16);
223 a->items[a->count++] = obj;
224 return a->count - 1;
225}
226
227int acl_array_pred_insert(ACL_ARRAY *a, int position, void *obj)
228{

Callers 15

mainFunction · 0.85
epoll_event_createFunction · 0.85
array_iterFunction · 0.85
resolve_nameFunction · 0.85
resolve_addrFunction · 0.85
proctl_service_addFunction · 0.85
__add_fn_itemFunction · 0.85
aut_add_outer_cmdFunction · 0.85
aut_parse_args_listFunction · 0.85
aut_add_inner_cmdFunction · 0.85
acl_vstream_cloneFunction · 0.85

Calls 1

acl_array_growFunction · 0.85

Tested by 4

__add_fn_itemFunction · 0.68
aut_add_outer_cmdFunction · 0.68
aut_parse_args_listFunction · 0.68
aut_add_inner_cmdFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…