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:binder_size_t
(Results
1 - 4
of
4
) sorted by relevance
/commonlibrary/c_utils/base/include/
H
A
D
flat_obj.h
37
typedef __u32
binder_size_t
;
typedef
40
typedef __u64
binder_size_t
;
typedef
H
A
D
parcel.h
207
* @return Returns a pointer of the `
binder_size_t
` type to
211
binder_size_t
GetObjectOffsets() const;
707
void InjectOffsets(
binder_size_t
offsets, size_t offsetSize);
792
bool WriteObjectOffset(
binder_size_t
offset);
850
binder_size_t
*objectOffsets_;
/commonlibrary/c_utils/base/src/
H
A
D
parcel.cpp
161
binder_size_t
*objects = objectOffsets_;
in IsReadObjectData()
181
binder_size_t
*objects = objectOffsets_;
in ValidateReadData()
208
binder_size_t
Parcel::GetObjectOffsets() const
in GetObjectOffsets()
210
return reinterpret_cast<
binder_size_t
>(objectOffsets_);
in GetObjectOffsets()
279
binder_size_t
*objects = objectOffsets_;
in CheckOffsets()
291
void Parcel::InjectOffsets(
binder_size_t
offsets, size_t offsetSize)
in InjectOffsets()
297
auto *newObjectOffsets = reinterpret_cast<
binder_size_t
*>(offsets);
in InjectOffsets()
655
size_t newBytes = newCapacity * sizeof(
binder_size_t
);
in EnsureObjectsCapacity()
662
objectOffsets_ = reinterpret_cast<
binder_size_t
*>(newOffsets);
in EnsureObjectsCapacity()
684
bool Parcel::WriteObjectOffset(
binder_size_t
offse
[all...]
/commonlibrary/c_utils/base/test/benchmarktest/parcel_benchmark_test/
H
A
D
parcel_benchmark_test.cpp
2227
binder_size_t
* pObjectOffsets = reinterpret_cast<
binder_size_t
*>(parcel.GetObjectOffsets());
in BENCHMARK_F()
2236
pObjectOffsets = reinterpret_cast<
binder_size_t
*>(parcel.GetObjectOffsets());
in BENCHMARK_F()
2340
binder_size_t
objectOffsets[PARCEL_INJECTOFFSETS_CHAR_ARRAY_SIZE] = {0};
in BENCHMARK_F()
2341
result = parcel.WriteBuffer(static_cast<const void *>(objectOffsets), sizeof(
binder_size_t
) * size);
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()
2353
binder_size_t
* pObjectOffsets = reinterpret_cast<
binder_size_t
*>(newParcel.GetObjectOffsets());
in BENCHMARK_F()
Completed in 7 milliseconds