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:muxPended
(Results
1 - 4
of
4
) sorted by relevance
/kernel/liteos_m/kernel/src/
H
A
D
los_mux.c
165
STATIC_INLINE UINT32 OsMuxValidCheck(LosMuxCB *
muxPended
)
in OsMuxValidCheck()
argument
167
if (
muxPended
->muxStat == OS_MUX_UNUSED) {
in OsMuxValidCheck()
198
LosMuxCB *
muxPended
= NULL;
in LOS_MuxPend()
local
206
muxPended
= GET_MUX(muxHandle);
in LOS_MuxPend()
208
retErr = OsMuxValidCheck(
muxPended
);
in LOS_MuxPend()
214
if (
muxPended
->muxCount == 0) {
in LOS_MuxPend()
215
muxPended
->muxCount++;
in LOS_MuxPend()
216
muxPended
->owner = runningTask;
in LOS_MuxPend()
217
muxPended
->priority = runningTask->priority;
in LOS_MuxPend()
222
if (
muxPended
in LOS_MuxPend()
[all...]
/kernel/liteos_m/kal/posix/src/
H
A
D
pthread_mutex.c
217
LosMuxCB *
muxPended
= NULL;
in MuxPendForPosix()
local
222
muxPended
= GET_MUX(muxHandle);
in MuxPendForPosix()
225
if (
muxPended
->muxStat == OS_MUX_UNUSED) {
in MuxPendForPosix()
231
if (
muxPended
->muxCount == 0) {
in MuxPendForPosix()
232
muxPended
->muxCount++;
in MuxPendForPosix()
233
muxPended
->owner = runningTask;
in MuxPendForPosix()
234
muxPended
->priority = runningTask->priority;
in MuxPendForPosix()
236
OsHookCall(LOS_HOOK_TYPE_MUX_PEND,
muxPended
, timeout);
in MuxPendForPosix()
240
if ((
muxPended
->owner == runningTask) && (mutex->stAttr.type == PTHREAD_MUTEX_RECURSIVE)) {
in MuxPendForPosix()
241
muxPended
in MuxPendForPosix()
335
LosMuxCB *
muxPended
= NULL;
pthread_mutex_timedlock()
local
383
LosMuxCB *
muxPended
= NULL;
pthread_mutex_lock()
local
420
LosMuxCB *
muxPended
= NULL;
pthread_mutex_trylock()
local
[all...]
/kernel/liteos_a/kernel/extended/hook/include/
H
A
D
los_hook_types.h
82
LOS_HOOK_TYPE_DEF(LOS_HOOK_TYPE_MUX_PEND, (const LosMux *
muxPended
, UINT32 timeout)) \
/kernel/liteos_m/utils/internal/
H
A
D
los_hook_types.h
88
LOS_HOOK_TYPE_DEF(LOS_HOOK_TYPE_MUX_PEND, (const LosMuxCB *
muxPended
, UINT32 timeout)) \
Completed in 2 milliseconds