Searched defs:head (Results 1 - 5 of 5) sorted by relevance

/systemd/src/core/
H A Dumount.c50 static void mount_point_free(MountPoint **head, MountPoint *m) { argument
51 assert(head);
54 LIST_REMOVE(mount_point, *head, m);
60 static void mount_points_list_free(MountPoint **head) { argument
61 assert(head);
63 while (*head)
64 mount_point_free(head, *head);
67 static int mount_points_list_get(MountPoint **head) { argument
72 assert(head);
142 swap_list_get(MountPoint **head) argument
200 loopback_list_get(MountPoint **head) argument
264 dm_list_get(MountPoint **head) argument
367 mount_points_list_umount(MountPoint **head, bool *changed, bool log_error) argument
436 swap_points_list_off(MountPoint **head, bool *changed) argument
458 loopback_points_list_detach(MountPoint **head, bool *changed) argument
495 dm_points_list_detach(MountPoint **head, bool *changed) argument
[all...]
/systemd/src/bootchart/
H A Dbootchart.c323 struct list_sample_data *head; local
386 LIST_HEAD_INIT(head);
454 LIST_PREPEND(link, head, sampledata);
480 r = svg_do(of, strna(build), head, ps_first,
518 sampledata = head;
H A Dsvg.c74 static void svg_header(FILE *of, struct list_sample_data *head, double graph_start, int n_cpus) { argument
79 assert(head);
81 sampledata_last = head;
82 LIST_FOREACH_BEFORE(link, sampledata, head) {
223 static void svg_graph_box(FILE *of, struct list_sample_data *head, int height, double graph_start) { argument
229 sampledata_last = head;
230 LIST_FOREACH_BEFORE(link, sampledata, head) {
287 struct list_sample_data *head,
294 sampledata_last = head;
295 LIST_FOREACH_BEFORE(link, sampledata, head) {
286 svg_pss_graph(FILE *of, struct list_sample_data *head, struct ps_struct *ps_first, double graph_start) argument
523 svg_io_bi_bar(FILE *of, struct list_sample_data *head, int n_samples, double graph_start, double interval) argument
637 svg_io_bo_bar(FILE *of, struct list_sample_data *head, int n_samples, double graph_start, double interval) argument
749 svg_cpu_bar(FILE *of, struct list_sample_data *head, int n_cpus, int cpu_num, double graph_start) argument
798 svg_wait_bar(FILE *of, struct list_sample_data *head, int n_cpus, int cpu_num, double graph_start) argument
847 svg_entropy_bar(FILE *of, struct list_sample_data *head, double graph_start) argument
915 svg_do_initcall(FILE *of, struct list_sample_data *head, int count_only, double graph_start) argument
1001 svg_ps_bars(FILE *of, struct list_sample_data *head, int n_samples, int n_cpus, struct ps_struct *ps_first, double graph_start, double interval) argument
1273 svg_do(FILE *of, const char *build, struct list_sample_data *head, struct ps_struct *ps_first, int n_samples, int pscount, int n_cpus, double graph_start, double log_start, double interval, int overrun) argument
[all...]
/systemd/src/libsystemd/sd-hwdb/
H A Dsd-hwdb.c47 struct trie_header_f *head; member in union:sd_hwdb::__anon155
101 return (const struct trie_child_entry_f *)((const char *)node + le64toh(hwdb->head->node_size));
107 base += le64toh(hwdb->head->node_size);
108 base += node->children_count * le64toh(hwdb->head->child_entry_size);
133 le64toh(hwdb->head->child_entry_size), trie_children_cmp_f);
209 node = trie_node_from_off(hwdb, hwdb->head->nodes_root_off);
318 if (memcmp(hwdb->map, sig, sizeof(hwdb->head->signature)) != 0 ||
319 (size_t)hwdb->st.st_size != le64toh(hwdb->head->file_size)) {
325 log_debug("tool version: %"PRIu64, le64toh(hwdb->head->tool_version));
327 log_debug("header size %8"PRIu64" bytes", le64toh(hwdb->head
[all...]
/systemd/src/journal/
H A Djournalctl.c1080 BootId *head = NULL, *tail = NULL; local
1093 * If no reference is given, the journal head/tail will do,
1140 boot_id_free_all(head);
1158 LIST_INSERT_AFTER(boot_list, head, tail, current);
1167 *boots = head;
2349 log_error_errno(r, "Failed to seek to head: %m");

Completed in 38 milliseconds