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:resultSize
(Results
1 - 4
of
4
) sorted by relevance
/developtools/hapsigner/hapsigntool_cpp/hap/sign/src/
H
A
D
sign_hap.cpp
145
long
resultSize
= ((OPTIONAL_TYPE_SIZE + OPTIONAL_LENGTH_SIZE + OPTIONAL_OFFSET_SIZE) *
in GenerateHapSigningBlock()
local
150
if (
resultSize
> INT_MAX) {
in GenerateHapSigningBlock()
151
SIGNATURE_TOOLS_LOGE("Illegal Argument. HapSigningBlock out of range: %ld",
resultSize
);
in GenerateHapSigningBlock()
154
result.SetCapacity((int)
resultSize
);
in GenerateHapSigningBlock()
185
result.PutInt64(
resultSize
); // length of hap signing block
in GenerateHapSigningBlock()
/developtools/profiler/device/plugins/xpower_plugin/src/
H
A
D
power_message_queue.cpp
72
size_t
resultSize
= queueSize > batchCount ? batchCount : queueSize;
in WaitAndPopBatch()
local
73
for (size_t i = 0; i <
resultSize
; i++) {
in WaitAndPopBatch()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/sign/
H
A
D
SignHap.java
314
long
resultSize
=
in generateHapSigningBlock()
322
if (
resultSize
> Integer.MAX_VALUE) {
in generateHapSigningBlock()
323
throw new IllegalArgumentException("HapSigningBlock out of range : " +
resultSize
);
in generateHapSigningBlock()
325
ByteBuffer result = ByteBuffer.allocate((int)
resultSize
);
in generateHapSigningBlock()
354
result.putLong(
resultSize
); // length of hap signing block
in generateHapSigningBlock()
/developtools/profiler/device/plugins/native_daemon/src/
H
A
D
stack_data_repeater.cpp
165
int
resultSize
= rawDataQueueSize > batchCount ? batchCount : rawDataQueueSize;
in TakeRawData()
local
167
for (int i = 0; i <
resultSize
; i++) {
in TakeRawData()
Completed in 3 milliseconds