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:ssp_cap
(Results
1 - 11
of
11
) sorted by relevance
/kernel/linux/linux-6.6/drivers/usb/host/
H
A
D
xhci-hub.c
40
struct usb_ssp_cap_descriptor *
ssp_cap
;
in xhci_create_usb3x_bos_desc()
local
127
ssp_cap
= (struct usb_ssp_cap_descriptor *)&buf[USB_DT_BOS_SIZE +
in xhci_create_usb3x_bos_desc()
129
ssp_cap
->bLength = USB_DT_USB_SSP_CAP_SIZE(ssac);
in xhci_create_usb3x_bos_desc()
130
ssp_cap
->bDescriptorType = USB_DT_DEVICE_CAPABILITY;
in xhci_create_usb3x_bos_desc()
131
ssp_cap
->bDevCapabilityType = USB_SSP_CAP_TYPE;
in xhci_create_usb3x_bos_desc()
132
ssp_cap
->bReserved = 0;
in xhci_create_usb3x_bos_desc()
133
ssp_cap
->wReserved = 0;
in xhci_create_usb3x_bos_desc()
134
ssp_cap
->bmAttributes =
in xhci_create_usb3x_bos_desc()
140
ssp_cap
->bmSublinkSpeedAttr[i] =
in xhci_create_usb3x_bos_desc()
226
ssp_cap
in xhci_create_usb3x_bos_desc()
[all...]
/kernel/linux/linux-5.10/drivers/usb/gadget/
H
A
D
composite.c
736
struct usb_ssp_cap_descriptor *
ssp_cap
;
in bos_desc()
local
738
ssp_cap
= cdev->req->buf + le16_to_cpu(bos->wTotalLength);
in bos_desc()
746
ssp_cap
->bLength = USB_DT_USB_SSP_CAP_SIZE(1);
in bos_desc()
747
ssp_cap
->bDescriptorType = USB_DT_DEVICE_CAPABILITY;
in bos_desc()
748
ssp_cap
->bDevCapabilityType = USB_SSP_CAP_TYPE;
in bos_desc()
749
ssp_cap
->bReserved = 0;
in bos_desc()
750
ssp_cap
->wReserved = 0;
in bos_desc()
753
ssp_cap
->bmAttributes = cpu_to_le32(1);
in bos_desc()
756
ssp_cap
->wFunctionalitySupport =
in bos_desc()
766
ssp_cap
in bos_desc()
[all...]
/kernel/linux/linux-5.10/drivers/usb/core/
H
A
D
config.c
995
struct usb_ssp_cap_descriptor *
ssp_cap
;
in usb_get_bos_descriptor()
local
1078
ssp_cap
= (struct usb_ssp_cap_descriptor *)buffer;
in usb_get_bos_descriptor()
1079
ssac = (le32_to_cpu(
ssp_cap
->bmAttributes) &
in usb_get_bos_descriptor()
1082
dev->bos->
ssp_cap
=
ssp_cap
;
in usb_get_bos_descriptor()
H
A
D
hub.h
144
hdev->bos && hdev->bos->
ssp_cap
);
in hub_is_superspeedplus()
H
A
D
hub.c
2716
struct usb_ssp_cap_descriptor *
ssp_cap
= hdev->bos->
ssp_cap
;
in get_port_ssp_rate()
local
2723
if (!
ssp_cap
)
in get_port_ssp_rate()
2729
ssac = le32_to_cpu(
ssp_cap
->bmAttributes) &
in get_port_ssp_rate()
2735
attr = le32_to_cpu(
ssp_cap
->bmSublinkSpeedAttr[i]);
in get_port_ssp_rate()
2791
struct usb_ssp_cap_descriptor *
ssp_cap
;
in port_speed_is_ssp()
local
2796
ssp_cap
= hdev->bos->
ssp_cap
;
in port_speed_is_ssp()
2797
if (!
ssp_cap
)
in port_speed_is_ssp()
2800
ssa_count = le32_to_cpu(
ssp_cap
in port_speed_is_ssp()
[all...]
/kernel/linux/linux-6.6/drivers/usb/core/
H
A
D
config.c
983
struct usb_ssp_cap_descriptor *
ssp_cap
;
in usb_get_bos_descriptor()
local
1063
ssp_cap
= (struct usb_ssp_cap_descriptor *)buffer;
in usb_get_bos_descriptor()
1064
ssac = (le32_to_cpu(
ssp_cap
->bmAttributes) &
in usb_get_bos_descriptor()
1067
dev->bos->
ssp_cap
=
ssp_cap
;
in usb_get_bos_descriptor()
H
A
D
hub.h
156
hdev->bos && hdev->bos->
ssp_cap
);
in hub_is_superspeedplus()
H
A
D
hub.c
2724
struct usb_ssp_cap_descriptor *
ssp_cap
;
in get_port_ssp_rate()
local
2734
ssp_cap
= hdev->bos->
ssp_cap
;
in get_port_ssp_rate()
2735
if (!
ssp_cap
)
in get_port_ssp_rate()
2741
ssac = le32_to_cpu(
ssp_cap
->bmAttributes) &
in get_port_ssp_rate()
2747
attr = le32_to_cpu(
ssp_cap
->bmSublinkSpeedAttr[i]);
in get_port_ssp_rate()
/kernel/linux/linux-6.6/drivers/usb/gadget/
H
A
D
composite.c
801
struct usb_ssp_cap_descriptor *
ssp_cap
;
in bos_desc()
local
815
ssp_cap
= cdev->req->buf + le16_to_cpu(bos->wTotalLength);
in bos_desc()
819
ssp_cap
->bLength = USB_DT_USB_SSP_CAP_SIZE(ssac);
in bos_desc()
820
ssp_cap
->bDescriptorType = USB_DT_DEVICE_CAPABILITY;
in bos_desc()
821
ssp_cap
->bDevCapabilityType = USB_SSP_CAP_TYPE;
in bos_desc()
822
ssp_cap
->bReserved = 0;
in bos_desc()
823
ssp_cap
->wReserved = 0;
in bos_desc()
825
ssp_cap
->bmAttributes =
in bos_desc()
829
ssp_cap
->wFunctionalitySupport =
in bos_desc()
864
ssp_cap
in bos_desc()
[all...]
/kernel/linux/linux-5.10/include/linux/
H
A
D
usb.h
407
struct usb_ssp_cap_descriptor *
ssp_cap
;
member
/kernel/linux/linux-6.6/include/linux/
H
A
D
usb.h
429
struct usb_ssp_cap_descriptor *
ssp_cap
;
member
Completed in 27 milliseconds