OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DeviceController
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/tools/android/forwarder2/
device_controller.h
26
// There is a single
DeviceController
per device_forwarder process, and it is in
29
class
DeviceController
{
31
static scoped_ptr<
DeviceController
> Create(const std::string& adb_unix_socket,
33
~
DeviceController
();
41
DeviceController
(scoped_ptr<Socket> host_socket, int exit_notifier_fd);
46
// Note that this can end up being called after the
DeviceController
is
49
const base::WeakPtr<
DeviceController
>& device_controller_ptr,
64
base::WeakPtrFactory<
DeviceController
> weak_ptr_factory_;
66
DISALLOW_COPY_AND_ASSIGN(
DeviceController
);
device_controller.cc
24
scoped_ptr<
DeviceController
>
DeviceController
::Create(
27
scoped_ptr<
DeviceController
> device_controller;
30
PLOG(ERROR) << "Could not BindAndListen
DeviceController
socket on port "
36
new
DeviceController
(host_socket.Pass(), exit_notifier_fd));
40
DeviceController
::~
DeviceController
() {
44
void
DeviceController
::Start() {
48
DeviceController
::
DeviceController
(scoped_ptr<Socket> host_socket
[
all
...]
device_forwarder_main.cc
54
// The
DeviceController
instance, if any, is constructed on the controller
95
scoped_ptr<
DeviceController
> controller(
96
DeviceController
::Create(kUnixDomainSocketPath, exit_notifier_fd));
110
scoped_ptr<
DeviceController
> controller_;
Completed in 455 milliseconds