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:extraLength
(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
ZipEntryHeader.java
102
private int
extraLength
;
field in ZipEntryHeader
120
length = HEADER_LENGTH + fileNameLength +
extraLength
;
in updateLength()
174
if (
extraLength
> 0) {
in readExtra()
175
byte[] extra = new byte[
extraLength
];
in readExtra()
198
UnsignedDecimalUtil.setUnsignedShort(bf,
extraLength
);
in toBytes()
202
if (
extraLength
> 0) {
in toBytes()
289
return
extraLength
;
in getExtraLength()
292
public void setExtraLength(int
extraLength
) {
in setExtraLength()
argument
293
this.
extraLength
=
extraLength
;
in setExtraLength()
[all...]
H
A
D
CentralDirectory.java
114
private int
extraLength
;
field in CentralDirectory
162
length = CD_LENGTH + fileNameLength +
extraLength
+ commentLength;
in updateLength()
231
UnsignedDecimalUtil.setUnsignedShort(bf,
extraLength
);
in toBytes()
240
if (
extraLength
> 0) {
in toBytes()
338
return
extraLength
;
in getExtraLength()
341
public void setExtraLength(int
extraLength
) {
in setExtraLength()
argument
342
this.
extraLength
=
extraLength
;
in setExtraLength()
/developtools/hapsigner/hapsigntool_cpp/zip/src/
H
A
D
central_directory.cpp
38
uint16_t
extraLength
= cd->GetExtraLength();
in GetCentralDirectory()
local
39
if (
extraLength
> 0) {
in GetCentralDirectory()
40
std::string extra(
extraLength
, 0);
in GetCentralDirectory()
41
bf.GetData(&extra[0],
extraLength
);
in GetCentralDirectory()
50
cd->SetLength(CD_LENGTH + fileNameLength +
extraLength
+ commentLength);
in GetCentralDirectory()
259
void CentralDirectory::SetExtraLength(uint16_t
extraLength
)
in SetExtraLength()
argument
261
m_extraLength =
extraLength
;
in SetExtraLength()
H
A
D
zip_entry_header.cpp
223
void ZipEntryHeader::SetExtraLength(uint16_t
extraLength
)
in SetExtraLength()
argument
225
m_extraLength =
extraLength
;
in SetExtraLength()
/developtools/hapsigner/hapsigntool_cpp/zip/include/
H
A
D
zip_entry_header.h
107
void SetExtraLength(uint16_t
extraLength
);
H
A
D
central_directory.h
103
void SetExtraLength(uint16_t
extraLength
);
Completed in 3 milliseconds