Lines Matching full:retries
130 'retries' : pin_retries
134 'retries' : puk_retries
188 Returns the number of unlock retries left.
190 @returns: The number of unlock retries for each lock type the SIM
194 retries = dbus.Dictionary(signature='uu')
196 return retries
198 retries[dbus.types.UInt32(k)] = dbus.types.UInt32(v['retries'])
199 return retries
283 # - if the number of retries left for |lock_data| drops down to 0,
296 # remaining retries.
297 lock_data['retries'] -= 1
299 if lock_data['retries'] == 0:
300 logging.info('Retries exceeded the allowed number.')
317 self._lock_data[lock_type]['retries'] = value
334 if self._lock_data[self._lock_type]['retries'] == 0:
376 if lock_data['retries'] == 0: