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:vSize
(Results
1 - 8
of
8
) sorted by relevance
/foundation/communication/netmanager_base/frameworks/native/netstatsclient/src/
H
A
D
net_stats_info.cpp
84
uint32_t
vSize
= statsInfos.size();
in Marshalling()
local
85
if (
vSize
> STATS_INFO_MAX_SIZE) {
in Marshalling()
89
if (!parcel.WriteUint32(
vSize
)) {
in Marshalling()
100
uint32_t
vSize
= statsInfos.size();
in Marshalling()
local
101
if (
vSize
> STATS_INFO_MAX_SIZE) {
in Marshalling()
105
if (!parcel.WriteUint32(
vSize
)) {
in Marshalling()
115
uint32_t
vSize
= 0;
in Unmarshalling()
local
116
if (!parcel.ReadUint32(
vSize
)) {
in Unmarshalling()
121
if (
vSize
> STATS_INFO_MAX_SIZE) {
in Unmarshalling()
125
statsInfos.reserve(
vSize
);
in Unmarshalling()
140
uint32_t
vSize
= 0;
Unmarshalling()
local
[all...]
H
A
D
net_stats_info_sequence.cpp
51
uint32_t
vSize
= statsSequence.size();
in Marshalling()
local
52
if (
vSize
> STATS_INFO_MAX_SIZE) {
in Marshalling()
56
if (!parcel.WriteUint32(
vSize
)) {
in Marshalling()
57
NETMGR_LOG_E("Write statsInfoSequence size failed. size=%{public}u",
vSize
);
in Marshalling()
79
uint32_t
vSize
= 0;
in Unmarshalling()
local
80
if (!parcel.ReadUint32(
vSize
)) {
in Unmarshalling()
84
if (
vSize
> STATS_INFO_MAX_SIZE) {
in Unmarshalling()
88
statsSequence.reserve(
vSize
);
in Unmarshalling()
89
for (uint32_t i = 0; i <
vSize
; i++) {
in Unmarshalling()
/foundation/communication/netmanager_base/frameworks/native/netpolicyclient/src/
H
A
D
net_quota_policy.cpp
130
uint32_t
vSize
= 0;
in Unmarshalling()
local
131
if (!parcel.ReadUint32(
vSize
)) {
in Unmarshalling()
134
vSize
=
vSize
> MAX_POLICY_SIZE ? MAX_POLICY_SIZE :
vSize
;
in Unmarshalling()
137
for (uint32_t i = 0; i <
vSize
; i++) {
in Unmarshalling()
/foundation/communication/netmanager_ext/frameworks/native/ethernetclient/src/proxy/
H
A
D
ethernet_service_proxy.cpp
301
int32_t
vSize
= reply.ReadInt32();
in GetInterfaceConfig()
local
302
if (
vSize
> MAX_SIZE) {
in GetInterfaceConfig()
303
NETMGR_EXT_LOG_E("
vSize
=[%{public}d] is too large",
vSize
);
in GetInterfaceConfig()
307
for (int i = 0; i <
vSize
; i++) {
in GetInterfaceConfig()
310
if (
vSize
> 0) {
in GetInterfaceConfig()
/foundation/communication/netmanager_base/frameworks/native/netmanagernative/
H
A
D
netsys_native_service_proxy.cpp
1191
int32_t
vSize
;
in GetInterfaceConfig()
local
1216
vSize
= reply.ReadInt32();
in GetInterfaceConfig()
1217
vSize
=
vSize
> MAX_INTERFACE_CONFIG_SIZE ? MAX_INTERFACE_CONFIG_SIZE :
vSize
;
in GetInterfaceConfig()
1219
for (int i = 0; i <
vSize
; i++) {
in GetInterfaceConfig()
1222
if (
vSize
> 0) {
in GetInterfaceConfig()
1234
int32_t
vSize
;
in InterfaceGetList()
local
1251
vSize
= reply.ReadInt32();
in InterfaceGetList()
1253
for (int i = 0; i <
vSize
;
in InterfaceGetList()
[all...]
/foundation/communication/netmanager_base/services/netpolicymanager/src/core/
H
A
D
net_policy_file.cpp
451
uint32_t
vSize
= quotaPolicies.size();
in WriteQuotaPolicies()
local
453
for (uint32_t i = 0; i <
vSize
; i++) {
in WriteQuotaPolicies()
/foundation/communication/netmanager_base/services/netmanagernative/src/
H
A
D
netsys_native_service_stub.cpp
1033
int32_t
vSize
= data.ReadInt32();
in CmdSetInterfaceConfig()
local
1034
vSize
= (
vSize
> MAX_FLAG_NUM) ? MAX_FLAG_NUM :
vSize
;
in CmdSetInterfaceConfig()
1036
for (int i = 0; i <
vSize
; i++) {
in CmdSetInterfaceConfig()
/foundation/arkui/ace_engine/test/unittest/core/pattern/slider/
H
A
D
slider_pattern_test_ng.cpp
1273
auto
vSize
= sliderPattern->GetStepPointAccessibilityVirtualNodeSize();
in HWTEST_F()
local
1274
EXPECT_EQ(
vSize
.Width(), contentRect.Width());
in HWTEST_F()
1275
EXPECT_EQ(
vSize
.Height(), pointNodeHeight);
in HWTEST_F()
Completed in 14 milliseconds