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:new_ldisc
(Results
1 - 4
of
4
) sorted by relevance
/kernel/linux/linux-6.6/drivers/tty/
H
A
D
tty_ldisc.c
51
* @
new_ldisc
: pointer to the ldisc object
58
int tty_register_ldisc(struct tty_ldisc_ops *
new_ldisc
)
in tty_register_ldisc()
argument
62
if (
new_ldisc
->num < N_TTY ||
new_ldisc
->num >= NR_LDISCS)
in tty_register_ldisc()
66
tty_ldiscs[
new_ldisc
->num] =
new_ldisc
;
in tty_register_ldisc()
522
struct tty_ldisc *old_ldisc, *
new_ldisc
;
in tty_set_ldisc()
local
524
new_ldisc
= tty_ldisc_get(tty, disc);
in tty_set_ldisc()
525
if (IS_ERR(
new_ldisc
))
in tty_set_ldisc()
526
return PTR_ERR(
new_ldisc
);
in tty_set_ldisc()
[all...]
/kernel/linux/linux-5.10/drivers/tty/
H
A
D
tty_ldisc.c
52
* @
new_ldisc
: pointer to the ldisc object
62
int tty_register_ldisc(int disc, struct tty_ldisc_ops *
new_ldisc
)
in tty_register_ldisc()
argument
71
tty_ldiscs[disc] =
new_ldisc
;
in tty_register_ldisc()
72
new_ldisc
->num = disc;
in tty_register_ldisc()
73
new_ldisc
->refcount = 0;
in tty_register_ldisc()
556
struct tty_ldisc *old_ldisc, *
new_ldisc
;
in tty_set_ldisc()
local
558
new_ldisc
= tty_ldisc_get(tty, disc);
in tty_set_ldisc()
559
if (IS_ERR(
new_ldisc
))
in tty_set_ldisc()
560
return PTR_ERR(
new_ldisc
);
in tty_set_ldisc()
588
tty->ldisc =
new_ldisc
;
in tty_set_ldisc()
[all...]
/kernel/linux/linux-6.6/include/linux/
H
A
D
tty_ldisc.h
285
int tty_register_ldisc(struct tty_ldisc_ops *
new_ldisc
);
/kernel/linux/linux-5.10/include/linux/
H
A
D
tty.h
643
extern int tty_register_ldisc(int disc, struct tty_ldisc_ops *
new_ldisc
);
Completed in 5 milliseconds