HomeSort by relevance Sort by last modified time
    Searched refs:Daemon (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/tools/android/forwarder2/
daemon.h 17 // Provides a way to spawn a daemon and communicate with it.
18 class Daemon {
20 // Callback used by the daemon to shutdown properly. See pipe_notifier.h for
28 // Called after the daemon is ready to receive commands.
36 // Called after the daemon bound its Unix Domain Socket. This can be used to
47 Daemon(const std::string& log_file_path,
53 ~Daemon();
55 // Returns whether the daemon was successfully spawned. Note that this does
56 // not necessarily mean that the current process was forked in case the daemon
60 // Kills the daemon and blocks until it exited. Returns whether it succeeded
    [all...]
daemon.cc 5 #include "tools/android/forwarder2/daemon.h"
37 // Timeout constant used for polling when connecting to the daemon's Unix Domain
56 Daemon::ServerDelegate* server_delegate) {
93 string_builder.Append("Daemon (pid=%d) died unexpectedly with ", child_pid);
112 // was valid until the daemon removed this file.
148 LOG(ERROR) << "Unexpected message read from daemon: " << buf;
158 Daemon::Daemon(const std::string& log_file_path,
173 Daemon::~Daemon() {}
    [all...]
device_forwarder_main.cc 20 #include "tools/android/forwarder2/daemon.h"
41 // Lets the daemon fetch the exit notifier file descriptor.
47 class ServerDelegate : public Daemon::ServerDelegate {
70 // Daemon::ServerDelegate:
115 class ClientDelegate : public Daemon::ClientDelegate {
121 // Daemon::ClientDelegate:
153 Daemon daemon(kLogFilePath, kDaemonIdentifier, &client_delegate,
157 return !daemon.Kill();
159 if (!daemon.SpawnIfNeeded()
    [all...]
host_forwarder_main.cc 40 #include "tools/android/forwarder2/daemon.h"
60 // Lets the daemon fetch the exit notifier file descriptor.
305 class ServerDelegate : public Daemon::ServerDelegate {
313 // Daemon::ServerDelegate:
315 LOG(INFO) << "Starting host process daemon (pid=" << getpid() << ")";
355 class ClientDelegate : public Daemon::ClientDelegate {
364 // Daemon::ClientDelegate:
366 // Send the forward command to the daemon.
443 Daemon daemon(
    [all...]
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/Platforms/
Android.mk 7 PLATFORMS_PATH := $(LOCAL_PATH)/Daemon/Device/Platforms
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/Platforms/Generic/
Android.mk 10 GENERIC_PATH := Daemon/Device/Platforms/Generic
  /hardware/samsung_slsi/exynos5/mobicore/daemon/
Android.mk 40 # Daemon Application
51 include $(LOCAL_PATH)/Daemon/Android.mk
53 # Common Source files required for building the daemon
60 # Includes required for the Daemon
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Server/
Android.mk 10 SERVER_PATH := Daemon/Server
  /libcore/libdvm/src/main/java/java/lang/
Daemons.java 55 private static abstract class Daemon implements Runnable {
121 private static class ReferenceQueueDaemon extends Daemon {
160 private static class FinalizerDaemon extends Daemon {
202 private static class FinalizerWatchdogDaemon extends Daemon {
209 // We have been interrupted, need to see if this daemon has been stopped.
232 // Daemon.stop may have interrupted us.
  /hardware/samsung_slsi/exynos5/mobicore/
Android.mk 22 # Include the Daemon
23 include $(MOBICORE_PROJECT_PATH)/daemon/Android.mk
27 $(MOBICORE_PROJECT_PATH)/daemon/ClientLib/public \
28 $(MOBICORE_PROJECT_PATH)/daemon/Registry/Public
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/
Android.mk 11 DEVICE_PATH := Daemon/Device
  /libcore/libart/src/main/java/java/lang/
Daemons.java 59 private static abstract class Daemon implements Runnable {
124 private static class ReferenceQueueDaemon extends Daemon {
163 private static class FinalizerDaemon extends Daemon {
205 private static class FinalizerWatchdogDaemon extends Daemon {
212 // We have been interrupted, need to see if this daemon has been stopped.
235 // Daemon.stop may have interrupted us.
292 private static class HeapTrimmerDaemon extends Daemon {
313 private static class GCDaemon extends Daemon {
  /external/chromium/chrome/common/
launchd_mac.h 17 Daemon // LaunchDaemon
  /external/chromium_org/chrome/common/mac/
launchd.h 17 Daemon // LaunchDaemon
  /external/chromium_org/v8/tools/testrunner/server/
daemon.py 19 class Daemon(object):
21 A generic daemon class.
23 Usage: subclass the Daemon class and override the run() method
83 Start the daemon
85 # Check for a pidfile to see if the daemon already runs
94 message = "pidfile %s already exist. Daemon already running?\n"
98 # Start the daemon
104 Stop the daemon
115 message = "pidfile %s does not exist. Daemon not running?\n"
119 # Try killing the daemon proces
    [all...]
main.py 36 from . import daemon namespace
45 class Server(daemon.Daemon):

Completed in 413 milliseconds