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:notif_urb
(Results
1 - 3
of
3
) sorted by relevance
/kernel/linux/linux-5.10/drivers/net/wimax/i2400m/
H
A
D
usb-notif.c
156
ret = usb_submit_urb(i2400mu->
notif_urb
, GFP_ATOMIC);
in i2400mu_notification_cb()
206
i2400mu->
notif_urb
= usb_alloc_urb(0, GFP_KERNEL);
in i2400mu_notification_setup()
207
if (!i2400mu->
notif_urb
) {
in i2400mu_notification_setup()
214
usb_fill_int_urb(i2400mu->
notif_urb
, i2400mu->usb_dev, usb_pipe,
in i2400mu_notification_setup()
217
ret = usb_submit_urb(i2400mu->
notif_urb
, GFP_KERNEL);
in i2400mu_notification_setup()
226
usb_free_urb(i2400mu->
notif_urb
);
in i2400mu_notification_setup()
251
if (i2400mu->
notif_urb
!= NULL) {
in i2400mu_notification_release()
252
usb_kill_urb(i2400mu->
notif_urb
);
in i2400mu_notification_release()
253
kfree(i2400mu->
notif_urb
->transfer_buffer);
in i2400mu_notification_release()
254
usb_free_urb(i2400mu->
notif_urb
);
in i2400mu_notification_release()
[all...]
H
A
D
usb-fw.c
283
struct urb
notif_urb
;
in i2400mu_bus_bm_wait_for_ack()
local
298
usb_init_urb(&
notif_urb
); /* ready notifications */
in i2400mu_bus_bm_wait_for_ack()
299
usb_get_urb(&
notif_urb
);
in i2400mu_bus_bm_wait_for_ack()
303
result = i2400mu_notif_submit(i2400mu, &
notif_urb
,
in i2400mu_bus_bm_wait_for_ack()
311
usb_kill_urb(&
notif_urb
); /* Timedout */
in i2400mu_bus_bm_wait_for_ack()
316
usb_kill_urb(&
notif_urb
);
in i2400mu_bus_bm_wait_for_ack()
319
result =
notif_urb
.status; /* How was the ack? */
in i2400mu_bus_bm_wait_for_ack()
331
usb_kill_urb(&
notif_urb
); /* Timedout */
in i2400mu_bus_bm_wait_for_ack()
336
"retrying\n",
notif_urb
.status);
in i2400mu_bus_bm_wait_for_ack()
339
if (
notif_urb
in i2400mu_bus_bm_wait_for_ack()
[all...]
H
A
D
i2400m-usb.h
177
* @
notif_urb
: URB for receiving notifications from the device.
230
struct urb *
notif_urb
;
member
Completed in 3 milliseconds