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:rcvmem
(Results
1 - 3
of
3
) sorted by relevance
/kernel/linux/common_modules/newip/third_party/linux-5.10/net/newip/
H
A
D
tcp_nip_input.c
1822
int
rcvmem
;
in tcp_nip_fixup_rcvbuf()
local
1824
rcvmem
= TCP_NUM_2 * SKB_TRUESIZE(mss + MAX_TCP_HEADER) *
in tcp_nip_fixup_rcvbuf()
1828
rcvmem
<<= TCP_NIP_4BYTE_PAYLOAD;
in tcp_nip_fixup_rcvbuf()
1830
if (sk->sk_rcvbuf <
rcvmem
)
in tcp_nip_fixup_rcvbuf()
1831
sk->sk_rcvbuf = min(
rcvmem
,
in tcp_nip_fixup_rcvbuf()
/kernel/linux/linux-5.10/net/mptcp/
H
A
D
protocol.c
1426
int
rcvmem
, rcvbuf;
in mptcp_rcv_space_adjust()
local
1436
rcvmem
= SKB_TRUESIZE(advmss + MAX_TCP_HEADER);
in mptcp_rcv_space_adjust()
1437
while (tcp_win_from_space(sk,
rcvmem
) < advmss)
in mptcp_rcv_space_adjust()
1438
rcvmem
+= 128;
in mptcp_rcv_space_adjust()
1441
rcvbuf = min_t(u64, rcvwin *
rcvmem
,
in mptcp_rcv_space_adjust()
/kernel/linux/linux-5.10/net/ipv4/
H
A
D
tcp_input.c
736
int
rcvmem
, rcvbuf;
in tcp_rcv_space_adjust()
local
749
rcvmem
= SKB_TRUESIZE(tp->advmss + MAX_TCP_HEADER);
in tcp_rcv_space_adjust()
750
while (tcp_win_from_space(sk,
rcvmem
) < tp->advmss)
in tcp_rcv_space_adjust()
751
rcvmem
+= 128;
in tcp_rcv_space_adjust()
754
rcvbuf = min_t(u64, rcvwin *
rcvmem
,
in tcp_rcv_space_adjust()
Completed in 15 milliseconds