OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_executive
(Results
1 - 21
of
21
) sorted by null
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/
crash_service.py
59
process = self.
_executive
.popen(start_cmd, shell=False, stderr=self.
_executive
.PIPE)
75
if self.
_executive
.check_running_pid(self._pid):
83
self.
_executive
.run_command(["taskkill.exe", "/f", "/t", "/pid", self._pid], error_handler=self.
_executive
.ignore_error)
85
self.
_executive
.kill_process(self._pid)
http_server.py
200
process = self.
_executive
.popen(self._start_cmd, env=self._env, shell=False, stderr=self.
_executive
.PIPE)
216
if self.
_executive
.check_running_pid(self._pid):
224
self.
_executive
.run_command(["taskkill.exe", "/f", "/t", "/pid", self._pid], error_handler=self.
_executive
.ignore_error)
226
self.
_executive
.kill_process(self._pid)
apache_http_server.py
167
if self._pid and not self.
_executive
.check_running_pid(self._pid):
188
process = self.
_executive
.popen(cmd, shell=True, stderr=self.
_executive
.PIPE)
http_server_base.py
50
self.
_executive
= port_obj.
_executive
121
self.
_executive
.kill_process(self._pid)
183
if not self.
_executive
.check_running_pid(self._pid):
websocket_server.py
163
self._process = self.
_executive
.popen(self._start_cmd, env=self._env, shell=False, stdin=self._wsin, stdout=self._wsout, stderr=self.
_executive
.STDOUT)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
detection.py
44
self.
_executive
= executive
71
if SVN.in_working_directory(absolute_path, executive=self.
_executive
):
72
return SVN(cwd=absolute_path, patch_directories=patch_directories, filesystem=self._filesystem, executive=self.
_executive
)
74
if Git.in_working_directory(absolute_path, executive=self.
_executive
):
75
return Git(cwd=absolute_path, filesystem=self._filesystem, executive=self.
_executive
)
scm.py
46
self.
_executive
= executive or Executive()
53
return self.
_executive
.run_command(args,
scm_mock.py
40
self.
_executive
= executive or MockExecutive()
git.py
141
return self._branch_from_ref(self.read_git_config('branch.%s.merge' % current_branch, cwd=self.checkout_root, executive=self.
_executive
).strip())
264
remote_branch_refs = self.read_git_config('svn-remote.svn.fetch', cwd=self.checkout_root, executive=self.
_executive
)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
prettypatch.py
35
self.
_executive
= executive
64
return self.
_executive
.run_command(args, input=diff, decode_output=False)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
workspace.py
44
self.
_executive
= executive # FIXME: Remove if create_zip is moved to python.
68
self.
_executive
.run_command(['zip', '-9', '-r', zip_path, '.'], cwd=source_path)
platforminfo.py
47
self.
_executive
= executive
77
output = self.
_executive
.run_command(['system_profiler', 'SPDisplaysDataType'], error_handler=self.
_executive
.ignore_error)
94
return long(self.
_executive
.run_command(["sysctl", "-n", "hw.memsize"]))
166
ver_output = self.
_executive
.run_command(['cmd', '/c', 'ver'], decode_output=False)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
config.py
46
self.
_executive
= executive
win_unittest.py
51
port.
_executive
= MockExecutive(should_log=True)
66
port.
_executive
= MockExecutive(should_log=True)
port_testcase.py
212
port.
_executive
= MockExecutive2(run_command_fn=mock_run_command)
216
port.
_executive
= MockExecutive2(exit_code=0)
220
port.
_executive
= MockExecutive2(exit_code=2)
230
port.
_executive
= MockExecutive2(exit_code=2)
241
port.
_executive
= host.executive # AndroidPortTest.make_port sets its own executive, so reset that as well.
351
port.
_executive
= MockExecutive2(exit_code=0)
353
port.
_executive
= MockExecutive2(exit_code=1, output='testing output failure')
base.py
179
self.
_executive
= host.executive
182
self._config = port_config.Config(self.
_executive
, self._filesystem, self.port_name)
259
return self.
_executive
.cpu_count()
377
output = self.
_executive
.run_command(cmd, error_handler=error_handler)
397
_ = self.
_executive
.run_command(['ruby', '--version'])
419
_ = self.
_executive
.run_command([self._path_to_wdiff(), '--help'])
443
if self.
_executive
.run_command([httpd_path, "-v"], env=env, return_exit_code=True) != 0:
492
exit_code = self.
_executive
.run_command(comand, return_exit_code=True)
[
all
...]
android.py
198
self.
_executive
= executive
253
error_handler = self.
_executive
.ignore_error
257
result = self.
_executive
.run_command(self.adb_command() + command, error_handler=error_handler, debug_logging=self._debug_logging)
267
return [AndroidCommands.adb_command_path(self.
_executive
, self._debug_logging), '-s', self._device_serial]
438
self._devices = AndroidDevices(self.
_executive
, default_device, self._debug_logging)
475
usable_devices = self._devices.usable_devices(self.
_executive
)
497
pids = self.
_executive
.running_pids(lambda name: 'adb' in name)
500
self.
_executive
.run_command(['adb', 'devices'])
501
pids = self.
_executive
.running_pids(lambda name: 'adb' in name)
507
self.
_executive
.run_command(['taskset', '-p', '-c', '0', str(pid)]
[
all
...]
win.py
119
self.
_executive
.run_command([setup_mount]) # Paths are all absolute, so this does not require a cwd.
android_unittest.py
168
port.
_executive
= MockExecutive2(run_command_fn=port._mock_adb.run_command)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_package/
json_results_generator.py
230
self.
_executive
= port.
_executive
399
scm = SCMDetector(self._filesystem, self.
_executive
).detect_scm_system(in_directory)
/external/chromium_org/build/android/pylib/utils/
flakiness_dashboard_results_uploader.py
44
self.
_executive
= executive.Executive()
Completed in 870 milliseconds