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:muxPosted
(Results
1 - 5
of
5
) sorted by relevance
/kernel/liteos_m/kernel/src/
H
A
D
los_mux.c
274
LosMuxCB *
muxPosted
= GET_MUX(muxHandle);
in LOS_MuxPost()
local
281
(
muxPosted
->muxStat == OS_MUX_UNUSED)) {
in LOS_MuxPost()
292
if ((
muxPosted
->muxCount == 0) || (
muxPosted
->owner != runningTask)) {
in LOS_MuxPost()
297
if (--(
muxPosted
->muxCount) != 0) {
in LOS_MuxPost()
299
OsHookCall(LOS_HOOK_TYPE_MUX_POST,
muxPosted
);
in LOS_MuxPost()
303
if ((
muxPosted
->owner->priority) !=
muxPosted
->priority) {
in LOS_MuxPost()
304
(VOID)OsSchedModifyTaskSchedParam(
muxPosted
->owner,
muxPosted
in LOS_MuxPost()
[all...]
/kernel/liteos_m/kal/posix/src/
H
A
D
pthread_mutex.c
279
LosMuxCB *
muxPosted
= NULL;
in MuxPostForPosix()
local
284
muxPosted
= GET_MUX(muxHandle);
in MuxPostForPosix()
287
if (
muxPosted
->muxStat == OS_MUX_UNUSED) {
in MuxPostForPosix()
293
if ((
muxPosted
->muxCount == 0) || (
muxPosted
->owner != runningTask)) {
in MuxPostForPosix()
298
if ((--(
muxPosted
->muxCount) != 0) && (mutex->stAttr.type == PTHREAD_MUTEX_RECURSIVE)) {
in MuxPostForPosix()
300
OsHookCall(LOS_HOOK_TYPE_MUX_POST,
muxPosted
);
in MuxPostForPosix()
304
if ((
muxPosted
->owner->priority) !=
muxPosted
->priority) {
in MuxPostForPosix()
305
(VOID)OsSchedModifyTaskSchedParam(
muxPosted
in MuxPostForPosix()
[all...]
H
A
D
pthread_cond.c
271
LosMuxCB *
muxPosted
= NULL;
in pthread_cond_timedwait()
local
277
muxPosted
= GET_MUX(mutex->handle);
in pthread_cond_timedwait()
278
if ((mutex->stAttr.type == PTHREAD_MUTEX_ERRORCHECK) && (g_losTask.runTask !=
muxPosted
->owner)) {
in pthread_cond_timedwait()
/kernel/liteos_a/kernel/extended/hook/include/
H
A
D
los_hook_types.h
81
LOS_HOOK_TYPE_DEF(LOS_HOOK_TYPE_MUX_POST, (const LosMux *
muxPosted
)) \
/kernel/liteos_m/utils/internal/
H
A
D
los_hook_types.h
87
LOS_HOOK_TYPE_DEF(LOS_HOOK_TYPE_MUX_POST, (const LosMuxCB *
muxPosted
)) \
Completed in 3 milliseconds