/external/okio/okio/src/jvmMain/kotlin/okio/ |
D | Pipe.kt | 54 synchronized(buffer) { in write() 61 return@synchronized in write() 85 synchronized(buffer) { in flush() 91 return@synchronized in flush() 104 synchronized(buffer) { in close() 109 return@synchronized in close() 128 synchronized(buffer) { in timeout() 145 synchronized(buffer) { in timeout() 169 synchronized(buffer) { in fold() 200 synchronized(buffer) { in fold() [all …]
|
D | -Platform.kt | 27 internal actual inline fun <R> synchronized(lock: Any, block: () -> R): R { in toUtf8String() method 28 return kotlin.synchronized(lock, block) in toUtf8String()
|
/external/llvm-project/compiler-rt/test/tsan/Darwin/ |
D | objc-synchronize-nested-recursive.mm | 11 @synchronized(obj1) { 12 @synchronized(obj1) { 18 @synchronized(obj1) { 19 @synchronized(obj2) { 20 @synchronized(obj1) { 21 @synchronized(obj2) {
|
D | objc-synchronize-cycle.mm | 14 @synchronized(obj1) { 15 @synchronized(obj2) { 20 @synchronized(obj2) { 21 @synchronized(obj1) {
|
D | objc-synchronize-cycle-tagged.mm | 25 @synchronized(obj) { 26 @synchronized(num1) { 31 @synchronized(num2) { 32 @synchronized(obj) {
|
/external/clang/test/SemaObjC/ |
D | synchronized.m | 8 @synchronized (self) { 18 …@synchronized (b) { // expected-error {{@synchronized requires an Objective-C object type ('struc… 21 …@synchronized (42) { // expected-error {{@synchronized requires an Objective-C object type ('int'…
|
/external/llvm-project/clang/test/SemaObjC/ |
D | synchronized.m | 8 @synchronized (self) { 18 …@synchronized (b) { // expected-error {{@synchronized requires an Objective-C object type ('struc… 21 …@synchronized (42) { // expected-error {{@synchronized requires an Objective-C object type ('int'…
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/internal/ |
D | ThreadSafeHeap.kt | 35 public fun clear(): Unit = synchronized(this) { in <lambda>() 40 public fun peek(): T? = synchronized(this) { firstImpl() } in <lambda>() 42 public fun removeFirstOrNull(): T? = synchronized(this) { in <lambda>() 51 public inline fun removeFirstIf(predicate: (T) -> Boolean): T? = synchronized(this) { in <lambda>() 60 public fun addLast(node: T): Unit = synchronized(this) { addImpl(node) } in <lambda>() 64 public inline fun addLastIf(node: T, cond: (T?) -> Boolean): Boolean = synchronized(this) { in <lambda>() 73 public fun remove(node: T): Boolean = synchronized(this) { in <lambda>()
|
/external/llvm-project/clang/test/CodeGenObjC/ |
D | synchronized.m | 17 @synchronized(self) { 33 @synchronized(a) { 53 // either that x isn't stored to within the synchronized block or 54 // that the synchronized block can't longjmp. 59 @synchronized((x++, a)) { 76 @synchronized(({ return; }), a) {
|
/external/clang/test/CodeGenObjC/ |
D | synchronized.m | 17 @synchronized(self) { 33 @synchronized(a) { 53 // either that x isn't stored to within the synchronized block or 54 // that the synchronized block can't longjmp. 59 @synchronized((x++, a)) { 76 @synchronized(({ return; }), a) {
|
/external/clang/test/Rewriter/ |
D | rewrite-modern-synchronized.m | 18 @synchronized (SYNCH_EXPR()) { 23 @synchronized ([sem self]) { 31 @synchronized (foo) { 43 @synchronized(self) {
|
D | objc-synchronized-1.m | 11 @synchronized (SYNCH_EXPR()) { 16 @synchronized ([sem self]) {
|
/external/llvm-project/clang/test/Rewriter/ |
D | rewrite-modern-synchronized.m | 18 @synchronized (SYNCH_EXPR()) { 23 @synchronized ([sem self]) { 31 @synchronized (foo) { 43 @synchronized(self) {
|
D | objc-synchronized-1.m | 11 @synchronized (SYNCH_EXPR()) { 16 @synchronized ([sem self]) {
|
/external/clang/test/SemaObjCXX/ |
D | synchronized.mm | 15 @synchronized (a) { 18 …@synchronized (b) { // expected-error {{@synchronized requires an Objective-C object type ('struc…
|
/external/llvm-project/clang/test/SemaObjCXX/ |
D | synchronized.mm | 15 @synchronized (a) { 18 …@synchronized (b) { // expected-error {{@synchronized requires an Objective-C object type ('struc…
|
/external/kotlinx.coroutines/kotlinx-coroutines-test/src/ |
D | TestCoroutineExceptionHandler.kt | 45 synchronized(_exceptions) { in cleanupTestCoroutines() 52 get() = synchronized(_exceptions) { _exceptions.toList() } in cleanupTestCoroutines() 56 synchronized(_exceptions) { in cleanupTestCoroutines()
|
/external/walt/ios/WALT/ |
D | WALTLogger.m | 40 @synchronized (_buffer) { 54 @synchronized (_buffer) { 60 @synchronized (_buffer) { 69 @synchronized (_buffer) {
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/exceptions/ |
D | Exceptions.kt | 42 …override fun handleException(context: CoroutineContext, exception: Throwable) = synchronized<Unit>… in <lambda>() 46 fun getExceptions(): List<Throwable> = synchronized(this) { in getExceptions() 50 fun getException(): Throwable = synchronized(this) { in <lambda>()
|
/external/grpc-grpc/src/objective-c/GRPCClient/private/ |
D | GRPCOpBatchLog.m | 28 @synchronized(opBatchLog) { 42 @synchronized(opBatchLog) { 48 @synchronized(opBatchLog) {
|
D | GRPCHost.m | 81 @synchronized(kHostCache) { 105 @synchronized(kHostCache) { 114 @synchronized(kHostCache) { 123 // The __block attribute is to allow channel take refcount inside @synchronized block. Without 128 @synchronized(self) { 204 @synchronized(self) { 276 @synchronized(self) { 303 @synchronized(self) {
|
/external/kotlinx.atomicfu/atomicfu/src/commonTest/kotlin/bytecode_test/ |
D | SynchronizedObjectTest.kt | 9 val result = synchronized(this) { bar() } in testSync() 14 synchronized(this) { in bar()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/internal/ |
D | Synchronized.kt | 19 public actual inline fun <T> synchronized(lock: SynchronizedObject, block: () -> T): T = method 20 kotlin.synchronized(lock, block)
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/internal/ |
D | AbstractSharedFlow.kt | 32 get() = synchronized(this) { in <lambda>() 47 val slot = synchronized(this) { in createSlot() 78 val resumes = synchronized(this) { in freeSlot()
|
/external/kotlinx.atomicfu/atomicfu/src/jvmMain/kotlin/kotlinx/atomicfu/locks/ |
D | Synchronized.kt | 25 public actual inline fun <T> synchronized(lock: SynchronizedObject, block: () -> T): T = method 26 kotlin.synchronized(lock, block)
|