HomeSort by relevance Sort by last modified time
    Searched refs:crashed (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
server_process_mock.py 31 def __init__(self, port_obj=None, name=None, cmd=None, env=None, universal_newlines=False, treat_no_data_as_crash=False, logging=False, lines=None, crashed=False):
34 self.crashed = crashed
47 return self.crashed
driver_unittest.py 138 def __init__(self, crashed):
139 self.crashed = crashed
148 return self.crashed
153 def assert_crash(driver, error_line, crashed, name, pid, unresponsive=False, leaked=False):
154 self.assertEqual(driver._check_for_driver_crash(error_line), crashed)
169 assert_crash(driver, '#CRASHED\n', True, 'FakeServerProcess', 1234)
176 assert_crash(driver, '#CRASHED - WebProcess\n', True, 'WebProcess', None)
183 assert_crash(driver, '#CRASHED - WebProcess (pid 8675)\n', True, 'WebProcess', 8675)
197 assert_crash(driver, '#CRASHED - renderer (pid 8675)\n', True, 'renderer', 8675
    [all...]
driver.py 108 # "#CRASHED - PROCESSNAME". Since those can happen at any time
110 # didn't crash, just a subprocess) we record the crashed subprocess name here.
115 # This could mean they crashed.
166 crashed = self.has_crashed()
171 if not crashed:
174 self.error_from_test = 'OUTPUT CONTAINS "' + sanitizer + '", so we are treating this test as if it crashed, even though it did not.\n\n' + self.error_from_test
175 crashed = True
179 if stop_when_done or crashed or timed_out or leaked:
180 # We call stop() even if we crashed or timed out in order to get any remaining stdout/stderr output.
190 if crashed
    [all...]
  /external/chromium_org/base/test/
gtest_xml_util.h 43 // On successful return |crashed| is set to true if the test results
47 bool* crashed) WARN_UNUSED_RESULT;
gtest_xml_util.cc 61 // when the test binary crashed. Note that we cannot even open the <testcase>
92 bool* crashed) {
140 // running when the test binary crashed.
154 // Assume the test crashed - we can correct that later.
191 // Erase the fail-safe "crashed" result - now we know the test did
225 *crashed = (state != STATE_END);
  /external/clang/tools/clang-format/
clang-format.py 70 print ('No output from clang-format (crashed?).\n' +
  /external/chromium_org/chrome/browser/ui/views/
sad_tab_view.cc 70 static int crashed = 0; local
71 crashed++;
73 "Tabs.SadTab.CrashCreated", crashed, 1, 1000, 50);
216 static int crashed = 0; local
218 "Tabs.SadTab.CrashDisplayed", ++crashed, 1, 1000, 50);
  /external/chromium_org/build/android/pylib/monkey/
test_runner.py 69 crashed = True
78 crashed = False
82 if success_pattern in output and not crashed:
  /external/chromium_org/third_party/tcmalloc/chromium/src/
internal_logging.cc 53 static bool crashed = false; variable
108 if (!crashed) {
109 crashed = true;
  /external/chromium_org/third_party/tcmalloc/vendor/src/
internal_logging.cc 52 static bool crashed = false; variable
107 if (!crashed) {
108 crashed = true;
  /external/chromium_org/native_client_sdk/src/examples/tutorial/debugging/
example.js 6 var crashed = false; variable
132 crashed = true;
150 if (!crashed) {
  /external/chromium_org/tools/site_compare/commands/
timeload.py 11 or the string "timeout" or "crashed".
  /external/chromium_org/chrome/renderer/resources/
offline.js 46 this.crashed = false;
132 CRASHED: 'crashed',
377 if (this.activated || this.crashed) {
387 if (this.crashed && this.gameOverPanel) {
399 if (!this.started && !this.crashed) {
421 } else if (this.crashed) {
513 if (!this.crashed) {
581 if (!this.crashed && (Runner.keycodes.JUMP[String(e.keyCode)] ||
594 if (this.crashed && e.type == Runner.events.TOUCHSTART &
    [all...]
  /external/chromium_org/tools/site_compare/scrapers/chrome/
chromebase.py 110 return "crashed"
128 A list of tuples (url, time). "time" can be "crashed" or "timeout"
167 load_time = "crashed"
171 load_time = "crashed"
  /external/chromium_org/tools/site_compare/scrapers/firefox/
firefox2.py 162 A list of tuples (url, time). "time" can be "crashed" or "timeout"
216 load_time = "crashed"
221 load_time = "crashed"
  /external/chromium_org/tools/site_compare/scrapers/ie/
ie7.py 140 A list of tuples (url, time). "time" can be "crashed" or "timeout"
177 load_time = "crashed"
180 load_time = "crashed"
  /external/chromium_org/v8/tools/testrunner/local/
execution.py 84 self.crashed = 0
138 self.crashed += 1
progress.py 99 print "--- CRASHED ---"
110 if self.runner.crashed > 0:
111 print "=== %i tests CRASHED" % self.runner.crashed
182 print "--- CRASHED ---"
277 fail_text += "exit code: %d\n--- CRASHED ---" % test.output.exit_code
  /external/chromium_org/base/test/launcher/
unit_test_launcher.cc 310 bool crashed = false; local
312 ProcessGTestOutput(output_file, &test_results, &crashed);
  /external/chromium_org/content/test/gpu/gpu_tests/
context_lost.py 106 print 'Tab crashed while navigating to chrome://gpucrash'
153 print 'Tab crashed while closing chrome://gpucrash'
  /external/chromium_org/v8/tools/testrunner/network/
network_execution.py 213 self.crashed += 1
  /external/chromium_org/remoting/webapp/
host_screen.js 227 '. The host probably crashed.');
  /external/chromium_org/v8/test/webkit/fast/regex/
parentheses.js 258 // Test cases discovered by fuzzing that crashed the compiler.
  /external/chromium_org/native_client_sdk/src/doc/devguide/devcycle/
dynamic-loading.rst 416 **NativeClient: NaCl module load failed: Nexe crashed during startup**
417 This error message indicates that a module crashed while being loaded. You
418 can determine which module crashed by looking at the Network tab in Chrome's
419 Developer Tools (see above). The module that crashed will be the last one
  /external/chromium_org/native_client_sdk/src/resources/
common.js 97 // has crashed.
220 updateStatus('CRASHED');

Completed in 739 milliseconds

1 2