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:DES_LENGTH
(Results
1 - 7
of
7
) sorted by relevance
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/zip/
H
A
D
DataDescriptor.java
36
public static final int
DES_LENGTH
= 16;
field in DataDescriptor
66
if (bytes.length !=
DES_LENGTH
) {
in getDataDescriptor()
87
ByteBuffer bf = ByteBuffer.allocate(
DES_LENGTH
).order(ByteOrder.LITTLE_ENDIAN);
in toBytes()
96
return
DES_LENGTH
;
in getDesLength()
H
A
D
ZipEntryData.java
117
byte[] desBytes = FileUtils.readInputByLength(input, DataDescriptor.
DES_LENGTH
);
in getZipEntry()
119
entryLength += DataDescriptor.
DES_LENGTH
;
in getZipEntry()
H
A
D
ZipEntry.java
100
+ (zipEntryData.getDataDescriptor() == null ? 0 : DataDescriptor.
DES_LENGTH
));
in setEntryHeaderNewExtraLength()
/developtools/hapsigner/hapsigntool_cpp/zip/src/
H
A
D
data_descriptor.cpp
23
if (bytes.size() !=
DES_LENGTH
) {
in GetDataDescriptor()
54
ByteBuffer bf(
DES_LENGTH
);
in ToBytes()
65
return
DES_LENGTH
;
in GetDesLength()
H
A
D
zip_entry_data.cpp
60
if (FileUtils::ReadInputByLength(input, DataDescriptor::
DES_LENGTH
, retStr) != 0) {
in GetZipEntry()
68
entryLength += DataDescriptor::
DES_LENGTH
;
in GetZipEntry()
H
A
D
zip_entry.cpp
100
(m_zipEntryData->GetDataDescriptor() == nullptr ? 0 : DataDescriptor::
DES_LENGTH
));
in SetEntryHeaderNewExtraLength()
/developtools/hapsigner/hapsigntool_cpp/zip/include/
H
A
D
data_descriptor.h
33
static constexpr int
DES_LENGTH
= 16;
member in OHOS::SignatureTools::DataDescriptor
Completed in 4 milliseconds