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:rx_skb_list
(Results
1 - 5
of
5
) sorted by relevance
/kernel/linux/linux-5.10/tools/perf/scripts/python/
H
A
D
netdev-times.py
30
rx_skb_list
= []; # received packet list for matching
variable
33
buffer_budget = 65536; # the budget of
rx_skb_list
, tx_queue_list and
229
(len(
rx_skb_list
), of_count_rx_skb_list))
398
rx_skb_list
.insert(0, rec_data)
399
if len(
rx_skb_list
) > buffer_budget:
400
rx_skb_list
.pop()
446
for i in range(len(
rx_skb_list
)):
447
rec_data =
rx_skb_list
[i]
451
del
rx_skb_list
[i]
466
for i in range(len(
rx_skb_list
))
[all...]
/kernel/linux/linux-6.6/tools/perf/scripts/python/
H
A
D
netdev-times.py
30
rx_skb_list
= []; # received packet list for matching
variable
33
buffer_budget = 65536; # the budget of
rx_skb_list
, tx_queue_list and
229
(len(
rx_skb_list
), of_count_rx_skb_list))
398
rx_skb_list
.insert(0, rec_data)
399
if len(
rx_skb_list
) > buffer_budget:
400
rx_skb_list
.pop()
446
for i in range(len(
rx_skb_list
)):
447
rec_data =
rx_skb_list
[i]
451
del
rx_skb_list
[i]
466
for i in range(len(
rx_skb_list
))
[all...]
/kernel/linux/linux-6.6/drivers/net/wwan/t7xx/
H
A
D
t7xx_port_ctrl_msg.c
224
if (skb_queue_empty(&port->
rx_skb_list
) &&
in port_ctl_rx_thread()
226
!skb_queue_empty(&port->
rx_skb_list
) ||
in port_ctl_rx_thread()
235
skb = __skb_dequeue(&port->
rx_skb_list
);
in port_ctl_rx_thread()
268
while ((skb = __skb_dequeue(&port->
rx_skb_list
)) != NULL)
in port_ctl_uninit()
H
A
D
t7xx_port_proxy.c
164
skb_queue_head_init(&port->
rx_skb_list
);
in t7xx_port_struct_init()
192
* t7xx_port_enqueue_skb() - Enqueue the received skb into the port's
rx_skb_list
.
205
if (port->
rx_skb_list
.qlen >= port->rx_length_th) {
in t7xx_port_enqueue_skb()
210
__skb_queue_tail(&port->
rx_skb_list
, skb);
in t7xx_port_enqueue_skb()
H
A
D
t7xx_port.h
122
struct sk_buff_head
rx_skb_list
;
member
Completed in 4 milliseconds