Home | History | Annotate | Download | only in common

Lines Matching full:process

14 #include "base/process/process.h"
32 // Return the IPC channel to connect to the service process.
36 // Return a name that is scoped to this instance of the service process. We
40 // Return a name that is scoped to this instance of the service process. We
58 // The following methods are used in a process that acts as a client to the
59 // service process (typically the browser process).
61 // This method checks that if the service process is ready to receive
65 // Returns the process id and version of the currently running service process.
66 // Note: DO NOT use this check whether the service process is ready because
67 // a true return value only means that some process shared data was available,
68 // and not that the process is ready to receive IPC commands, or even running.
73 // Forces a service process matching the specified version to shut down.
77 // Creates command-line to run the service process.
80 // This is a class that is used by the service process to signal events and
89 // Tries to become the sole service process for the current user data dir.
90 // Returns false if another service process is already running.
93 // Signal that the service process is ready.
94 // This method is called when the service process is running and initialized.
96 // process (in the same thread that called SignalReady). It can be NULL.
98 // to monitor the service process.
103 // Signal that the service process is stopped.
106 // Register the service process to run on startup.
109 // Unregister the service process to run on startup.
117 // Create the shared memory data for the service process.
120 // If an older version of the service process running, it should be shutdown.
121 // Returns false if this process needs to exit.
124 // Acquires a singleton lock for the service process. A return value of false
125 // means that a service process instance is already running.