OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:check_running_pid
(Results
1 - 6
of
6
) 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])
apache_http.py
150
if self._pid and not self._executive.
check_running_pid
(self._pid):
server_base.py
176
if self._executive.
check_running_pid
(self._pid):
241
if not self._platform.is_win() and not self._executive.
check_running_pid
(self._pid):
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
executive_unittest.py
193
self.assertTrue(executive.
check_running_pid
(os.getpid()))
195
self.assertFalse(executive.
check_running_pid
(100000))
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):
executive_mock.py
73
def
check_running_pid
(self, pid):
member in class:MockExecutive
Completed in 1761 milliseconds