Home
last modified time | relevance | path

Searched refs:Executive (Results 1 – 11 of 11) sorted by relevance

/external/webkit/WebKitTools/Scripts/webkitpy/
Dwebkitport_unittest.py32 from webkitpy.executive import Executive
49 …(), [WebKitPort.script_path("build-webkit"), "--gtk", '--makeargs="-j%s"' % Executive.cpu_count()])
50 …Port.script_path("build-webkit"), "--debug", "--gtk", '--makeargs="-j%s"' % Executive.cpu_count()])
56 …d(), [WebKitPort.script_path("build-webkit"), "--qt", '--makeargs="-j%s"' % Executive.cpu_count()])
57 …tPort.script_path("build-webkit"), "--debug", "--qt", '--makeargs="-j%s"' % Executive.cpu_count()])
Dcredentials_unittest.py33 from webkitpy.executive import Executive
108 …command.assert_called_with(["git", "config", "--get", "foo"], error_handler=Executive.ignore_error)
112 …rt_called_with(["git", "config", "--get", "test_prefix.foo"], error_handler=Executive.ignore_error)
Dcredentials.py37 from webkitpy.executive import Executive, ScriptError
48 self.executive = executive or Executive()
60 error_handler=Executive.ignore_error).rstrip('\n')
Dwebkitport.py34 from webkitpy.executive import Executive
118 command.append('--makeargs="-j%s"' % Executive.cpu_count())
142 command.append('--makeargs="-j%s"' % Executive.cpu_count())
Dexecutive_unittest.py31 from webkitpy.executive import Executive, run_command
37 … run_command(["foo_bar_command_blah"], error_handler=Executive.ignore_error, return_exit_code=True)
Dscm.py38 from webkitpy.executive import Executive, run_command, ScriptError
90 Executive.default_error_handler(error)
107 print run_command(self.status_command(), error_handler=Executive.ignore_error)
372 …(['git', 'rev-parse', '--is-inside-work-tree'], cwd=path, error_handler=Executive.ignore_error).rs…
442 … run_command(['git', 'revert', '--no-commit', git_commit], error_handler=Executive.ignore_error)
Dexecutive.py77 return Executive().run_command(*args, **kwargs)
80 class Executive(object): class
Dscm_unittest.py41 from webkitpy.executive import Executive, run_command, ScriptError
151 …self.assertRaises(OSError, run_command, command_does_not_exist, error_handler=Executive.ignore_err…
156 self.assertTrue(run_command(command_returns_non_zero, error_handler=Executive.ignore_error))
/external/webkit/WebKitTools/Scripts/
Dwebkit-patch43 from webkitpy.executive import Executive
61 self.executive = Executive()
/external/libpcap/doc/
Dpcap.txt1591 this standard. Please address the information to the IETF Executive
/external/webkit/WebKitTools/
DChangeLog1922 Moves the try/catch for OSError exceptions in Executive.run_command
1925 assert that Executive.run_command throws an OSError exception.
5940 Moreover, modifies Executive.run_command to catch and pass OSError exceptions to
7314 Move run_command onto Executive to make code which uses run_command testable
7318 - Move run_command and error handlers onto Executive.