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:mtx_trylock
(Results
1 - 13
of
13
) sorted by relevance
/third_party/musl/libc-test/src/functionalext/supplement/thread/
H
A
D
mtx_trylock.c
27
ret =
mtx_trylock
(&g_mtex);
in threadfuncA()
38
ret =
mtx_trylock
(&g_mtex);
in threadfuncB()
47
* @tc.desc : Verify process
mtx_trylock
success when mtx_init second args is mtx_plain | tx_recursive.
72
* @tc.desc : Verify process
mtx_trylock
fail when mtx_init second args is mtx_plain.
/third_party/musl/libc-test/src/functionalext/supplement/thread/thread_gtest/
H
A
D
thread_mutex_test.cpp
91
EXPECT_EQ(thrd_success,
mtx_trylock
(&mtx_));
in HWTEST_F()
92
EXPECT_EQ(thrd_busy,
mtx_trylock
(&mtx_));
in HWTEST_F()
95
EXPECT_EQ(thrd_busy,
mtx_trylock
(&mtx_));
in HWTEST_F()
109
EXPECT_EQ(thrd_success,
mtx_trylock
(&mtx_));
in HWTEST_F()
151
std::thread([&mtxUnlock] { EXPECT_EQ(thrd_busy,
mtx_trylock
(&mtxUnlock)); }).join();
in HWTEST_F()
/third_party/musl/src/thread/
H
A
D
mtx_trylock.c
4
int
mtx_trylock
(mtx_t *m)
in mtx_trylock()
function
/third_party/mesa3d/src/c11/impl/
H
A
D
threads_posix.c
44
Otherwise use
mtx_trylock
() + *busy loop* emulation.
223
while (
mtx_trylock
(mtx) != thrd_success) {
in mtx_timedlock()
237
mtx_trylock
(mtx_t *mtx)
in mtx_trylock()
function
H
A
D
threads_win32.c
48
Otherwise emulate by
mtx_trylock
() + *busy loop* for WinXP.
78
- Emulated `mtx_timelock()' with
mtx_trylock
() + *busy loop*
281
while (
mtx_trylock
(mtx) != thrd_success) {
in mtx_timedlock()
292
mtx_trylock
(mtx_t *mtx)
in mtx_trylock()
function
/third_party/mesa3d/src/gallium/auxiliary/os/
H
A
D
os_thread.h
55
int ret =
mtx_trylock
(mutex);
in __pipe_mutex_assert_locked()
/third_party/musl/porting/uniproton/kernel/include/
H
A
D
threads.h
65
int
mtx_trylock
(mtx_t *);
/third_party/musl/porting/liteos_m/kernel/include/
H
A
D
threads.h
65
int
mtx_trylock
(mtx_t *);
/third_party/musl/include/
H
A
D
threads.h
65
int
mtx_trylock
(mtx_t *);
/third_party/mesa3d/src/util/
H
A
D
simple_mtx.h
175
int ret =
mtx_trylock
(mtx);
in simple_mtx_assert_locked()
/third_party/glfw/deps/
H
A
D
tinycthread.h
235
int
mtx_trylock
(mtx_t *mtx);
H
A
D
tinycthread.c
109
int
mtx_trylock
(mtx_t *mtx)
in mtx_trylock()
function
/third_party/mesa3d/src/c11/
H
A
D
threads.h
175
int
mtx_trylock
(mtx_t *__mtx);
Completed in 6 milliseconds