HomeSort by relevance Sort by last modified time
    Searched refs:num_slots_ (Results 1 - 4 of 4) sorted by null

  /system/update_engine/common/
fake_boot_control.h 34 SetNumSlots(num_slots_);
40 unsigned int GetNumSlots() const override { return num_slots_; }
48 if (slot >= num_slots_)
58 return slot < num_slots_ && is_bootable_[slot];
62 if (slot >= num_slots_)
79 num_slots_ = num_slots;
80 is_bootable_.resize(num_slots_, false);
81 devices_.resize(num_slots_);
91 DCHECK(slot < num_slots_);
96 DCHECK(slot < num_slots_);
    [all...]
  /system/update_engine/
boot_control_chromeos.cc 103 num_slots_ = 1;
106 num_slots_ = 2;
113 while (current_slot_ < num_slots_ &&
118 if (current_slot_ >= num_slots_) {
121 << ", number of slots: " << num_slots_ local
123 num_slots_ = 1;
129 << SlotName(current_slot_) << ") of " << num_slots_
135 return num_slots_;
281 if (slot >= num_slots_) {
283 << num_slots_ << " slot(s)" local
    [all...]
boot_control_chromeos.h 74 BootControlInterface::Slot num_slots_{1};
boot_control_chromeos_unittest.cc 27 bootctl_.num_slots_ = 2;

Completed in 51 milliseconds