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:PAGE_SIZE_4K
(Results
1 - 16
of
16
) sorted by relevance
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/codesigning/datastructure/
H
A
D
ElfSignBlock.java
54
public static final int
PAGE_SIZE_4K
= 4096;
field in ElfSignBlock
111
return (int) (
PAGE_SIZE_4K
- (signBlockOffset + Integer.BYTES * 2) %
PAGE_SIZE_4K
) %
PAGE_SIZE_4K
;
in computeMerkleTreePaddingLength()
H
A
D
CodeSignBlock.java
51
public static final long
PAGE_SIZE_4K
= 4096L;
field in CodeSignBlock
228
long residual = (codeSignBlockOffset + sizeWithoutMerkleTree) %
PAGE_SIZE_4K
;
in computeMerkleTreeOffset()
232
this.zeroPadding = new byte[(int) (
PAGE_SIZE_4K
- residual)];
in computeMerkleTreeOffset()
/developtools/hapsigner/hapsigntool_cpp/codesigning/datastructure/src/
H
A
D
elf_sign_block.cpp
131
return (int32_t)(
PAGE_SIZE_4K
- (signBlockOffset + FsVerityDescriptorWithSign::INTEGER_BYTES * tmpVariable)
in ComputeMerkleTreePaddingLength()
132
%
PAGE_SIZE_4K
) %
PAGE_SIZE_4K
;
in ComputeMerkleTreePaddingLength()
H
A
D
merkle_tree_extension.cpp
79
if (!flag || (inMerkleTreeSize %
PAGE_SIZE_4K
!= 0)) {
in FromByteArray()
86
if (!flag || (inMerkleTreeOffset %
PAGE_SIZE_4K
!= 0)) {
in FromByteArray()
H
A
D
code_sign_block.cpp
168
int64_t residual = (codeSignBlockOffset + sizeWithoutMerkleTree) %
PAGE_SIZE_4K
;
in ComputeMerkleTreeOffset()
172
zeroPadding = std::vector<int8_t>(static_cast<int>(
PAGE_SIZE_4K
- residual));
in ComputeMerkleTreeOffset()
/developtools/hapsigner/hapsigntool_cpp/codesigning/datastructure/include/
H
A
D
merkle_tree_extension.h
43
static constexpr int32_t
PAGE_SIZE_4K
= 4096;
member in OHOS::SignatureTools::MerkleTreeExtension
H
A
D
elf_sign_block.h
28
static constexpr int32_t
PAGE_SIZE_4K
= 4096;
member in OHOS::SignatureTools::ElfSignBlock
H
A
D
code_sign_block.h
34
static constexpr long
PAGE_SIZE_4K
= 4096;
member in OHOS::SignatureTools::CodeSignBlock
/developtools/hapsigner/hapsigntool_cpp/codesigning/fsverity/include/
H
A
D
fs_verity_descriptor.h
30
static const int
PAGE_SIZE_4K
= 4096;
member in OHOS::SignatureTools::FsVerityDescriptor
/developtools/hapsigner/hapsigntool_cpp/codesigning/fsverity/src/
H
A
D
fs_verity_descriptor.cpp
60
if (inTreeOffset %
PAGE_SIZE_4K
!= 0) {
in FromByteArray()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/codesigning/sign/
H
A
D
PageInfoGenerator.java
135
int len = (int) (maxEntryDataOffset / CodeSignBlock.
PAGE_SIZE_4K
* PageInfoExtension.DEFAULT_UNIT_SIZE);
in generateBitMap()
H
A
D
VerifyCodeSignature.java
307
long computedTreeOffset = getAlignmentAddr(CodeSignBlock.
PAGE_SIZE_4K
, fileReadOffset + offset);
in generateCodeSignBlock()
H
A
D
CodeSigning.java
215
long bitmapSize = bitmapOff / CodeSignBlock.
PAGE_SIZE_4K
* PageInfoExtension.DEFAULT_UNIT_SIZE;
in createPageInfoExtension()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/codesigning/fsverity/
H
A
D
FsVerityDescriptor.java
52
public static final int
PAGE_SIZE_4K
= 4096;
field in FsVerityDescriptor
/developtools/hapsigner/hapsigntool_cpp/codesigning/sign/src/
H
A
D
verify_code_signature.cpp
221
int64_t computedTreeOffset = GetAlignmentAddr(CodeSignBlock::
PAGE_SIZE_4K
, fileReadOffset + offset);
in GenerateCodeSignBlock()
H
A
D
code_signing.cpp
120
if ((dataSize % CodeSignBlock::
PAGE_SIZE_4K
) != 0) {
in ComputeDataSize()
Completed in 8 milliseconds