Lines Matching refs:bf
2851 int journal_file_compare_locations(JournalFile *af, JournalFile *bf) { in journal_file_compare_locations() argument
2856 assert(bf); in journal_file_compare_locations()
2857 assert(bf->header); in journal_file_compare_locations()
2859 assert(bf->location_type == LOCATION_SEEK); in journal_file_compare_locations()
2863 if (sd_id128_equal(af->current_boot_id, bf->current_boot_id) && in journal_file_compare_locations()
2864 af->current_monotonic == bf->current_monotonic && in journal_file_compare_locations()
2865 af->current_realtime == bf->current_realtime && in journal_file_compare_locations()
2866 af->current_xor_hash == bf->current_xor_hash && in journal_file_compare_locations()
2867 sd_id128_equal(af->header->seqnum_id, bf->header->seqnum_id) && in journal_file_compare_locations()
2868 af->current_seqnum == bf->current_seqnum) in journal_file_compare_locations()
2871 if (sd_id128_equal(af->header->seqnum_id, bf->header->seqnum_id)) { in journal_file_compare_locations()
2875 r = CMP(af->current_seqnum, bf->current_seqnum); in journal_file_compare_locations()
2884 if (sd_id128_equal(af->current_boot_id, bf->current_boot_id)) { in journal_file_compare_locations()
2887 r = CMP(af->current_monotonic, bf->current_monotonic); in journal_file_compare_locations()
2893 r = CMP(af->current_realtime, bf->current_realtime); in journal_file_compare_locations()
2898 return CMP(af->current_xor_hash, bf->current_xor_hash); in journal_file_compare_locations()