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:readList
(Results
1 - 7
of
7
) sorted by relevance
/kernel/liteos_a/kernel/base/ipc/
H
A
D
los_rwlock.c
68
LOS_ListInit(&(rwlock->
readList
));
in LOS_RwlockInit()
165
LOS_DL_LIST *node = OsSchedLockPendFindPos(runTask, &(rwlock->
readList
));
in OsRwlockRdPendOp()
342
STATIC UINT32 OsRwlockGetMode(LOS_DL_LIST *
readList
, LOS_DL_LIST *writeList)
in OsRwlockGetMode()
argument
344
BOOL isReadEmpty = LOS_ListEmpty(
readList
);
in OsRwlockGetMode()
355
LosTaskCB *pendedReadTask = OS_TCB_FROM_PENDLIST(LOS_DL_LIST_FIRST(
readList
));
in OsRwlockGetMode()
370
rwlockMode = OsRwlockGetMode(&(rwlock->
readList
), &(rwlock->writeList));
in OsRwlockPostOp()
387
resumedTask = OS_TCB_FROM_PENDLIST(LOS_DL_LIST_FIRST(&(rwlock->
readList
)));
in OsRwlockPostOp()
389
while (!LOS_ListEmpty(&(rwlock->
readList
))) {
in OsRwlockPostOp()
390
resumedTask = OS_TCB_FROM_PENDLIST(LOS_DL_LIST_FIRST(&(rwlock->
readList
)));
in OsRwlockPostOp()
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/
H
A
D
tcp_server.py
58
readList
= [serverSocket]
variable
62
select.select(
readList
, [], [], 2)
70
readList
.append(clientSocket)
/kernel/liteos_a/kernel/include/
H
A
D
los_rwlock.h
57
LOS_DL_LIST
readList
; /**< Read waiting list */
member
/kernel/uniproton/src/core/ipc/include/
H
A
D
prt_queue_external.h
62
struct TagListObject
readList
;
member
/kernel/uniproton/src/core/ipc/queue/
H
A
D
prt_queue_del.c
40
if (!ListEmpty(&queueCb->writeList) || !ListEmpty(&queueCb->
readList
)) {
in PRT_QueueDelete()
H
A
D
prt_queue.c
161
ret = OsInnerPend(&queueCb->readableCnt, &queueCb->
readList
, timeOut);
in PRT_QueueRead()
297
if (OsQueuePendNeedProc(&queueCb->
readList
)) {
in PRT_QueueWrite()
H
A
D
prt_queue_init.c
112
INIT_LIST_OBJECT(&queueCb->
readList
);
in OsQueueCreate()
Completed in 3 milliseconds