Searched defs:array (Results 1 - 4 of 4) sorted by relevance

/systemd/src/cgtop/
H A Dcgtop.c536 Group **array; local
546 array = alloca(sizeof(Group*) * hashmap_size(a));
550 array[n++] = g;
552 qsort_safe(array, n, sizeof(Group*), group_compare);
558 format_timespan(buffer, sizeof(buffer), (usec_t) (array[j]->cpu_usage / NSEC_PER_USEC), 0);
562 pathtlen = strlen(array[j]->path);
610 g = array[j];
/systemd/src/libsystemd/sd-login/
H A Dsd-login.c380 static int uid_get_array(uid_t uid, const char *variable, char ***array) { argument
393 if (array)
394 *array = NULL;
407 if (array)
408 *array = a;
/systemd/src/journal/
H A Djournal-file.c77 /* How many entries to keep in the entry array chain cache at max */
1579 uint64_t first; /* the array at the beginning of the chain */
1580 uint64_t array; /* the cached array */ member in struct:ChainCacheItem
1581 uint64_t begin; /* the first item in the cached array */
1590 uint64_t array,
1598 if (array == first)
1619 ci->array = array;
1643 a = ci->array;
1586 chain_cache_put( OrderedHashmap *h, ChainCacheItem *ci, uint64_t first, uint64_t array, uint64_t begin, uint64_t total, uint64_t last_index) argument
1734 Object *o, *array = NULL; local
[all...]
/systemd/src/tmpfiles/
H A Dtmpfiles.c1662 static int process_item_array(ItemArray *array);
1702 static int process_item_array(ItemArray *array) { argument
1706 assert(array);
1708 for (n = 0; n < array->count; n++) {
1709 k = process_item(array->items + n);
2092 /* Sort item array, to enforce stable ordering of application */

Completed in 84 milliseconds