HomeSort by relevance Sort by last modified time
    Searched refs:RETRY (Results 1 - 25 of 33) sorted by null

1 2

  /frameworks/support/work/integration-tests/testapp/src/main/java/androidx/work/integration/testapp/
InfiniteWorker.java 30 return Result.RETRY;
  /frameworks/support/work/workmanager/src/androidTest/java/androidx/work/worker/
RetryWorker.java 31 Log.d("RetryWorker", "Returning RETRY");
32 return Result.RETRY;
  /frameworks/support/work/workmanager/src/main/java/androidx/work/impl/workers/
ConstraintTrackingWorker.java 103 // that should cause a retry.
108 return Result.RETRY;
120 return Result.RETRY;
128 "Constraints not met for delegate %s. Requesting retry.", className));
129 return Result.RETRY;
149 // If at any point, constraints are not met mark it so we can retry the work.
  /external/ltp/testcases/kernel/io/disktest/
defs.h 103 WRITER,READER,NONE,RETRY
childmain.c 359 target.oper = RETRY;
402 if ((target.oper == NONE) || (target.oper == RETRY)) ;
433 * we must retry, as we can't start the read, since the write
436 target.oper = RETRY;
447 target.oper = RETRY;
702 /* this thread has to retry, so give up the reset of my time slice */
703 if (target.oper == RETRY) {
706 } while ((env->bContinue) && (target.oper == RETRY)); /* we failed to get an action, and were asked to retry */
769 if (retries-- > 1) { /* request to retry on error, decrement retry *
    [all...]
  /frameworks/ex/common/java/com/android/common/speech/
LoggingEvents.java 60 public static final int RETRY = 0;
  /external/python/cpython2/Lib/lib-tk/
tkMessageBox.py 46 RETRY = "retry"
119 return s == RETRY
  /external/python/cpython3/Lib/tkinter/
messagebox.py 46 RETRY = "retry"
119 return s == RETRY
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
tkMessageBox.py 46 RETRY = "retry"
119 return s == RETRY
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
tkMessageBox.py 46 RETRY = "retry"
119 return s == RETRY
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
tkMessageBox.py 46 RETRY = "retry"
119 return s == RETRY
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkMessageBox.py 46 RETRY = "retry"
119 return s == RETRY
  /frameworks/support/work/workmanager/src/main/java/androidx/work/
Worker.java 64 RETRY
  /external/autotest/client/cros/cellular/pseudomodem/
pm_errors.py 73 RETRY = 12
91 self.RETRY : '.Retry',
  /external/ipsec-tools/src/racoon/
cfparse.h 105 RETRY = 321,
270 #define RETRY 321
cfparse.y 207 %token RETRY RETRY_COUNTER RETRY_INTERVAL RETRY_PERSEND
1076 : RETRY BOC timer_stmts EOC
    [all...]
cftoken.l 267 <S_INI>timer { BEGIN S_RTRY; YYDB; return(RETRY); }
  /external/v8/src/regexp/
regexp-macro-assembler.cc 179 // retry the RegExp forcing the call through the runtime system.
181 return_value = RETRY;
202 return_value = RETRY;
288 DCHECK(result >= RETRY);
regexp-macro-assembler.h 204 // RETRY: Something significant changed during execution, and the matching
212 enum Result { RETRY = -2, EXCEPTION = -1, FAILURE = 0, SUCCESS = 1 };
jsregexp.cc 506 if (res != NativeRegExpMacroAssembler::RETRY) {
517 // If result is RETRY, the string has changed representation, and we
    [all...]
  /external/toybox/toys/pending/
crontab.c 288 RETRY:
321 "Do you want to retry the same edit? ");
326 goto RETRY;
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapAppParams.java 47 private static final int RETRY = 0x0C;
323 case RETRY:
325 Log.w(TAG, "RETRY: Wrong length received: " + tagLength + " expected: "
    [all...]
  /frameworks/support/work/workmanager/src/main/java/androidx/work/impl/
WorkerWrapper.java 252 case RETRY: {
253 Log.d(TAG, String.format("Worker result RETRY for %s", mWorkSpecId));
  /external/toolchain-utils/cros_utils/
buildbot_json.py 66 SUCCESS, WARNINGS, FAILURE, SKIPPED, EXCEPTION, RETRY = range(6)
655 elif result in (FAILURE, EXCEPTION, RETRY):
785 elif result in (FAILURE, EXCEPTION, RETRY):
    [all...]
  /external/v8/src/arm64/
code-stubs-arm64.cc 886 // callee-saved registers so we can retry the call without having to reload
    [all...]

Completed in 1494 milliseconds

1 2