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:COPY_BUFSIZE
(Results
1 - 2
of
2
) sorted by relevance
/third_party/lwip/src/apps/http/makefsdata/
H
A
D
makefsdata.c
30
#define
COPY_BUFSIZE
(1024*1024) /* 1 MByte */
macro
44
#define COMP_OUT_BUF_SIZE
COPY_BUFSIZE
48
#define OUT_BUF_SIZE
COPY_BUFSIZE
129
static char file_buffer_c[
COPY_BUFSIZE
* 5 + ((
COPY_BUFSIZE
/ HEX_BYTES_PER_LINE) * 3)];
414
buf = malloc(
COPY_BUFSIZE
);
in copy_file()
415
while ((len = fread(buf, 1,
COPY_BUFSIZE
, fin)) > 0) {
in copy_file()
586
LWIP_ASSERT("out_bytes <=
COPY_BUFSIZE
", out_bytes <= OUT_BUF_SIZE);
in get_file_data()
/third_party/python/Lib/
H
A
D
shutil.py
42
COPY_BUFSIZE
= 1024 * 1024 if _WINDOWS else 64 * 1024
variable
170
def _copyfileobj_readinto(fsrc, fdst, length=
COPY_BUFSIZE
):
192
length =
COPY_BUFSIZE
276
_copyfileobj_readinto(fsrc, fdst, min(file_size,
COPY_BUFSIZE
))
Completed in 5 milliseconds