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

1 2

  /external/chromium/chrome/browser/resources/
crashes.js 8 * Requests the list of crashes from the backend.
15 * Callback from backend with the list of crashes. Builds the UI.
17 * @param {array} crashes The list of crashes.
20 function updateCrashList(enabled, crashes, version) {
22 crashes.length);
35 for (var i = 0; i < crashes.length; i++) {
36 var crash = crashes[i];
70 $('noCrashes').hidden = crashes.length != 0;
  /external/chromium_org/chrome/browser/resources/
crashes.js 6 * Requests the list of crashes from the backend.
13 * Callback from backend with the list of crashes. Builds the UI.
15 * @param {array} crashes The list of crashes.
18 function updateCrashList(enabled, crashes, version) {
20 crashes.length);
33 for (var i = 0; i < crashes.length; i++) {
34 var crash = crashes[i];
83 $('noCrashes').hidden = crashes.length != 0;
  /external/chromium/chrome/browser/
crash_upload_list.h 50 // Populates |crashes| with the |max_count| most recent uploaded crashes,
54 std::vector<CrashInfo>* crashes);
62 // Returns a reference to the list of crashes.
63 std::vector<CrashInfo>& crashes();
crash_upload_list.cc 93 std::vector<CrashInfo>* crashes) {
96 std::back_inserter(*crashes));
99 std::vector<CrashUploadList::CrashInfo>& CrashUploadList::crashes() { function in class:CrashUploadList
crash_upload_list_win.cc 75 crashes().push_back(
  /external/chromium/chrome/browser/ui/webui/
crashes_ui.cc 102 // The handler for Javascript messages for the chrome://crashes/ page.
117 // Asynchronously fetches the list of crashes. Called from JS.
120 // Sends the recent crashes list JS.
170 std::vector<CrashUploadList::CrashInfo> crashes; local
171 upload_list_->GetUploadedCrashes(50, &crashes);
173 for (std::vector<CrashUploadList::CrashInfo>::iterator i = crashes.begin();
174 i != crashes.end(); ++i) {
216 // Set up the chrome://crashes/ source.
  /external/chromium_org/chrome/browser/ui/webui/
crashes_ui.cc 59 source->AddResourcePath("crashes.js", IDR_CRASHES_JS);
70 // The handler for Javascript messages for the chrome://crashes/ page.
84 // Asynchronously fetches the list of crashes. Called from JS.
87 // Sends the recent crashes list JS.
132 std::vector<CrashUploadList::UploadInfo> crashes; local
133 upload_list_->GetUploads(50, &crashes);
135 for (std::vector<CrashUploadList::UploadInfo>::iterator i = crashes.begin();
136 i != crashes.end(); ++i) {
164 // Set up the chrome://crashes/ source.
flash_ui.cc 125 // Whether the list of all crashes is available.
299 std::vector<CrashUploadList::UploadInfo> crashes; local
300 upload_list_->GetUploads(10, &crashes);
302 for (std::vector<CrashUploadList::UploadInfo>::iterator i = crashes.begin();
303 i != crashes.end(); ++i) {
  /frameworks/base/tests/AppLaunch/src/com/android/tests/applaunch/
AppLaunch.java 285 List<ProcessErrorStateInfo> crashes = am.getProcessesInErrorState(); local
286 if (crashes != null) {
287 for (ProcessErrorStateInfo crash : crashes) {
  /frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/
MemoryUsageTest.java 224 List<ProcessErrorStateInfo> crashes = am.getProcessesInErrorState(); local
225 if (crashes != null) {
226 for (ProcessErrorStateInfo crash : crashes) {
  /external/chromium_org/v8/test/webkit/
arguments-bad-index.js 25 "This test checks whether arguments crashes when passed a bad index."
dfg-dead-redundant-get-array-length.js 25 "Tests that having a dead, and redundant, use of array.length doesn't cause compiler crashes."
duplicate-param-crash.js 25 'Tests to ensure that activations are built correctly in the face of duplicate parameter names and do not cause crashes.'
var-shadows-arg-crash.js 25 'Tests to ensure that activations are built correctly in the face of duplicate parameter names and do not cause crashes.'
dfg-cfg-simplify-phantom-get-local-on-same-block-set-local.js 25 "Tests that attempts by the DFG simplification to short-circuit a Phantom to a GetLocal on a variable that is SetLocal'd in the same block, and where the predecessor block(s) make no mention of that variable, do not result in crashes."
duplicate-param-gc-crash.js 25 'Tests to ensure that activations are built correctly in the face of duplicate parameter names and do not cause crashes.'
  /external/chromium/chrome/browser/metrics/
metrics_log.cc 179 int crashes = 0; local
180 plugin_dict->GetInteger(prefs::kStabilityPluginCrashes, &crashes);
181 WriteIntAttribute("crashcount", crashes);
metrics_service.cc 48 // of page loads, along with any counts of renderer or plugin crashes.
1696 int crashes = 0; local
    [all...]
  /external/chromium_org/v8/test/mjsunit/
generated-transition-stub.js 137 // causing crashes.
191 // causing crashes.
  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-39160.js 32 // test crashes with the bug.
  /external/v8/test/mjsunit/regress/
regress-crbug-39160.js 32 // test crashes with the bug.
  /external/chromium_org/ppapi/native_client/tests/breakpad_crash_test/
nacl.scons 27 # This tests that crashes in Chromium's browser process successfully
90 # Crashes in untrusted code should not produce crash dumps.
  /external/chromium_org/chrome/browser/metrics/
metrics_log.cc 574 int crashes = 0; local
575 plugin_dict->GetInteger(prefs::kStabilityPluginCrashes, &crashes);
576 if (crashes > 0)
577 plugin_stability->set_crash_count(crashes);
    [all...]
metrics_service.cc 49 // of page loads, along with any counts of renderer or plugin crashes.
659 // Exclude plugin crashes from the count below because we report them via
1651 int crashes = 0; local
    [all...]
  /external/chromium_org/tools/grit/grit/
tclib_unittest.py 152 'Crashes have been known to occur with certain types of history \r\n'
154 'disabling the \'Index note history\' option. If it crashes before,\r\n'

Completed in 652 milliseconds

1 2