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:vecSize
(Results
1 - 5
of
5
) sorted by relevance
/base/accesscontrol/sandbox_manager/frameworks/sandbox_manager/src/
H
A
D
policy_info_vector_parcel.cpp
28
uint32_t
vecSize
= policy.size();
in Marshalling()
local
29
if (
vecSize
> POLICY_VECTOR_SIZE_LIMIT) {
in Marshalling()
32
RETURN_IF_FALSE(out.WriteUint32(
vecSize
));
in Marshalling()
34
for (uint32_t i = 0; i <
vecSize
; i++) {
in Marshalling()
54
uint32_t
vecSize
;
in Unmarshalling()
local
56
RELEASE_IF_FALSE(in.ReadUint32(
vecSize
), policyInfoVectorParcel);
in Unmarshalling()
57
if (
vecSize
> POLICY_VECTOR_SIZE_LIMIT) {
in Unmarshalling()
61
for (uint32_t i = 0; i <
vecSize
; i++) {
in Unmarshalling()
/base/print/print_fwk/frameworks/models/print_models/include/
H
A
D
print_utils.h
62
uint32_t
vecSize
= parcel.ReadUint32();
in readListFromParcel()
local
63
CHECK_IS_EXCEED_PRINT_RANGE_BOOL(
vecSize
);
in readListFromParcel()
65
supportedList.reserve(
vecSize
); // Allocate the required memory all at once to speed up processing efficiency.
in readListFromParcel()
66
for (uint32_t index = 0; index <
vecSize
; index++) {
in readListFromParcel()
96
uint32_t
vecSize
= static_cast<uint32_t>(list.size());
in WriteListToParcel()
local
97
parcel.WriteUint32(
vecSize
);
in WriteListToParcel()
98
for (uint32_t index = 0; index <
vecSize
; index++) {
in WriteListToParcel()
/base/telephony/call_manager/test/unittest/call_manager_zero_gtest/src/
H
A
D
zero_branch5_test.cpp
173
int32_t
vecSize
= 1;
in HWTEST_F()
local
179
data.WriteInt32(
vecSize
);
in HWTEST_F()
/base/telephony/call_manager/test/fuzztest/telephonyinteraction_fuzzer/
H
A
D
telephonyinteraction_fuzzer.cpp
117
int32_t
vecSize
= 1;
in UpdateCallsReportInfo()
local
128
dataParcel.WriteInt32(
vecSize
);
in UpdateCallsReportInfo()
/base/print/print_fwk/test/fuzztest/scanhelper_fuzzer/
H
A
D
scanhelper_fuzzer.cpp
180
int32_t
vecSize
= dataProvider->ConsumeIntegralInRange<int32_t>(0, MAX_SET_NUMBER);
in TestSetNumListValue()
local
182
for (int i = 0; i <
vecSize
; i++) {
in TestSetNumListValue()
Completed in 5 milliseconds