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:is_stopped
(Results
1 - 14
of
14
) sorted by relevance
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/map_tests/
H
A
D
sk_storage_map.c
42
static bool
is_stopped
(void)
in is_stopped()
function
59
while (!
is_stopped
() && !threads_err())
in wait_for_threads_err()
62
return !
is_stopped
();
in wait_for_threads_err()
82
while (threads_done() != nr_sk_threads && !
is_stopped
() &&
in wait_for_threads_done()
86
return !
is_stopped
() && !threads_err();
in wait_for_threads_done()
91
while (threads_done() && !
is_stopped
() && !threads_err())
in wait_for_threads_redo()
94
return !
is_stopped
() && !threads_err();
in wait_for_threads_redo()
99
while (READ_ONCE(sk_storage_map) == -1 && !
is_stopped
())
in wait_for_map()
102
return !
is_stopped
();
in wait_for_map()
107
while (READ_ONCE(sk_storage_map) != -1 && !
is_stopped
())
in wait_for_map_close()
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/map_tests/
H
A
D
sk_storage_map.c
38
static bool
is_stopped
(void)
in is_stopped()
function
55
while (!
is_stopped
() && !threads_err())
in wait_for_threads_err()
58
return !
is_stopped
();
in wait_for_threads_err()
78
while (threads_done() != nr_sk_threads && !
is_stopped
() &&
in wait_for_threads_done()
82
return !
is_stopped
() && !threads_err();
in wait_for_threads_done()
87
while (threads_done() && !
is_stopped
() && !threads_err())
in wait_for_threads_redo()
90
return !
is_stopped
() && !threads_err();
in wait_for_threads_redo()
95
while (READ_ONCE(sk_storage_map) == -1 && !
is_stopped
())
in wait_for_map()
98
return !
is_stopped
();
in wait_for_map()
103
while (READ_ONCE(sk_storage_map) != -1 && !
is_stopped
())
in wait_for_map_close()
[all...]
/kernel/linux/linux-5.10/drivers/usb/host/
H
A
D
uhci-q.c
31
if (uhci->
is_stopped
)
in uhci_set_next_interrupt()
326
ret = (uhci->frame_number + uhci->
is_stopped
!=
in uhci_cleanup_queue()
570
if (list_empty(&uhci->skel_unlink_qh->node) || uhci->
is_stopped
)
in uhci_unlink_qh()
1241
qh->
is_stopped
= 1;
in uhci_result_common()
1462
if (qh->queue.next == &urbp->node && !qh->
is_stopped
) {
in uhci_urb_enqueue()
1573
uhci->frame_number + uhci->
is_stopped
!= qh->unlink_frame)
1596
qh->
is_stopped
= 1;
in uhci_scan_qh()
1597
else if (!qh->
is_stopped
)
in uhci_scan_qh()
1609
qh->
is_stopped
= 1;
in uhci_scan_qh()
1610
else if (!qh->
is_stopped
)
in uhci_scan_qh()
[all...]
H
A
D
uhci-hcd.c
144
uhci->
is_stopped
= UHCI_IS_STOPPED;
in finish_reset()
372
uhci->
is_stopped
= UHCI_IS_STOPPED;
390
uhci->
is_stopped
= 0;
in start_rh()
518
if (!uhci->
is_stopped
) {
in uhci_get_current_frame_number()
H
A
D
uhci-hcd.h
181
unsigned int
is_stopped
:1; /* Queue was stopped by error/unlink */
member
411
unsigned int
is_stopped
;
member
/kernel/linux/linux-6.6/drivers/usb/host/
H
A
D
uhci-q.c
31
if (uhci->
is_stopped
)
in uhci_set_next_interrupt()
326
ret = (uhci->frame_number + uhci->
is_stopped
!=
in uhci_cleanup_queue()
570
if (list_empty(&uhci->skel_unlink_qh->node) || uhci->
is_stopped
)
in uhci_unlink_qh()
1241
qh->
is_stopped
= 1;
in uhci_result_common()
1462
if (qh->queue.next == &urbp->node && !qh->
is_stopped
) {
in uhci_urb_enqueue()
1573
uhci->frame_number + uhci->
is_stopped
!= qh->unlink_frame)
1596
qh->
is_stopped
= 1;
in uhci_scan_qh()
1597
else if (!qh->
is_stopped
)
in uhci_scan_qh()
1609
qh->
is_stopped
= 1;
in uhci_scan_qh()
1610
else if (!qh->
is_stopped
)
in uhci_scan_qh()
[all...]
H
A
D
uhci-hcd.c
144
uhci->
is_stopped
= UHCI_IS_STOPPED;
in finish_reset()
372
uhci->
is_stopped
= UHCI_IS_STOPPED;
390
uhci->
is_stopped
= 0;
in start_rh()
518
if (!uhci->
is_stopped
) {
in uhci_get_current_frame_number()
H
A
D
uhci-hcd.h
181
unsigned int
is_stopped
:1; /* Queue was stopped by error/unlink */
member
407
unsigned int
is_stopped
;
member
/kernel/linux/linux-5.10/drivers/staging/media/rkisp1/
H
A
D
rkisp1-capture.c
68
bool (*
is_stopped
)(struct rkisp1_capture *cap);
member
574
.
is_stopped
= rkisp1_mp_is_stopped,
583
.
is_stopped
= rkisp1_sp_is_stopped,
713
if (!cap->ops->
is_stopped
(cap)) {
in rkisp1_capture_isr()
/kernel/linux/linux-6.6/drivers/media/platform/rockchip/rkisp1/
H
A
D
rkisp1-capture.c
68
bool (*
is_stopped
)(struct rkisp1_capture *cap);
member
595
.
is_stopped
= rkisp1_mp_is_stopped,
604
.
is_stopped
= rkisp1_sp_is_stopped,
752
if (!cap->ops->
is_stopped
(cap)) {
in rkisp1_capture_isr()
/kernel/linux/linux-5.10/drivers/net/ethernet/marvell/
H
A
D
mvneta.c
479
bool
is_stopped
;
member
4203
if (pp->
is_stopped
) {
in mvneta_cpu_online()
4321
pp->
is_stopped
= false;
in mvneta_open()
4380
pp->
is_stopped
= true;
in mvneta_stop()
5343
pp->
is_stopped
= true;
in mvneta_suspend()
5424
pp->
is_stopped
= false;
in mvneta_resume()
/kernel/linux/linux-6.6/drivers/net/ethernet/marvell/
H
A
D
mvneta.c
516
bool
is_stopped
;
member
4392
if (pp->
is_stopped
) {
in mvneta_cpu_online()
4510
pp->
is_stopped
= false;
in mvneta_open()
4569
pp->
is_stopped
= true;
in mvneta_stop()
5775
pp->
is_stopped
= true;
in mvneta_suspend()
5856
pp->
is_stopped
= false;
in mvneta_resume()
/kernel/linux/linux-5.10/drivers/block/mtip32xx/
H
A
D
mtip32xx.c
3403
static inline bool
is_stopped
(struct driver_data *dd, struct request *rq)
in is_stopped()
function
3497
if (is_se_active(dd) ||
is_stopped
(dd, rq))
in mtip_queue_rq()
/kernel/linux/linux-6.6/drivers/block/mtip32xx/
H
A
D
mtip32xx.c
3229
static inline bool
is_stopped
(struct driver_data *dd, struct request *rq)
in is_stopped()
function
3323
if (is_se_active(dd) ||
is_stopped
(dd, rq))
in mtip_queue_rq()
Completed in 56 milliseconds