/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/ |
D | Call.java | 42 volatile boolean canceled; field in Call 124 canceled = true; in cancel() 137 return canceled; in isCanceled() 174 if (canceled) { in execute() 200 String string = canceled ? "canceled call" : "call"; in toLoggableString() 281 if (canceled) { in getResponse()
|
D | Dispatcher.java | 128 call.get().canceled = true; in cancel()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
D | Call.java | 40 volatile boolean canceled; field in Call 122 canceled = true; in cancel() 135 return canceled; in isCanceled() 172 if (canceled) { in execute() 198 String string = canceled ? "canceled call" : "call"; in toLoggableString() 279 if (canceled) { in getResponse()
|
D | Dispatcher.java | 126 call.get().canceled = true; in cancel()
|
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_wait/ |
D | stress2.c | 195 long canceled; member 319 cd->canceled = 0; in cellmanager() 402 cd->canceled += 1; in cellmanager() 426 long canceled = 0; in main() local 634 canceled += cells[i].canceled; in main() 661 output(" Canceled threads : %8li\n", canceled); in main()
|
D | stress.c | 195 long canceled; member 319 cd->canceled = 0; in cellmanager() 402 cd->canceled += 1; in cellmanager() 426 long canceled = 0; in main() local 634 canceled += cells[i].canceled; in main() 661 output(" Canceled threads : %8li\n", canceled); in main()
|
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_timedwait/ |
D | stress2.c | 186 long canceled; member 310 cd->canceled = 0; in cellmanager() 393 cd->canceled += 1; in cellmanager() 417 long canceled = 0; in main() local 625 canceled += cells[i].canceled; in main() 652 output(" Canceled threads : %8li\n", canceled); in main()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_init/ |
D | 3-2.c | 97 int canceled = 0; variable 103 canceled = 1; in cleanup_deadlk() 295 canceled = 0; in main() 316 tab_res[i][0] = canceled; in main()
|
D | 1-2.c | 91 int canceled = 0; variable 97 canceled = 1; in cleanup_deadlk() 302 canceled = 0; in main() 323 tab_res[i][0] = canceled; in main()
|
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cancel/ |
D | stress.c | 89 long long canceled, ended; variable 136 canceled++; in threaded() 217 output(" - %llu threads canceled\n", canceled); in main()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_cancel/ |
D | 3-1.c | 49 static volatile int canceled; variable 56 canceled++; in sig_handler() 149 if (!canceled) in main()
|
D | coverage.txt | 21 + can be unresolved, because we must have at least one not canceled.
|
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/http/ |
D | StreamAllocation.java | 85 private boolean canceled; field in StreamAllocation 156 if (canceled) throw new IOException("Canceled"); in findConnection() 183 if (canceled) throw new IOException("Canceled"); in findConnection() 266 canceled = true; in cancel() 320 if (canceled) { in recover()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
D | StreamAllocation.java | 83 private boolean canceled; field in StreamAllocation 154 if (canceled) throw new IOException("Canceled"); in findConnection() 181 if (canceled) throw new IOException("Canceled"); in findConnection() 264 canceled = true; in cancel() 318 if (canceled) { in recover()
|
/external/grpc-grpc-java/benchmarks/src/main/java/io/grpc/benchmarks/qps/ |
D | AsyncClient.java | 324 private boolean canceled; field in AsyncClient.HistogramFuture 334 if (!done && !canceled) { in cancel() 335 canceled = true; in cancel() 344 return canceled; in isCancelled() 349 return done || canceled; in isDone()
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowPendingIntent.java | 60 private boolean canceled; field in ShadowPendingIntent 110 canceled = true; in cancel() 149 if (canceled) { in send() 268 return canceled; in isCanceled()
|
/external/python/cpython3/Lib/idlelib/ |
D | pyshell.py | 799 if self.tkconsole.canceled: 800 self.tkconsole.canceled = False 936 canceled = False variable in PyShell 1002 self.canceled = 0 1016 self.canceled = True 1090 if self.canceled: 1091 self.canceled = 0 1114 self.canceled = 1 1134 self.canceled = 0 1315 if self.canceled: [all …]
|
/external/python/cpython2/Lib/idlelib/ |
D | PyShell.py | 815 if self.tkconsole.canceled: 816 self.tkconsole.canceled = False 935 canceled = False variable in PyShell 1001 self.canceled = 0 1015 self.canceled = True 1089 if self.canceled: 1090 self.canceled = 0 1113 self.canceled = 1 1133 self.canceled = 0 1300 if self.canceled: [all …]
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_QueueClose.pbtxt | 14 blocked on the given queue will be canceled.
|
D | api_def_QueueCloseV2.pbtxt | 16 blocked on the given queue will be canceled.
|
D | api_def_BarrierClose.pbtxt | 13 blocked on the barrier's queue will be canceled. InsertMany will fail, even
|
/external/volley/src/main/java/com/android/volley/toolbox/ |
D | ImageLoader.java | 386 boolean canceled = request.removeContainerAndCancelIfNecessary(this); 387 if (canceled) {
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowPendingIntentTest.java | 514 PendingIntent canceled = PendingIntent.getService(context, 99, intent, 100); in send_canceledPendingIntent_throwsCanceledException() local 515 assertThat(canceled).isNotNull(); in send_canceledPendingIntent_throwsCanceledException() 521 assertThat(shadowOf(canceled).isCanceled()).isTrue(); in send_canceledPendingIntent_throwsCanceledException() 529 canceled.send(); in send_canceledPendingIntent_throwsCanceledException()
|
/external/python/cpython2/Tools/pynche/ |
D | Switchboard.py | 135 def canceled(self, flag=1): member in Switchboard
|
/external/python/cpython3/Tools/pynche/ |
D | Switchboard.py | 134 def canceled(self, flag=1): member in Switchboard
|