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:EOCD_LENGTH
(Results
1 - 6
of
6
) sorted by relevance
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/zip/
H
A
D
EndOfCentralDirectory.java
46
public static final int
EOCD_LENGTH
= 22;
field in EndOfCentralDirectory
115
if (remainingDataLen <
EOCD_LENGTH
) {
in getEOCDByBytes()
138
eocd.setLength(
EOCD_LENGTH
+ eocd.getCommentLength());
in getEOCDByBytes()
167
return
EOCD_LENGTH
;
in getEocdLength()
H
A
D
Zip.java
104
if (file.length() < EndOfCentralDirectory.
EOCD_LENGTH
) {
in getZipEndOfCentralDirectory()
109
int eocdLength = EndOfCentralDirectory.
EOCD_LENGTH
;
in getZipEndOfCentralDirectory()
118
long eocdMaxLength = Math.min(EndOfCentralDirectory.
EOCD_LENGTH
+ MAX_COMMENT_LENGTH, file.length());
in getZipEndOfCentralDirectory()
/developtools/hapsigner/hapsigntool_cpp/zip/src/
H
A
D
endof_central_directory.cpp
32
if (remainingDataLen <
EOCD_LENGTH
) {
in GetEOCDByBytes()
34
SIGNATURE_TOOLS_LOGE("remainingDataLen is less than
EOCD_LENGTH
, remainingDataLen: %d, "
in GetEOCDByBytes()
35
"
EOCD_LENGTH
: %d", remainingDataLen,
EOCD_LENGTH
);
in GetEOCDByBytes()
62
eocd->SetLength(
EOCD_LENGTH
+ commentLength);
in GetEOCDByBytes()
119
return
EOCD_LENGTH
;
in GetEocdLength()
H
A
D
zip_signer.cpp
71
if (fileSize < EndOfCentralDirectory::
EOCD_LENGTH
) {
in GetZipEndOfCentralDirectory()
77
int eocdLength = EndOfCentralDirectory::
EOCD_LENGTH
;
in GetZipEndOfCentralDirectory()
93
uint64_t eocdMaxLength = std::min(static_cast<uint64_t>(EndOfCentralDirectory::
EOCD_LENGTH
+ MAX_COMMENT_LENGTH),
in GetZipEndOfCentralDirectory()
/developtools/hapsigner/hapsigntool_cpp/zip/include/
H
A
D
endof_central_directory.h
47
static constexpr int
EOCD_LENGTH
= 22;
member in OHOS::SignatureTools::EndOfCentralDirectory
/developtools/hapsigner/hapsigntool_cpp_test/unittest/zip/
H
A
D
zip_signer_test.cpp
378
int eocdLength = EndOfCentralDirectory::
EOCD_LENGTH
;
in HWTEST_F()
Completed in 4 milliseconds