Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:rwlock
(Results
1 - 4
of
4
) sorted by relevance
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/sync/
H
A
D
mod.rs
21
pub mod
rwlock
;
modules
29
pub use
rwlock
::{RwLock, RwLockReadGuard, RwLockWriteGuard};
/commonlibrary/memory_utils/libpurgeablemem/c/src/
H
A
D
purgeable_mem_c.c
38
pthread_rwlock_t
rwlock
;
member
99
int lockInitRet = pthread_rwlock_init(&(pugObj->
rwlock
), NULL);
in PurgMemCreate_()
160
/* destroy
rwlock
*/
in PurgMemDestroy()
161
int ret = pthread_rwlock_destroy(&(purgObj->
rwlock
));
in PurgMemDestroy()
240
int rwlockRet = pthread_rwlock_rdlock(&(purgObj->
rwlock
));
in TryBeginRead()
252
rwlockRet = pthread_rwlock_unlock(&(purgObj->
rwlock
));
in TryBeginRead()
264
int rwlockRet = pthread_rwlock_wrlock(&(purgObj->
rwlock
));
in BeginReadBuildData()
276
rwlockRet = pthread_rwlock_unlock(&(purgObj->
rwlock
));
in BeginReadBuildData()
337
rwlockRet = pthread_rwlock_wrlock(&(purgObj->
rwlock
));
in PurgMemBeginWrite()
358
rwlockRet = pthread_rwlock_unlock(&(purgObj->
rwlock
));
in PurgMemBeginWrite()
[all...]
/commonlibrary/rust/ylong_runtime/ylong_runtime/benches/bin/
H
A
D
ylong_sync_rwlock_perf.rs
19
use ylong_runtime::sync::
rwlock
::RwLock;
/commonlibrary/rust/ylong_runtime/ylong_runtime/benches/
H
A
D
ylong_tokio_rwlock.rs
17
//! - Mainly follow designs of tokio
rwlock
tests.
35
use ylong_runtime::sync::
rwlock
::RwLock as YlongRwlock;
42
/// Benchmark test for tokio
rwlock
.
66
/// Benchmark test for ylong
rwlock
.
91
/// Benchmark test for tokio
rwlock
.
115
/// Benchmark test for ylong
rwlock
.
140
/// Benchmark test for tokio
rwlock
.
145
/// 3. Write the
rwlock
171
/// Benchmark test for ylong
rwlock
.
176
/// 3. Write the
rwlock
[all...]
Completed in 1 milliseconds