Home
last modified time | relevance | path

Searched defs:cancel (Results 1 – 25 of 520) sorted by relevance

12345678910>>...21

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DJob.kt199 public fun cancel(cause: CancellationException? = null) in getCancellationException() method
205 public fun cancel(): Unit = cancel(null) in getCancellationException() method
211 public fun cancel(cause: Throwable? = null): Boolean in getCancellationException() method
563 public fun CoroutineContext.cancel(cause: CancellationException? = null) { in cancel() method
571 public fun CoroutineContext.cancel(): Unit = cancel(null) in cancel() method
611 public fun Job.cancel(message: String, cause: Throwable? = null): Unit = cancel(CancellationExcepti… in cancel() method
617 public fun CoroutineContext.cancel(cause: Throwable? = null): Boolean { in cancel() method
DNonCancellable.kt113 override fun cancel(cause: CancellationException?) {} in getCancellationException() method
120 override fun cancel(cause: Throwable?): Boolean = false // never handles exceptions in cancel() method
DCoroutineScope.kt285 public fun CoroutineScope.cancel(cause: CancellationException? = null) { in CoroutineScope() method
295 public fun CoroutineScope.cancel(message: String, cause: Throwable? = null): Unit = cancel(Cancella… method
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DChannelCoroutine.kt20 override fun cancel() { in <lambda>() method
25 final override fun cancel(cause: Throwable?): Boolean { in <lambda>() method
30 final override fun cancel(cause: CancellationException?) { in <lambda>() method
DChannel.kt297 public fun cancel(cause: CancellationException? = null) in receive() method
303 public fun cancel(): Unit = cancel(null) in receive() method
309 public fun cancel(cause: Throwable? = null): Boolean in receive() method
/external/grpc-grpc/src/python/grpcio_testing/grpc_testing/_server/
D_server_rpc.py26 def cancel(self): member in UnaryUnaryServerRpc
44 def cancel(self): member in UnaryStreamServerRpc
65 def cancel(self): member in StreamUnaryServerRpc
89 def cancel(self): member in StreamStreamServerRpc
/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
Dmove_reentrant.pass.cpp24 static bool cancel; member
35 bool A::cancel = false; member in A
Dnullptr_t_assign_reentrant.pass.cpp24 static bool cancel; member
35 bool A::cancel = false; member in A
/external/cronet/buildtools/third_party/libc++/trunk/test/libcxx/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
Dnullptr_t_assign_reentrant.pass.cpp25 static bool cancel; member
36 bool A::cancel = false; member in A
Dmove_reentrant.pass.cpp25 static bool cancel; member
36 bool A::cancel = false; member in A
/external/cronet/base/android/java/src/org/chromium/base/
DCallbackController.java82 void cancel(); in cancel() method
96 public void cancel() { in cancel() method in CallbackController.CancelableCallback
121 public void cancel() { in cancel() method in CallbackController.CancelableRunnable
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowRenderNodeAnimatorR.java58 public void cancel() { in cancel() method in ShadowRenderNodeAnimatorR
142 void cancel(); in cancel() method
DShadowRenderNodeAnimator.java63 public void cancel() { in cancel() method in ShadowRenderNodeAnimator
147 void cancel(); in cancel() method
DShadowJsResult.java13 protected void cancel() { in cancel() method in ShadowJsResult
DShadowJobScheduler.java38 protected abstract void cancel(int jobId); in cancel() method in ShadowJobScheduler
95 public void cancel(int jobId) { in cancel() method in ShadowJobScheduler.ShadowJobSchedulerImpl
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/channels/
DTestChannelKind.kt49 override fun cancel(cause: CancellationException?) = broadcast.cancel(cause) in toString() method
53 override fun cancel(cause: Throwable?): Boolean = error("unsupported") in toString() method
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowJobScheduler.java28 protected abstract void cancel(int jobId); in cancel() method in ShadowJobScheduler
62 public void cancel(int jobId) { in cancel() method in ShadowJobScheduler.ShadowJobSchedulerImpl
DShadowJsResult.java13 protected void cancel() { in cancel() method in ShadowJsResult
/external/python/python-api-core/google/api_core/
Doperation_async.py73 cancel, argument
169 async def cancel(self): member in AsyncOperation
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactive/test/
DPublisherCollectTest.kt38 override fun cancel() { in <lambda>() method
79 override fun cancel() { in <lambda>() method
119 override fun cancel() { in <lambda>() method
/external/dagger2/java/dagger/producers/internal/
DAbstractProducer.java45 public final void cancel(boolean mayInterruptIfRunning) { in cancel() method in AbstractProducer
106 public boolean cancel(boolean mayInterruptIfRunning) { in cancel() method in AbstractProducer.NonExternallyCancellableFuture
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-jdk9/test/
DPublisherCollectTest.kt40 override fun cancel() { in <lambda>() method
81 override fun cancel() { in <lambda>() method
121 override fun cancel() { in <lambda>() method
/external/lottie/lottie/src/main/java/com/airbnb/lottie/
DCancellable.java5 void cancel(); in cancel() method
/external/tensorflow/tensorflow/python/kernel_tests/data_structures/
Dbarrier_ops_test.py499 def _testClosedEmptyBarrierTakeManyAllowSmallBatchRaises(self, cancel): argument
513 def _testParallelInsertManyTakeManyCloseHalfwayThrough(self, cancel): argument
591 def _testParallelPartialInsertManyTakeManyCloseHalfwayThrough(self, cancel): argument
/external/grpc-grpc-java/stub/src/main/java/io/grpc/stub/
DClientCallStreamObserver.java50 public abstract void cancel(@Nullable String message, @Nullable Throwable cause); in cancel() method in ClientCallStreamObserver

12345678910>>...21