OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IPCManager
(Results
1 - 2
of
2
) sorted by null
/system/bt/service/ipc/
ipc_manager.cc
26
IPCManager
::
IPCManager
(bluetooth::Adapter* adapter) : adapter_(adapter) {
30
IPCManager
::~
IPCManager
() {
37
bool
IPCManager
::Start(Type type, Delegate* delegate) {
72
bool
IPCManager
::BinderStarted() const { return binder_handler_.get(); }
74
bool
IPCManager
::LinuxStarted() const { return linux_handler_.get(); }
ipc_manager.h
32
//
IPCManager
is a class for initializing and running supported IPC mechanisms.
36
class
IPCManager
{
63
explicit
IPCManager
(bluetooth::Adapter* adapter);
64
~
IPCManager
();
74
// |delegate| must out-live the
IPCManager
and the underlying handler. Users
77
// after destroying the
IPCManager
instance, as the destructor will join and
86
IPCManager
() = default;
97
DISALLOW_COPY_AND_ASSIGN(
IPCManager
);
Completed in 276 milliseconds