OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ignore_error
(Results
1 - 8
of
8
) sorted by null
/external/openssh/
openssh.xml.in
75
<propval name='
ignore_error
' type='astring' value='core,signal'/>
/external/webkit/Tools/Scripts/webkitpy/common/system/
executive.py
208
self.run_command(command, error_handler=self.
ignore_error
)
293
self.run_command(command, error_handler=self.
ignore_error
)
304
self.run_command(command, error_handler=self.
ignore_error
)
314
def
ignore_error
(error):
member in class:Executive
executive_unittest.py
98
run_command(["foo_bar_command_blah"], error_handler=Executive.
ignore_error
, return_exit_code=True)
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
chromium_mac.py
131
self._executive.run_command([self._path_to_wdiff()], error_handler=Executive.
ignore_error
)
/external/zlib/src/contrib/ada/
zlib.ads
171
Ignore_Error
: in Boolean := False);
173
-- If stream is closing before the complete and
Ignore_Error
is False,
zlib.adb
137
Ignore_Error
: in Boolean := False)
141
if not
Ignore_Error
and then not Is_Open (Filter) then
147
if
Ignore_Error
or else Code = Thin.Z_OK then
/external/webkit/Tools/Scripts/webkitpy/common/checkout/
scm.py
185
print self.run(self.status_command(), error_handler=Executive.
ignore_error
)
330
find_output = self.run(find_args, cwd=home_directory, error_handler=Executive.
ignore_error
).rstrip()
643
return run_command(['git', 'rev-parse', '--is-inside-work-tree'], cwd=path, error_handler=Executive.
ignore_error
).rstrip() == "true"
664
error_handler=Executive.
ignore_error
).rstrip('\n')
[
all
...]
scm_unittest.py
264
self.assertRaises(OSError, run_command, command_does_not_exist, error_handler=Executive.
ignore_error
)
269
self.assertTrue(run_command(command_returns_non_zero, error_handler=Executive.
ignore_error
))
[
all
...]
Completed in 418 milliseconds