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

  /device/linaro/bootloader/arm-trusted-firmware/lib/locks/bakery/
bakery_lock_coherent.c 49 assert(!bakery_ticket_number(bakery->lock_data[me]));
62 bakery->lock_data[me] = make_bakery_data(CHOOSING_TICKET, my_ticket);
64 their_ticket = bakery_ticket_number(bakery->lock_data[they]);
74 bakery->lock_data[me] = make_bakery_data(CHOSEN_TICKET, my_ticket);
115 their_bakery_data = bakery->lock_data[they];
133 bakery_ticket_number(bakery->lock_data[they]));
146 assert(bakery_ticket_number(bakery->lock_data[me]));
152 bakery->lock_data[me] = 0;
bakery_lock_normal.c 82 return !!(bakery_ticket_number(my_bakery_info->lock_data));
107 my_bakery_info->lock_data = make_bakery_data(CHOOSING_TICKET, my_ticket);
132 their_ticket = bakery_ticket_number(their_bakery_info->lock_data);
142 my_bakery_info->lock_data = make_bakery_data(CHOSEN_TICKET, my_ticket);
185 their_bakery_data = their_bakery_info->lock_data;
204 == bakery_ticket_number(their_bakery_info->lock_data));
223 my_bakery_info->lock_data = 0;
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/
bakery_lock.h 43 * The lock_data is a bit-field of 2 members:
48 volatile uint16_t lock_data[BAKERY_LOCK_MAX_CPUS]; member in struct:bakery_lock
63 * The lock_data is a bit-field of 2 members:
68 volatile uint16_t lock_data; member in struct:bakery_info
  /external/autotest/client/cros/cellular/pseudomodem/
sim.py 280 def _CheckCode(self, code, lock_data, next_lock, error_to_raise):
281 # Checks |code| against |lock_data['code']|. If the codes don't match:
283 # - if the number of retries left for |lock_data| drops down to 0,
291 if code == lock_data['code']:
297 lock_data['retries'] -= 1
299 if lock_data['retries'] == 0:
339 lock_data = self._lock_data.get(self._lock_type, None)
340 if not lock_data:
345 self._CheckCode(pin, lock_data, mm1_constants.MM_MODEM_LOCK_SIM_PUK,
370 lock_data = self._lock_data.get(self._lock_type, None
    [all...]

Completed in 390 milliseconds