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:offsetSize
(Results
1 - 3
of
3
) sorted by relevance
/commonlibrary/c_utils/base/src/
H
A
D
parcel.cpp
291
void Parcel::InjectOffsets(binder_size_t offsets, size_t
offsetSize
)
in InjectOffsets()
argument
293
if (
offsetSize
<= 0) {
in InjectOffsets()
298
for (size_t index = 0; index <
offsetSize
; index++) {
in InjectOffsets()
/commonlibrary/c_utils/base/include/
H
A
D
parcel.h
704
* @param
offsetSize
Indicates the size of the position array.
707
void InjectOffsets(binder_size_t offsets, size_t
offsetSize
);
/commonlibrary/c_utils/base/test/benchmarktest/parcel_benchmark_test/
H
A
D
parcel_benchmark_test.cpp
2344
int32_t
offsetSize
= parcel.ReadInt32();
in BENCHMARK_F()
local
2345
AssertEqual(
offsetSize
, size, "test_InjectOffsets_001
offsetSize
did not equal size as expected.", state);
in BENCHMARK_F()
2347
const uint8_t* offsets = parcel.ReadBuffer(sizeof(binder_size_t) *
offsetSize
);
in BENCHMARK_F()
2351
newParcel.InjectOffsets(reinterpret_cast<binder_size_t>(offsets),
offsetSize
);
in BENCHMARK_F()
local
Completed in 8 milliseconds