HomeSort by relevance Sort by last modified time
    Searched defs:crashes (Results 1 - 10 of 10) sorted by null

  /external/chromium/chrome/browser/
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
  /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) {
  /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...]
  /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) {
  /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) {
  /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...]

Completed in 1384 milliseconds