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:messageParcel
(Results
1 - 4
of
4
) sorted by relevance
/base/telephony/call_manager/frameworks/native/src/
H
A
D
native_call_manager_utils.cpp
25
CallAttributeInfo NativeCallManagerUtils::ReadCallAttributeInfo(MessageParcel &
messageParcel
)
in ReadCallAttributeInfo()
argument
28
if (strncpy_s(info.accountNumber, kMaxNumberLen + 1,
messageParcel
.ReadCString(), kMaxNumberLen + 1) != EOK) {
in ReadCallAttributeInfo()
31
if (strncpy_s(info.bundleName, kMaxNumberLen + 1,
messageParcel
.ReadCString(), kMaxNumberLen + 1) != EOK) {
in ReadCallAttributeInfo()
34
info.speakerphoneOn =
messageParcel
.ReadBool();
in ReadCallAttributeInfo()
35
info.accountId =
messageParcel
.ReadInt32();
in ReadCallAttributeInfo()
36
info.videoState = static_cast<VideoStateType>(
messageParcel
.ReadInt32());
in ReadCallAttributeInfo()
37
info.startTime =
messageParcel
.ReadInt64();
in ReadCallAttributeInfo()
38
info.isEcc =
messageParcel
.ReadBool();
in ReadCallAttributeInfo()
39
info.callType = static_cast<CallType>(
messageParcel
.ReadInt32());
in ReadCallAttributeInfo()
40
info.callId =
messageParcel
in ReadCallAttributeInfo()
[all...]
/base/telephony/call_manager/utils/src/
H
A
D
call_manager_utils.cpp
23
void CallManagerUtils::WriteCallAttributeInfo(const CallAttributeInfo &info, MessageParcel &
messageParcel
)
in WriteCallAttributeInfo()
argument
25
messageParcel
.WriteCString(info.accountNumber);
in WriteCallAttributeInfo()
26
messageParcel
.WriteCString(info.bundleName);
in WriteCallAttributeInfo()
27
messageParcel
.WriteBool(info.speakerphoneOn);
in WriteCallAttributeInfo()
28
messageParcel
.WriteInt32(info.accountId);
in WriteCallAttributeInfo()
29
messageParcel
.WriteInt32(static_cast<int32_t>(info.videoState));
in WriteCallAttributeInfo()
30
messageParcel
.WriteInt64(info.startTime);
in WriteCallAttributeInfo()
31
messageParcel
.WriteBool(info.isEcc);
in WriteCallAttributeInfo()
32
messageParcel
.WriteInt32(static_cast<int32_t>(info.callType));
in WriteCallAttributeInfo()
33
messageParcel
in WriteCallAttributeInfo()
[all...]
/base/telephony/call_manager/frameworks/native/include/
H
A
D
native_call_manager_utils.h
26
static CallAttributeInfo ReadCallAttributeInfo(MessageParcel &
messageParcel
);
/base/telephony/call_manager/utils/include/
H
A
D
call_manager_utils.h
26
static void WriteCallAttributeInfo(const CallAttributeInfo &info, MessageParcel &
messageParcel
);
Completed in 1 milliseconds