Searched refs:errors (Results 1 - 4 of 4) sorted by relevance
/systemd/src/libsystemd/sd-bus/ |
H A D | bus-error.h | 56 #define BUS_ERROR_MAP_ELF_USE(errors) \ 57 extern const sd_bus_error_map errors[]; \ 58 __attribute__ ((used)) static const sd_bus_error_map * const CONCATENATE(errors ## _copy_, __COUNTER__) = errors;
|
/systemd/src/journal/ |
H A D | journal-internal.h | 133 Hashmap *errors; member in struct:sd_journal
|
H A D | journalctl.c | 1814 if (hashmap_isempty(j->errors)) { 1821 if (hashmap_contains(j->errors, INT_TO_PTR(-EACCES))) { 1828 HASHMAP_FOREACH_KEY(path, code, j->errors, it) {
|
H A D | sd-journal.c | 92 k = hashmap_ensure_allocated(&j->errors, NULL); 103 k = hashmap_put(j->errors, INT_TO_PTR(r), copy); 1571 /* We ignore most errors here, since the idea is to only open 1588 * "root" directories. We don't expect errors here, so we 1807 while ((p = hashmap_steal_first(j->errors))) 1809 hashmap_free(j->errors);
|
Completed in 39 milliseconds