Searched defs:timeout (Results 26 - 29 of 29) sorted by relevance

12

/packages/apps/Gallery2/src/com/android/camera/ui/
H A DPieRenderer.java958 public void showSuccess(boolean timeout) { argument
961 timeout, mStartAnimationAngle);
968 public void showFail(boolean timeout) { argument
971 timeout, mStartAnimationAngle);
995 private void startAnimation(long duration, boolean timeout, argument
997 startAnimation(duration, timeout, mDialAngle,
1001 private void startAnimation(long duration, boolean timeout, argument
1007 mAnimation.setAnimationListener(timeout ? mEndAction : null);
/packages/apps/Nfc/nxp/jni/
H A Dcom_android_nfc_NativeNfcManager.cpp1481 static void setFelicaTimeout(jint timeout) { argument
1482 // The Felica timeout is configurable in the PN544 upto a maximum of 255 ms.
1483 // It can be set to 0 to disable the timeout altogether, in which case we
1485 if (timeout <= 255) {
1486 phLibNfc_SetFelicaTimeout(timeout);
1488 // Disable hw timeout, use sw watchdog for timeout
1490 phLibNfc_SetHciTimeout(timeout);
1503 // The Iso/Mifare Xchg timeout in PN544 is a non-linear function over X
1504 // spanning 0 - 4.9s: timeout i
1517 setIsoDepTimeout(jint timeout) argument
1539 setNfcATimeout(jint timeout) argument
1551 com_android_nfc_NfcManager_doSetTimeout( JNIEnv *e, jobject o, jint tech, jint timeout) argument
1587 int timeout = -1; local
[all...]
/packages/apps/Phone/src/com/android/phone/
H A DInCallScreen.java4243 /* package */ void requestCloseOtaFailureNotice(long timeout) { argument
4244 if (DBG) log("requestCloseOtaFailureNotice() with timeout: " + timeout);
4245 mHandler.sendEmptyMessageDelayed(REQUEST_CLOSE_OTA_FAILURE_NOTICE, timeout);
4260 /* package */ void requestCloseSpcErrorNotice(long timeout) { argument
4261 if (DBG) log("requestCloseSpcErrorNotice() with timeout: " + timeout);
4262 mHandler.sendEmptyMessageDelayed(REQUEST_CLOSE_SPC_ERROR_NOTICE, timeout);
/packages/apps/Nfc/src/com/android/nfc/
H A DNfcService.java1298 public int setTimeout(int tech, int timeout) throws RemoteException { argument
1300 boolean success = mDeviceHost.setTimeout(tech, timeout);
1586 public WatchDogThread(String threadName, int timeout) { argument
1588 mTimeout = timeout;

Completed in 126 milliseconds

12