HomeSort by relevance Sort by last modified time
    Searched full:check_running_pid (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/
crash_service_unittest.py 77 host.executive.check_running_pid = mock_returns([True, False])
lighttpd_unittest.py 89 host.executive.check_running_pid = mock_returns([True, False])
server_base.py 173 if self._executive.check_running_pid(self._pid):
204 if not self._executive.check_running_pid(self._pid):
apache_http.py 148 if self._pid and not self._executive.check_running_pid(self._pid):
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
executive_unittest.py 197 self.assertTrue(executive.check_running_pid(os.getpid()))
199 self.assertFalse(executive.check_running_pid(100000))
executive_mock.py 73 def check_running_pid(self, pid): member in class:MockExecutive
executive.py 255 def check_running_pid(self, pid): member in class:Executive
299 while self.check_running_pid(pid):
305 while seconds_left > 0 and self.check_running_pid(pid):

Completed in 3633 milliseconds