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

  /external/chromium_org/chromeos/process_proxy/
process_proxy.h 28 class ProcessProxy : public base::RefCountedThreadSafe<ProcessProxy> {
30 ProcessProxy();
52 friend class base::RefCountedThreadSafe<ProcessProxy>;
54 ~ProcessProxy();
94 DISALLOW_COPY_AND_ASSIGN(ProcessProxy);
process_proxy.cc 39 ProcessProxy::ProcessProxy(): process_launched_(false),
47 bool ProcessProxy::Open(const std::string& command, pid_t* pid) {
68 bool ProcessProxy::StartWatchingOnThread(
93 base::Bind(&ProcessProxy::OnProcessOutput,
107 void ProcessProxy::OnProcessOutput(ProcessOutputType type,
114 base::Bind(&ProcessProxy::CallOnProcessOutputCallback,
118 void ProcessProxy::CallOnProcessOutputCallback(ProcessOutputType type,
129 bool ProcessProxy::StopWatching() {
139 void ProcessProxy::Close()
    [all...]
process_proxy_registry.h 28 // Info we need about a ProcessProxy instance.
30 scoped_refptr<ProcessProxy> proxy;
43 // Starts new ProcessProxy (which starts new process).
process_proxy_registry.cc 82 scoped_refptr<ProcessProxy> proxy(new ProcessProxy());
99 // Save info for newly created proxy. We cannot do this before ProcessProxy is

Completed in 479 milliseconds