Home | History | Annotate | Download | only in ipc

Lines Matching defs:ipc

28 namespace ipc {
32 // IPCManager is a class for initializing and running supported IPC mechanisms.
33 // It manages the life-time of different IPC flavors that are available on the
38 // Possible IPC types.
40 TYPE_LINUX, // IPC based on a Linux sequential packet domain socket
41 TYPE_BINDER, // IPC based on the Binder
42 TYPE_DBUS // IPC based on the DBus
45 // Interface for observing events from an IPC mechanism. These methods will be
46 // called on the thread that started the particular IPC type.
52 // Called when an IPC mechanism has successfully started and is ready for
56 // Called when an IPC mechanism has stopped. This may happen due to an error
67 // Initialize the underlying IPC handler based on |type|, if that type has not
82 // Returns true if an IPC type has been initialized.
90 // Pointers to the different IPC handler classes. These are initialized and
103 } // namespace ipc