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:SIGNATURE
(Results
1 - 12
of
12
) sorted by relevance
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/zip/
H
A
D
DataDescriptor.java
41
public static final int
SIGNATURE
= 0x08074b50;
field in DataDescriptor
72
if (bf.getInt() !=
SIGNATURE
) {
in getDataDescriptor()
88
bf.putInt(
SIGNATURE
);
in toBytes()
100
return
SIGNATURE
;
in getSIGNATURE()
H
A
D
EndOfCentralDirectory.java
51
public static final int
SIGNATURE
= 0x06054b50;
field in EndOfCentralDirectory
120
if (bf.getInt() !=
SIGNATURE
) {
in getEOCDByBytes()
152
bf.putInt(
SIGNATURE
);
in toBytes()
171
return
SIGNATURE
;
in getSIGNATURE()
H
A
D
ZipEntryHeader.java
52
public static final int
SIGNATURE
= 0x04034b50;
field in ZipEntryHeader
134
if (bf.getInt() != ZipEntryHeader.
SIGNATURE
) {
in getZipEntryHeader()
188
bf.putInt(
SIGNATURE
);
in toBytes()
213
return
SIGNATURE
;
in getSIGNATURE()
H
A
D
CentralDirectory.java
59
public static final int
SIGNATURE
= 0x02014b50;
field in CentralDirectory
174
if (bf.getInt() !=
SIGNATURE
) {
in getCentralDirectory()
220
bf.putInt(
SIGNATURE
);
in toBytes()
254
return
SIGNATURE
;
in getSIGNATURE()
/developtools/hapsigner/hapsigntool_cpp/zip/src/
H
A
D
data_descriptor.cpp
33
if (signValue !=
SIGNATURE
) {
in GetDataDescriptor()
55
bf.PutInt32(
SIGNATURE
);
in ToBytes()
70
return
SIGNATURE
;
in GetSIGNATURE()
H
A
D
endof_central_directory.cpp
43
if (signValue !=
SIGNATURE
) {
in GetEOCDByBytes()
101
bf.PutInt32(
SIGNATURE
);
in ToBytes()
124
return
SIGNATURE
;
in GetSIGNATURE()
H
A
D
zip_entry_header.cpp
28
if (entryHeaderInt32Value != ZipEntryHeader::
SIGNATURE
) {
in GetZipEntryHeader()
96
bf.PutInt32(
SIGNATURE
);
in ToBytes()
125
return
SIGNATURE
;
in GetSIGNATURE()
H
A
D
central_directory.cpp
25
if (signatureValue !=
SIGNATURE
) {
in GetCentralDirectory()
113
bf.PutInt32(
SIGNATURE
);
in ToBytes()
151
return
SIGNATURE
;
in GetSIGNATURE()
/developtools/hapsigner/hapsigntool_cpp/zip/include/
H
A
D
data_descriptor.h
36
static constexpr int
SIGNATURE
= 0x08074b50;
member in OHOS::SignatureTools::DataDescriptor
H
A
D
zip_entry_header.h
48
static constexpr int
SIGNATURE
= 0x04034b50;
member in OHOS::SignatureTools::ZipEntryHeader
H
A
D
endof_central_directory.h
50
static constexpr int
SIGNATURE
= 0x06054b50;
member in OHOS::SignatureTools::EndOfCentralDirectory
H
A
D
central_directory.h
55
static constexpr int
SIGNATURE
= 0x02014b50;
member in OHOS::SignatureTools::CentralDirectory
Completed in 7 milliseconds