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:console_driver
(Results
1 - 4
of
4
) sorted by relevance
/kernel/linux/linux-5.10/drivers/tty/vt/
H
A
D
vt.c
3038
struct tty_driver *
console_driver
;
variable
3157
return
console_driver
;
in vt_console_device()
3611
console_driver
= alloc_tty_driver(MAX_NR_CONSOLES);
in vty_init()
3612
if (!
console_driver
)
in vty_init()
3615
console_driver
->name = "tty";
in vty_init()
3616
console_driver
->name_base = 1;
in vty_init()
3617
console_driver
->major = TTY_MAJOR;
in vty_init()
3618
console_driver
->minor_start = 1;
in vty_init()
3619
console_driver
->type = TTY_DRIVER_TYPE_CONSOLE;
in vty_init()
3620
console_driver
in vty_init()
[all...]
/kernel/linux/linux-6.6/drivers/tty/vt/
H
A
D
vt.c
2990
struct tty_driver *
console_driver
;
variable
3109
return
console_driver
;
in vt_console_device()
3544
console_driver
= tty_alloc_driver(MAX_NR_CONSOLES, TTY_DRIVER_REAL_RAW |
in vty_init()
3546
if (IS_ERR(
console_driver
))
in vty_init()
3549
console_driver
->name = "tty";
in vty_init()
3550
console_driver
->name_base = 1;
in vty_init()
3551
console_driver
->major = TTY_MAJOR;
in vty_init()
3552
console_driver
->minor_start = 1;
in vty_init()
3553
console_driver
->type = TTY_DRIVER_TYPE_CONSOLE;
in vty_init()
3554
console_driver
in vty_init()
[all...]
/kernel/linux/linux-5.10/drivers/tty/
H
A
D
tty_io.c
1930
extern struct tty_driver *
console_driver
;
in tty_lookup_driver()
1931
driver = tty_driver_kref_get(
console_driver
);
in tty_lookup_driver()
1937
struct tty_driver *
console_driver
= console_device(index);
in tty_lookup_driver()
local
1938
if (
console_driver
) {
in tty_lookup_driver()
1939
driver = tty_driver_kref_get(
console_driver
);
in tty_lookup_driver()
/kernel/linux/linux-6.6/drivers/tty/
H
A
D
tty_io.c
1920
extern struct tty_driver *
console_driver
;
in tty_lookup_driver()
1922
driver = tty_driver_kref_get(
console_driver
);
in tty_lookup_driver()
1928
struct tty_driver *
console_driver
= console_device(index);
in tty_lookup_driver()
local
1930
if (
console_driver
) {
in tty_lookup_driver()
1931
driver = tty_driver_kref_get(
console_driver
);
in tty_lookup_driver()
Completed in 18 milliseconds