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:ISessionCallback
(Results
1 - 9
of
9
) sorted by relevance
/base/telephony/call_manager/services/distributed_call/include/transmission/
H
A
D
session_adapter.h
31
class
ISessionCallback
{
class
33
ISessionCallback
() = default;
34
virtual ~
ISessionCallback
() = default;
41
explicit SessionAdapter(const std::shared_ptr<
ISessionCallback
> &callback);
62
std::shared_ptr<
ISessionCallback
> callback_{};
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);
H
A
D
client_session.h
25
explicit ClientSession(const std::shared_ptr<
ISessionCallback
> &callback) : SessionAdapter(callback) {}
in ClientSession()
H
A
D
server_session.h
25
explicit ServerSession(const std::shared_ptr<
ISessionCallback
> &callback) : SessionAdapter(callback) {}
in ServerSession()
/base/telephony/call_manager/test/unittest/distributed_communication_test/src/
H
A
D
distributed_transmission_test.cpp
24
class SessionCallbackTest : public
ISessionCallback
{
45
std::shared_ptr<
ISessionCallback
> callback = std::make_shared<SessionCallbackTest>();
in HWTEST_F()
62
std::shared_ptr<
ISessionCallback
> callback = std::make_shared<SessionCallbackTest>();
in HWTEST_F()
82
std::shared_ptr<
ISessionCallback
> callback = std::make_shared<SessionCallbackTest>();
in HWTEST_F()
105
std::shared_ptr<
ISessionCallback
> callback = std::make_shared<SessionCallbackTest>();
in HWTEST_F()
H
A
D
distributed_data_test.cpp
30
class DataSessionCallbackTest : public
ISessionCallback
{
60
std::shared_ptr<
ISessionCallback
> callback = std::make_shared<DataSessionCallbackTest>();
in HWTEST_F()
125
std::shared_ptr<
ISessionCallback
> callback = std::make_shared<DataSessionCallbackTest>();
in HWTEST_F()
360
std::shared_ptr<
ISessionCallback
> callback = std::make_shared<DataSessionCallbackTest>();
in HWTEST_F()
/base/telephony/call_manager/services/distributed_call/src/transmission/
H
A
D
transmission_manager.cpp
32
const std::shared_ptr<
ISessionCallback
> &callback)
in CreateServerSession()
45
const std::shared_ptr<
ISessionCallback
> &callback)
in CreateClientSession()
H
A
D
session_adapter.cpp
22
SessionAdapter::SessionAdapter(const std::shared_ptr<
ISessionCallback
> &callback) : callback_(callback)
in SessionAdapter()
/base/telephony/call_manager/services/distributed_call/include/distributed_communication/
H
A
D
distributed_data_controller.h
54
class DistributedDataController : public IDistributedDeviceStateCallback, public
ISessionCallback
{
Completed in 3 milliseconds