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:newbuflen
(Results
1 - 4
of
4
) sorted by relevance
/kernel/linux/linux-5.10/net/sunrpc/
H
A
D
xdr.c
916
* @
newbuflen
: new maximum number of bytes available
920
* If the available space is already smaller than
newbuflen
, returns 0
921
* and does nothing. Otherwise, adjusts xdr->buf->buflen to
newbuflen
922
* and ensures xdr->end is set at most offset
newbuflen
from the start
925
int xdr_restrict_buflen(struct xdr_stream *xdr, int
newbuflen
)
in xdr_restrict_buflen()
argument
931
if (
newbuflen
< 0 ||
newbuflen
< buf->len)
in xdr_restrict_buflen()
933
if (
newbuflen
> buf->buflen)
in xdr_restrict_buflen()
935
if (
newbuflen
< end_offset)
in xdr_restrict_buflen()
936
xdr->end = (void *)xdr->end +
newbuflen
in xdr_restrict_buflen()
[all...]
/kernel/linux/linux-6.6/net/sunrpc/
H
A
D
xdr.c
1253
* @
newbuflen
: new maximum number of bytes available
1257
* If the available space is already smaller than
newbuflen
, returns 0
1258
* and does nothing. Otherwise, adjusts xdr->buf->buflen to
newbuflen
1259
* and ensures xdr->end is set at most offset
newbuflen
from the start
1262
int xdr_restrict_buflen(struct xdr_stream *xdr, int
newbuflen
)
in xdr_restrict_buflen()
argument
1268
if (
newbuflen
< 0 ||
newbuflen
< buf->len)
in xdr_restrict_buflen()
1270
if (
newbuflen
> buf->buflen)
in xdr_restrict_buflen()
1272
if (
newbuflen
< end_offset)
in xdr_restrict_buflen()
1273
xdr->end = (void *)xdr->end +
newbuflen
in xdr_restrict_buflen()
[all...]
/kernel/linux/linux-5.10/include/linux/sunrpc/
H
A
D
xdr.h
240
extern int xdr_restrict_buflen(struct xdr_stream *xdr, int
newbuflen
);
/kernel/linux/linux-6.6/include/linux/sunrpc/
H
A
D
xdr.h
252
extern int xdr_restrict_buflen(struct xdr_stream *xdr, int
newbuflen
);
Completed in 12 milliseconds