Home
last modified time | relevance | path

Searched refs:VALID64 (Results 1 – 3 of 3) sorted by relevance

/systemd-251/src/libsystemd/sd-journal/
Djournal-verify.c192 if (!VALID64(le64toh(o->data.next_hash_offset)) || in journal_file_object_verify()
193 !VALID64(le64toh(o->data.next_field_offset)) || in journal_file_object_verify()
194 !VALID64(le64toh(o->data.entry_offset)) || in journal_file_object_verify()
195 !VALID64(le64toh(o->data.entry_array_offset))) { in journal_file_object_verify()
231 if (!VALID64(le64toh(o->field.next_hash_offset)) || in journal_file_object_verify()
232 !VALID64(le64toh(o->field.head_data_offset))) { in journal_file_object_verify()
281 !VALID64(le64toh(o->entry.items[i].object_offset))) { in journal_file_object_verify()
305 !VALID64(le64toh(o->hash_table.items[i].head_hash_offset))) { in journal_file_object_verify()
314 !VALID64(le64toh(o->hash_table.items[i].tail_hash_offset))) { in journal_file_object_verify()
346 if (!VALID64(le64toh(o->entry_array.next_entry_array_offset))) { in journal_file_object_verify()
[all …]
Djournal-file.c449 if (!VALID64(le64toh(f->header->data_hash_table_offset)) || in journal_file_verify_header()
450 !VALID64(le64toh(f->header->field_hash_table_offset)) || in journal_file_verify_header()
451 !VALID64(le64toh(f->header->tail_object_offset)) || in journal_file_verify_header()
452 !VALID64(le64toh(f->header->entry_array_offset))) in journal_file_verify_header()
674 if (!VALID64(le64toh(o->data.next_hash_offset)) || in journal_file_check_object()
675 !VALID64(le64toh(o->data.next_field_offset)) || in journal_file_check_object()
676 !VALID64(le64toh(o->data.entry_offset)) || in journal_file_check_object()
677 !VALID64(le64toh(o->data.entry_array_offset))) in journal_file_check_object()
696 if (!VALID64(le64toh(o->field.next_hash_offset)) || in journal_file_check_object()
697 !VALID64(le64toh(o->field.head_data_offset))) in journal_file_check_object()
[all …]
Djournal-file.h148 #define VALID64(x) (((x) & 7ULL) == 0ULL) macro