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:permStateListSize
(Results
1 - 3
of
3
) sorted by relevance
/base/security/access_token/frameworks/accesstoken/src/
H
A
D
hap_token_info_for_sync_parcel.cpp
33
uint32_t
permStateListSize
= permStateList.size();
in Marshalling()
local
34
RETURN_IF_FALSE(
permStateListSize
<= MAX_PERMLIST_SIZE);
in Marshalling()
35
RETURN_IF_FALSE(out.WriteUint32(
permStateListSize
));
in Marshalling()
36
for (uint32_t i = 0; i <
permStateListSize
; i++) {
in Marshalling()
56
uint32_t
permStateListSize
;
in Unmarshalling()
local
57
RELEASE_IF_FALSE(in.ReadUint32(
permStateListSize
), hapTokenInfoForSyncParcel);
in Unmarshalling()
58
RELEASE_IF_FALSE((
permStateListSize
<= MAX_PERMLIST_SIZE), hapTokenInfoForSyncParcel);
in Unmarshalling()
59
for (uint32_t i = 0; i <
permStateListSize
; i++) {
in Unmarshalling()
H
A
D
hap_policy_parcel.cpp
44
uint32_t
permStateListSize
= permStateList.size();
in Marshalling()
local
45
RETURN_IF_FALSE(out.WriteUint32(
permStateListSize
));
in Marshalling()
47
for (uint32_t i = 0; i <
permStateListSize
; i++) {
in Marshalling()
95
uint32_t
permStateListSize
;
in Unmarshalling()
local
96
RELEASE_IF_FALSE(in.ReadUint32(
permStateListSize
), hapPolicyParcel);
in Unmarshalling()
97
RELEASE_IF_FALSE((
permStateListSize
<= MAX_PERMLIST_SIZE), hapPolicyParcel);
in Unmarshalling()
98
for (uint32_t i = 0; i <
permStateListSize
; i++) {
in Unmarshalling()
/base/security/access_token/frameworks/test/unittest/
H
A
D
accesstoken_parcel_test.cpp
281
uint32_t
permStateListSize
= permStateList.size();
in WriteParcelable()
local
282
out.WriteUint32(
permStateListSize
);
in WriteParcelable()
283
for (uint32_t i = 0; i <
permStateListSize
; i++) {
in WriteParcelable()
292
permStateListSize
= permStateList.size();
in WriteParcelable()
293
out.WriteUint32(
permStateListSize
);
in WriteParcelable()
294
for (uint32_t i = 0; i <
permStateListSize
; i++) {
in WriteParcelable()
Completed in 2 milliseconds