Searched defs:attempt (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_server_BluetoothEventLoop.cpp239 int attempt; local
240 for (attempt = 0; attempt < 1000; attempt++) {
249 LOGV("Registered agent on attempt %d of 1000\n", attempt);
262 if (attempt == 1000) {
/frameworks/base/core/java/android/server/
H A DBluetoothDeviceService.java512 Integer attempt = mPinAttempt.get(address);
513 if (attempt == null) {
516 return attempt.intValue();
519 public synchronized void attempt(String address) { method in class:BluetoothDeviceService.BondState
520 Integer attempt = mPinAttempt.get(address);
522 if (attempt == null) {
525 newAttempt = attempt.intValue() + 1;

Completed in 49 milliseconds