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:TryLock
(Results
1 - 15
of
15
) sorted by relevance
/arkcompiler/runtime_core/static_core/libpandabase/os/
H
A
D
mutex.h
41
bool
TryLock
() const
in TryLock()
function in ark::os::memory::DummyLock
74
PANDA_PUBLIC_API bool
TryLock
() TRY_ACQUIRE(true);
251
return lock.
TryLock
();
in onstexpr()
261
inline int
TryLock
(L &lock)
in TryLock()
function
270
inline int
TryLock
(L0 &lock0, L1 &...rest) NO_THREAD_SAFETY_ANALYSIS
273
int failedIndex =
TryLock
<TYPE>(rest...);
307
int failedIndex = detail::
TryLock
<TYPE>(rest...);
H
A
D
mutex.cpp
68
bool Mutex::
TryLock
()
in TryLock()
function in ark::os::memory::Mutex
/arkcompiler/ets_runtime/ecmascript/
H
A
D
runtime_lock.cpp
23
if (mtx_.
TryLock
()) {
in RuntimeLockHolder()
/arkcompiler/runtime_core/static_core/libpandabase/tests/
H
A
D
lock_holder_test.cpp
256
std::thread thread {[&lock0] { ASSERT_FALSE(lock0.
TryLock
()); }};
in TEST_F()
263
ASSERT_FALSE(lock0.
TryLock
());
in TEST_F()
264
ASSERT_FALSE(lock1.
TryLock
());
in TEST_F()
265
ASSERT_FALSE(recursiveLock.
TryLock
());
in TEST_F()
/arkcompiler/ets_runtime/ecmascript/platform/
H
A
D
mutex.h
43
bool
TryLock
();
/arkcompiler/ets_runtime/ecmascript/platform/common/
H
A
D
mutex.cpp
48
bool Mutex::
TryLock
()
in TryLock()
function in panda::ecmascript::Mutex
/arkcompiler/runtime_core/libpandabase/os/
H
A
D
mutex.cpp
68
bool Mutex::
TryLock
()
in TryLock()
function in panda::os::memory::Mutex
H
A
D
mutex.h
60
bool
TryLock
() TRY_ACQUIRE(true);
/arkcompiler/runtime_core/static_core/runtime/mem/gc/workers/
H
A
D
gc_worker.cpp
108
if (!gcTaskRunMutex_.
TryLock
()) {
in GCTaskRunner()
120
// already held the mutex, so
TryLock
fails and task running cancels
in GCTaskRunner()
/arkcompiler/runtime_core/static_core/runtime/
H
A
D
monitor.cpp
595
if (!lock_.
TryLock
()) {
in Acquire()
602
if (!lock_.
TryLock
()) {
in Acquire()
661
[[maybe_unused]] bool res = lock_.
TryLock
();
in Acquire()
841
if (!lock_.
TryLock
()) {
in Acquire()
842
LOG(DEBUG, RUNTIME) << "Couldn't
TryLock
monitor for deflation";
in Acquire()
/arkcompiler/runtime_core/libpandabase/tests/
H
A
D
mutex_test.cpp
184
bool res = lock->
TryLock
();
in HWTEST_F()
/arkcompiler/runtime_core/platforms/unix/libpandabase/futex/
H
A
D
mutex.h
48
bool
TryLock
() TRY_ACQUIRE(true);
H
A
D
mutex.cpp
86
bool Mutex::
TryLock
()
in TryLock()
function in panda::os::unix::memory::futex::Mutex
/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/futex/
H
A
D
mutex.cpp
86
bool Mutex::
TryLock
()
in TryLock()
function in ark::os::unix::memory::futex::Mutex
H
A
D
mutex.h
47
PANDA_PUBLIC_API bool
TryLock
() TRY_ACQUIRE(true);
Completed in 8 milliseconds