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

  /external/chromium_org/chrome/test/chromedriver/server/
server.py 32 self._process = subprocess.Popen(chromedriver_args)
34 if self._process is None:
40 self._process.terminate()
67 if self._process is None:
73 self._process.terminate()
74 self._process.wait()
75 self._process = None
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_file_eintr.py 30 self._process = None
33 if self._process and self._process.poll() is None:
35 self._process.kill()
61 if self._process.poll() is None:
64 self._process.terminate() # Ensure it dies.
68 stdout_end, stderr_end = self._process.communicate()
93 self._process = subprocess.Popen(
107 worm_sign = self._process.stderr.read(len(b'Worm Sign!\n'))
111 self._process.stdin.write(data_to_write
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_file_eintr.py 30 self._process = None
33 if self._process and self._process.poll() is None:
35 self._process.kill()
61 if self._process.poll() is None:
64 self._process.terminate() # Ensure it dies.
68 stdout_end, stderr_end = self._process.communicate()
93 self._process = subprocess.Popen(
107 worm_sign = self._process.stderr.read(len(b'Worm Sign!\n'))
111 self._process.stdin.write(data_to_write
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
Throttler.js 15 this._process = null;
22 if (this._process)
39 var process = this._process;
40 this._process = null;
51 this._process = process;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/
apache_http.py 129 self._process = self._executive.popen(self._start_cmd, stderr=self._executive.PIPE)
130 if self._process.returncode is not None:
131 retval = self._process.returncode
132 err = self._process.stderr.read()
server_base.py 77 self._process = None
199 if self._process:
200 _log.error('%s returncode %s' % (self._name, str(self._process.returncode)))
201 if self._process.stderr:
202 stderr_text = self._process.stderr.read()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 517 self._process = Process(
522 ident = ':'.join(str(i) for i in self._process._identity)
523 self._process.name = type(self).__name__ + '-' + ident
524 self._process.start()
535 args=(self._process, self._address, self._authkey,
576 self._process.join(timeout)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 517 self._process = Process(
522 ident = ':'.join(str(i) for i in self._process._identity)
523 self._process.name = type(self).__name__ + '-' + ident
524 self._process.start()
535 args=(self._process, self._address, self._authkey,
576 self._process.join(timeout)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TracingModel.js 706 this._process = process;
776 return this._process;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
findertools.py 215 class _process: class in inherits:
229 p = _process()
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Tests.js 240 return throttler._isRunningProcess || throttler._process;

Completed in 411 milliseconds