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

/frameworks/base/core/java/android/server/
H A DBluetoothBondState.java278 Integer attempt = mPinAttempt.get(address);
279 if (attempt == null) {
282 return attempt.intValue();
285 public synchronized void attempt(String address) { method in class:BluetoothBondState
286 Integer attempt = mPinAttempt.get(address);
288 if (attempt == null) {
291 newAttempt = attempt.intValue() + 1;
/frameworks/base/core/jni/
H A Dandroid_server_BluetoothEventLoop.cpp318 int attempt = 0; local
320 for (attempt = 0; attempt < 1000 && reply == NULL; attempt ++) {
348 if (attempt == 1000) {

Completed in 125 milliseconds