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:FILE_BUFFER_BLOCK
(Results
1 - 6
of
6
) sorted by relevance
/developtools/hapsigner/hapsigntool_cpp/utils/src/
H
A
D
file_utils.cpp
101
std::string buffer(FileUtils::
FILE_BUFFER_BLOCK
, 0);
in Read()
162
std::string buffer(
FILE_BUFFER_BLOCK
, 0);
in ReadInputByLength()
165
int readLen = static_cast<int>(std::min(length - hasReadLen, (size_t)
FILE_BUFFER_BLOCK
));
in ReadInputByLength()
214
char* buffer = new char[
FILE_BUFFER_BLOCK
];
in AppendWriteFileToFile()
216
input.read(buffer,
FILE_BUFFER_BLOCK
);
in AppendWriteFileToFile()
266
char* buf = new (std::nothrow)char[
FILE_BUFFER_BLOCK
];
in WriteInputToOutPut()
271
int min = std::min(dataSize,
FILE_BUFFER_BLOCK
);
in WriteInputToOutPut()
308
char* buffer = new char[
FILE_BUFFER_BLOCK
];
in WriteInputToOutPut()
310
in.read(buffer,
FILE_BUFFER_BLOCK
);
in WriteInputToOutPut()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/utils/
H
A
D
FileUtils.java
64
public static final int
FILE_BUFFER_BLOCK
= 1024 * 1024;
field in FileUtils
136
byte[] buffer = new byte[
FILE_BUFFER_BLOCK
];
in read()
196
byte[] buffer = new byte[
FILE_BUFFER_BLOCK
];
in writeInputToOutPut()
199
int readLen = (int) Math.min(length - hasReadLen,
FILE_BUFFER_BLOCK
);
in writeInputToOutPut()
313
byte[] buf = new byte[
FILE_BUFFER_BLOCK
];
in writeFileToDos()
/developtools/hapsigner/hapsigntool_cpp/hap/sign/include/
H
A
D
sign_elf.h
41
static constexpr int
FILE_BUFFER_BLOCK
= 16384;
member in OHOS::SignatureTools::SignElf
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/sign/
H
A
D
SignElf.java
66
private static final int
FILE_BUFFER_BLOCK
= 16384;
field in SignElf
120
byte[] buffer = new byte[
FILE_BUFFER_BLOCK
];
in alignFileBy4kBytes()
/developtools/hapsigner/hapsigntool_cpp/hap/sign/src/
H
A
D
sign_elf.cpp
87
char buffer[
FILE_BUFFER_BLOCK
];
in AlignFileBy4kBytes()
163
char buffer[
FILE_BUFFER_BLOCK
];
/developtools/hapsigner/hapsigntool_cpp/utils/include/
H
A
D
file_utils.h
37
static constexpr int
FILE_BUFFER_BLOCK
= 1024 * 1024;
member in OHOS::SignatureTools::FileUtils
Completed in 4 milliseconds