Home
last modified time | relevance | path

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

12345678910>>...13

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DJob.kt192 public fun cancel(cause: CancellationException? = null) in getCancellationException() method
198 public fun cancel(): Unit = cancel(null) in getCancellationException() method
204 public fun cancel(cause: Throwable? = null): Boolean in getCancellationException() method
562 public fun CoroutineContext.cancel(cause: CancellationException? = null) { in cancel() method
570 public fun CoroutineContext.cancel(): Unit = cancel(null) in cancel() method
610 public fun Job.cancel(message: String, cause: Throwable? = null): Unit = cancel(CancellationExcepti… in cancel() method
616 public fun CoroutineContext.cancel(cause: Throwable? = null): Boolean { in cancel() method
DNonCancellable.kt95 override fun cancel(cause: CancellationException?) {} in getCancellationException() method
102 override fun cancel(cause: Throwable?): Boolean = false // never handles exceptions in cancel() method
DCoroutineScope.kt215 public fun CoroutineScope.cancel(cause: CancellationException? = null) { in CoroutineScope() method
225 public fun CoroutineScope.cancel(message: String, cause: Throwable? = null): Unit = cancel(Cancella… method
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DChannelCoroutine.kt18 override fun cancel() { in <lambda>() method
23 final override fun cancel(cause: Throwable?): Boolean { in <lambda>() method
28 final override fun cancel(cause: CancellationException?) { in <lambda>() method
DBroadcastChannel.kt43 public fun cancel(cause: CancellationException? = null) in openSubscription() method
49 public fun cancel(cause: Throwable? = null): Boolean in openSubscription() method
DChannel.kt308 public fun cancel(cause: CancellationException? = null) in send() method
314 public fun cancel(): Unit = cancel(null) in send() method
320 public fun cancel(cause: Throwable? = null): Boolean in send() 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/llvm-project/libcxx/test/libcxx/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
Dmove_reentrant.pass.cpp26 static bool cancel; member
37 bool A::cancel = false; member in A
Dnullptr_t_assign_reentrant.pass.cpp26 static bool cancel; member
37 bool A::cancel = false; member in A
/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
DShadowSslErrorHandler.java14 protected void cancel() { in cancel() method in ShadowSslErrorHandler
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/channels/
DTestChannelKind.kt50 override fun cancel(cause: CancellationException?) = sub.cancel(cause) in toString() method
54 override fun cancel(cause: Throwable?): Boolean = (sub as AbstractChannel).cancelInternal(cause) in toString() method
/external/lottie/lottie/src/main/java/com/airbnb/lottie/
DCancellable.java5 void cancel(); in cancel() 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
DCancellableProducer.java32 void cancel(boolean mayInterruptIfRunning); in cancel() method
/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
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/linearizability/
DChannelsLCStressTest.kt104 …fun cancel(@Param(name = "closeToken") token: Int) = c.cancel(NumberedCancellationException(token)) in <lambda>() method
202 fun cancel(token: Int) { in cancel() method
/external/tensorflow/tensorflow/python/kernel_tests/
Dbarrier_ops_test.py503 def _testClosedEmptyBarrierTakeManyAllowSmallBatchRaises(self, cancel): argument
517 def _testParallelInsertManyTakeManyCloseHalfwayThrough(self, cancel): argument
595 def _testParallelPartialInsertManyTakeManyCloseHalfwayThrough(self, cancel): argument
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/scheduler/
DScheduler.java47 boolean cancel(); in cancel() method
/external/glide/library/src/main/java/com/bumptech/glide/load/data/
DDataFetcher.java75 void cancel(); in cancel() method
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactive/src/
DReactiveFlow.kt151 fun cancel() { in cancel() method
233 override fun cancel() { in cancel() method
/external/libchromeos-rs/src/sync/
Dwaiter.rs124 cancel: SpinLock<Cancel>, field
199 let mut cancel = self.cancel.lock(); in set_cancel() localVariable
287 let cancel = self.waiter.cancel.lock(); in drop() localVariable
302 let cancel = self.waiter.cancel.lock(); in drop() localVariable

12345678910>>...13