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:queueHead
(Results
1 - 7
of
7
) sorted by relevance
/kernel/uniproton/src/core/ipc/queue/
H
A
D
prt_queue.c
167
queueNode = (struct QueNode *)(uintptr_t)&queueCb->queue[(queueCb->
queueHead
) * (queueCb->nodeSize)];
in PRT_QueueRead()
181
queueCb->
queueHead
++;
in PRT_QueueRead()
183
if (queueCb->
queueHead
== queueCb->nodeNum) {
in PRT_QueueRead()
184
queueCb->
queueHead
= 0;
in PRT_QueueRead()
236
if (queueCb->
queueHead
== 0) {
in OsQueueCpData2Node()
237
queueCb->
queueHead
= queueCb->nodeNum;
in OsQueueCpData2Node()
239
queueCb->
queueHead
--;
in OsQueueCpData2Node()
241
queueNode = (struct QueNode *)(uintptr_t)&queueCb->queue[((queueCb->
queueHead
) * (queueCb->nodeSize))];
in OsQueueCpData2Node()
252
peak = queueCb->queueTail > queueCb->
queueHead
? queueCb->queueTail - queueCb->
queueHead
in OsQueueCpData2Node()
[all...]
H
A
D
prt_queue_init.c
114
queueCb->
queueHead
= 0;
in OsQueueCreate()
/kernel/liteos_a/kernel/base/ipc/
H
A
D
los_queue.c
152
queueCB->
queueHead
= 0;
in LOS_QueueCreate()
224
queuePosition = queueCB->
queueHead
;
in OsQueueBufferOperate()
225
((queueCB->
queueHead
+ 1) == queueCB->queueLen) ? (queueCB->
queueHead
= 0) : (queueCB->
queueHead
++);
in OsQueueBufferOperate()
228
(queueCB->
queueHead
== 0) ? (queueCB->
queueHead
= queueCB->queueLen - 1) : (--queueCB->
queueHead
);
in OsQueueBufferOperate()
229
queuePosition = queueCB->
queueHead
;
in OsQueueBufferOperate()
496
queueInfo->usQueueHead = queueCB->
queueHead
;
in LOS_QueueInfoGet()
[all...]
/kernel/liteos_m/kernel/src/
H
A
D
los_queue.c
192
queueCB->
queueHead
= 0;
in OsQueueCreate()
314
queuePosition = queueCB->
queueHead
;
in OsQueueBufferOperate()
315
((queueCB->
queueHead
+ 1) == queueCB->queueLen) ? (queueCB->
queueHead
= 0) : (queueCB->
queueHead
++);
in OsQueueBufferOperate()
319
(queueCB->
queueHead
== 0) ? (queueCB->
queueHead
= (queueCB->queueLen - 1)) : (--queueCB->
queueHead
);
in OsQueueBufferOperate()
320
queuePosition = queueCB->
queueHead
;
in OsQueueBufferOperate()
763
queueInfo->
queueHead
in LOS_QueueInfoGet()
[all...]
/kernel/uniproton/src/core/ipc/include/
H
A
D
prt_queue_external.h
50
U16
queueHead
;
member
/kernel/liteos_a/kernel/base/include/
H
A
D
los_queue_pri.h
74
UINT16
queueHead
; /**< Node head */
member
/kernel/liteos_m/kernel/include/
H
A
D
los_queue.h
366
UINT16
queueHead
; /**< Node head */
member
1076
UINT16
queueHead
; /**< Node head */
member
Completed in 6 milliseconds