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:rcl_lines
(Results
1 - 2
of
2
) sorted by relevance
/kernel/linux/linux-6.6/drivers/s390/char/
H
A
D
con3270.c
120
char **
rcl_lines
; /* Array of recallable lines */
member
591
p = tp->
rcl_lines
[tp->rcl_write_index++];
in tty3270_rcl_add()
608
} while (!*tp->
rcl_lines
[tp->rcl_read_index] &&
in tty3270_rcl_backward()
610
tty3270_update_prompt(tp, tp->
rcl_lines
[tp->rcl_read_index]);
in tty3270_rcl_backward()
1009
old_rcl_lines = tp->
rcl_lines
;
in tty3270_resize()
1012
tp->
rcl_lines
= new_rcl_lines;
in tty3270_resize()
1139
tp->
rcl_lines
= tty3270_alloc_recall(tp->view.cols);
in tty3270_create_view()
1140
if (!tp->
rcl_lines
) {
in tty3270_create_view()
/kernel/linux/linux-5.10/drivers/s390/char/
H
A
D
tty3270.c
106
struct list_head
rcl_lines
; /* List of recallable lines. */
member
107
struct list_head *rcl_walk; /* Point in
rcl_lines
list. */
108
int rcl_nr, rcl_max; /* Number/max number of
rcl_lines
. */
465
s = list_entry(tp->
rcl_lines
.next, struct string, list);
in tty3270_rcl_add()
472
list_add_tail(&s->list, &tp->
rcl_lines
);
in tty3270_rcl_add()
484
if (tp->rcl_walk && tp->rcl_walk->prev != &tp->
rcl_lines
)
in tty3270_rcl_backward()
486
else if (!list_empty(&tp->
rcl_lines
))
in tty3270_rcl_backward()
487
tp->rcl_walk = tp->
rcl_lines
.prev;
in tty3270_rcl_backward()
731
INIT_LIST_HEAD(&tp->
rcl_lines
);
in tty3270_alloc_view()
Completed in 9 milliseconds