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:SessionAdapter
(Results
1 - 8
of
8
) sorted by relevance
/base/telephony/call_manager/services/distributed_call/src/transmission/
H
A
D
session_adapter.cpp
22
SessionAdapter
::
SessionAdapter
(const std::shared_ptr<ISessionCallback> &callback) : callback_(callback)
in SessionAdapter()
function in OHOS::Telephony::SessionAdapter
24
listener_.OnBind =
SessionAdapter
::OnBind;
in SessionAdapter()
25
listener_.OnShutdown =
SessionAdapter
::OnShutdown;
in SessionAdapter()
26
listener_.OnBytes =
SessionAdapter
::OnBytes;
in SessionAdapter()
31
listener_.OnError =
SessionAdapter
::OnError;
in SessionAdapter()
35
bool
SessionAdapter
::IsReady()
in IsReady()
41
void
SessionAdapter
::SendMsg(const void *data, uint32_t len)
in SendMsg()
58
void
SessionAdapter
::OnReceiveMsg(int32_t socket, const char* data, uint32_t dataLen)
in OnReceiveMsg()
72
void
SessionAdapter
[all...]
H
A
D
transmission_manager.cpp
31
std::shared_ptr<
SessionAdapter
> TransmissionManager::CreateServerSession(
in CreateServerSession()
44
std::shared_ptr<
SessionAdapter
> TransmissionManager::CreateClientSession(
in CreateClientSession()
59
std::shared_ptr<
SessionAdapter
> session = nullptr;
in OnBind()
71
std::shared_ptr<
SessionAdapter
> session = nullptr;
in OnShutdown()
83
std::shared_ptr<
SessionAdapter
> session = nullptr;
in OnReceiveMsg()
/base/telephony/call_manager/services/distributed_call/include/transmission/
H
A
D
transmission_manager.h
29
std::shared_ptr<
SessionAdapter
> CreateServerSession(const std::shared_ptr<ISessionCallback> &callback);
30
std::shared_ptr<
SessionAdapter
> CreateClientSession(const std::shared_ptr<ISessionCallback> &callback);
37
std::weak_ptr<
SessionAdapter
> session_{};
H
A
D
client_session.h
23
class ClientSession : public
SessionAdapter
{
25
explicit ClientSession(const std::shared_ptr<ISessionCallback> &callback) :
SessionAdapter
(callback) {}
in ClientSession()
H
A
D
server_session.h
23
class ServerSession : public
SessionAdapter
{
25
explicit ServerSession(const std::shared_ptr<ISessionCallback> &callback) :
SessionAdapter
(callback) {}
in ServerSession()
H
A
D
session_adapter.h
39
class
SessionAdapter
{
class
41
explicit
SessionAdapter
(const std::shared_ptr<ISessionCallback> &callback);
42
virtual ~
SessionAdapter
() = default;
/base/telephony/call_manager/test/unittest/distributed_communication_test/src/
H
A
D
distributed_transmission_test.cpp
124
SessionAdapter
::OnBind(0, info);
in HWTEST_F()
125
SessionAdapter
::OnShutdown(0, static_cast<ShutdownReason>(0));
in HWTEST_F()
126
SessionAdapter
::OnBytes(0, nullptr, 0);
in HWTEST_F()
127
SessionAdapter
::OnError(0, 0);
in HWTEST_F()
/base/telephony/call_manager/services/distributed_call/include/distributed_communication/
H
A
D
distributed_data_controller.h
78
std::shared_ptr<
SessionAdapter
> session_{nullptr};
Completed in 3 milliseconds