Home
last modified time | relevance | path

Searched defs:ReentrantLock (Results 1 – 25 of 552) sorted by relevance

12345678910>>...23

/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/std/src/sync/
H A Dreentrant_lock.rs76 pub struct ReentrantLock<T: ?Sized> { struct
84 unsafe impl<T: Send + ?Sized> Send for ReentrantLock<T> {} argument
86 unsafe impl<T: Send + ?Sized> Sync for ReentrantLock<T> {} implementation
90 impl<T: UnwindSafe + ?Sized> UnwindSafe for ReentrantLock<T> {} implementation
92 impl<T: RefUnwindSafe + ?Sized> RefUnwindSafe for ReentrantLock<T> {} implementation
123 impl<T> ReentrantLock<T> { implementation
161 impl<T: ?Sized> ReentrantLock<T> { implementation
253 impl<T: fmt::Debug + ?Sized> fmt::Debug for ReentrantLock<T> { implementation
265 impl<T: Default> Default for ReentrantLock<T> { implementation
272 impl<T> From<T> for ReentrantLock<T> { implementation
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/std/src/sync/
H A Dreentrant_lock.rs76 pub struct ReentrantLock<T: ?Sized> { struct
84 unsafe impl<T: Send + ?Sized> Send for ReentrantLock<T> {} argument
86 unsafe impl<T: Send + ?Sized> Sync for ReentrantLock<T> {} implementation
90 impl<T: UnwindSafe + ?Sized> UnwindSafe for ReentrantLock<T> {} implementation
92 impl<T: RefUnwindSafe + ?Sized> RefUnwindSafe for ReentrantLock<T> {} implementation
123 impl<T> ReentrantLock<T> { implementation
161 impl<T: ?Sized> ReentrantLock<T> { impl
253 impl<T: fmt::Debug + ?Sized> fmt::Debug for ReentrantLock<T> { implementation
265 impl<T: Default> Default for ReentrantLock<T> { implementation
272 impl<T> From<T> for ReentrantLock<T> { implementation
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/std/src/sync/
H A Dreentrant_lock.rs86 pub struct ReentrantLock<T: ?Sized> { struct
87 mutex: sys::Mutex,
88 owner: Tid,
89 lock_count: UnsafeCell<u32>,
90 data: T,
181 unsafe impl<T: Send + ?Sized> Send for ReentrantLock<T> {} implementation
183 unsafe impl<T: Send + ?Sized> Sync for ReentrantLock<T> {} implementation
187 impl<T: UnwindSafe + ?Sized> UnwindSafe for ReentrantLock<T> {} implementation
189 impl<T: RefUnwindSafe + ?Sized> RefUnwindSafe for ReentrantLock<T> {} implementation
220 impl<T> ReentrantLock<T> { implementation
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/std/src/sync/
H A Dreentrant_lock.rs86 pub struct ReentrantLock<T: ?Sized> { struct
87 mutex: sys::Mutex,
88 owner: Tid,
89 lock_count: UnsafeCell<u32>,
90 data: T,
181 unsafe impl<T: Send + ?Sized> Send for ReentrantLock<T> {} implementation
183 unsafe impl<T: Send + ?Sized> Sync for ReentrantLock<T> {} implementation
187 impl<T: UnwindSafe + ?Sized> UnwindSafe for ReentrantLock<T> {} implementation
189 impl<T: RefUnwindSafe + ?Sized> RefUnwindSafe for ReentrantLock<T> {} implementation
220 impl<T> ReentrantLock<T> { implementation
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/std/src/sync/
H A Dreentrant_lock.rs86 pub struct ReentrantLock<T: ?Sized> { struct
87 mutex: sys::Mutex,
88 owner: Tid,
89 lock_count: UnsafeCell<u32>,
90 data: T,
181 unsafe impl<T: Send + ?Sized> Send for ReentrantLock<T> {} implementation
183 unsafe impl<T: Send + ?Sized> Sync for ReentrantLock<T> {} implementation
187 impl<T: UnwindSafe + ?Sized> UnwindSafe for ReentrantLock<T> {} implementation
189 impl<T: RefUnwindSafe + ?Sized> RefUnwindSafe for ReentrantLock<T> {} implementation
220 impl<T> ReentrantLock<T> { impl
[all …]
/aosp_15_r20/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/locks/
H A DReentrantLock.java41 public class ReentrantLock implements java.util.concurrent.locks.Lock, java.io.Serializable { class
43 public ReentrantLock() { in ReentrantLock() method in ReentrantLock
47 public ReentrantLock(boolean fair) { in ReentrantLock() method in ReentrantLock
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/concurrent/locks/
DReentrantLock.java108 public class ReentrantLock implements Lock, java.io.Serializable { class
293 public ReentrantLock() { in ReentrantLock() method in ReentrantLock
303 public ReentrantLock(boolean fair) { in ReentrantLock() method in ReentrantLock
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/concurrent/locks/
H A DReentrantLock.java108 public class ReentrantLock implements Lock, java.io.Serializable { class
293 public ReentrantLock() { in ReentrantLock() method in ReentrantLock
303 public ReentrantLock(boolean fair) { in ReentrantLock() method in ReentrantLock
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/21/libcore/ojluni/src/main/java/java/util/concurrent/locks/
DReentrantLock.java108 public class ReentrantLock implements Lock, java.io.Serializable { class
293 public ReentrantLock() { in ReentrantLock() method in ReentrantLock
303 public ReentrantLock(boolean fair) { in ReentrantLock() method in ReentrantLock
/aosp_15_r20/external/kotlinx.atomicfu/atomicfu/src/jvmMain/kotlin/kotlinx/atomicfu/locks/
H A DSynchronized.kt12 public actual typealias ReentrantLock = java.util.concurrent.locks.ReentrantLock in reentrantLock() typealias
/aosp_15_r20/external/kotlinx.atomicfu/atomicfu/src/jsAndWasmSharedMain/kotlin/kotlinx/atomicfu/locks/
H A DSynchronized.kt15 public actual class ReentrantLock { in reentrantLock() class
/aosp_15_r20/external/kotlinx.atomicfu/atomicfu/src/commonMain/kotlin/kotlinx/atomicfu/locks/
H A DSynchronized.common.kt7 public expect class ReentrantLock { in reentrantLock() class
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/internal/
H A DConcurrent.kt9 internal actual typealias ReentrantLock = java.util.concurrent.locks.ReentrantLock typealias
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/native/src/internal/
H A DConcurrent.kt8 internal actual typealias ReentrantLock = kotlinx.atomicfu.locks.SynchronizedObject typealias
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/internal/
H A DConcurrent.common.kt3 internal expect class ReentrantLock() { class
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/jsAndWasmShared/src/internal/
H A DConcurrent.kt3 internal actual typealias ReentrantLock = NoOpLock typealias
/aosp_15_r20/external/kotlinx.atomicfu/atomicfu/src/nativeMain/kotlin/kotlinx/atomicfu/locks/
H A DSynchronized.kt165 public actual typealias ReentrantLock = SynchronizedObject in lock() typealias
/aosp_15_r20/out/soong/.intermediates/libcore/core-oj-hiddenapi-annotations/android_common/javac/
Dcore-oj-hiddenapi-annotations.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/ ...
/aosp_15_r20/out/soong/.intermediates/external/kotlinx.coroutines/kotlinx_coroutines-host/linux_glibc_common/kotlin_headers/
Dkotlinx_coroutines-host.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__kotlinx.coroutines__linux_glibc_common__kotlinx_coroutines- ...
/aosp_15_r20/out/soong/.intermediates/libcore/core-oj/android_common_apex31/turbine/
Dcore-oj.jarjava/awt/font/NumericShaper$Range.class <Unknown> package java.awt. ...
/aosp_15_r20/out/soong/.intermediates/libcore/core-oj/android_common_apex31/turbine-combined/
Dcore-oj.jarcom/sun/net/ssl/internal/ssl/X509ExtendedTrustManager.class <Unknown> package ...
/aosp_15_r20/out/target/common/obj/JAVA_LIBRARIES/core-oj.com.android.art.debug_intermediates/
Dclasses-header.jarcom/sun/net/ssl/internal/ssl/X509ExtendedTrustManager.class <Unknown> package ...
/aosp_15_r20/prebuilts/module_sdk/art/1/java/
Dcore-oj.jarMETA-INF/ META-INF/MANIFEST.MF calendars.properties com/ com/sun ...
/aosp_15_r20/out/soong/.intermediates/libcore/core-oj/android_common_apex31/javac/
Dcore-oj.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/ ...
/aosp_15_r20/out/soong/.intermediates/libcore/core-oj/android_common_apex31/withres/
Dcore-oj.jarMETA-INF/ META-INF/MANIFEST.MF calendars.properties com/ com/sun ...

12345678910>>...23