Lines Matching defs:bf
2167 int journal_file_compare_locations(JournalFile *af, JournalFile *bf) {
2170 assert(bf);
2171 assert(bf->header);
2173 assert(bf->location_type == LOCATION_SEEK);
2177 if (sd_id128_equal(af->current_boot_id, bf->current_boot_id) &&
2178 af->current_monotonic == bf->current_monotonic &&
2179 af->current_realtime == bf->current_realtime &&
2180 af->current_xor_hash == bf->current_xor_hash)
2183 if (sd_id128_equal(af->header->seqnum_id, bf->header->seqnum_id)) {
2187 if (af->current_seqnum < bf->current_seqnum)
2189 if (af->current_seqnum > bf->current_seqnum)
2197 if (sd_id128_equal(af->current_boot_id, bf->current_boot_id)) {
2200 if (af->current_monotonic < bf->current_monotonic)
2202 if (af->current_monotonic > bf->current_monotonic)
2207 if (af->current_realtime < bf->current_realtime)
2209 if (af->current_realtime > bf->current_realtime)
2213 if (af->current_xor_hash < bf->current_xor_hash)
2215 if (af->current_xor_hash > bf->current_xor_hash)