Home
last modified time | relevance | path

Searched defs:RawNamedLock (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/named-lock/src/
Dwindows.rs13 pub(crate) struct RawNamedLock { struct
17 unsafe impl Sync for RawNamedLock {} implementation
18 unsafe impl Send for RawNamedLock {} implementation
20 impl RawNamedLock { impl
21 pub(crate) fn create(name: &str) -> Result<RawNamedLock> { in create()
67 impl Drop for RawNamedLock { implementation
Dunix.rs10 pub(crate) struct RawNamedLock { struct
14 impl RawNamedLock { argument
15 pub(crate) fn create(lock_path: &Path) -> Result<RawNamedLock> { in create()