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:early_stop
(Results
1 - 3
of
3
) sorted by relevance
/kernel/linux/linux-6.6/drivers/usb/core/
H
A
D
port.c
26
return sysfs_emit(buf, "%s\n", port_dev->
early_stop
? "yes" : "no");
in early_stop_show()
39
port_dev->
early_stop
= 1;
in early_stop_store()
41
port_dev->
early_stop
= 0;
in early_stop_store()
45
static DEVICE_ATTR_RW(
early_stop
);
H
A
D
hub.h
95
* @
early_stop
: whether port initialization will be stopped earlier.
112
unsigned int
early_stop
:1;
member
H
A
D
hub.c
3109
* marked with
early_stop
attribute would stop enumeration or ignore events.
3112
* This function didn't change anything if
early_stop
is not set, and it will
3113
* prevent all connection attempts when
early_stop
is set and the attempts of
3120
if (port_dev->
early_stop
) {
in hub_port_stop_enumerate()
5728
/* skip port actions if ignore_event and
early_stop
are true */
5729
if (port_dev->ignore_event && port_dev->
early_stop
)
Completed in 9 milliseconds