/external/chromium_org/chrome/browser/metrics/ |
thread_watcher.h | 29 // sufficiently responsive. |live_threads_threshold| specifies the number of 37 // uint32 live_threads_threshold = ThreadWatcherList::kLiveThreadsThreshold; 40 // unresponsive_threshold, crash_on_hang, live_threads_threshold); 82 uint32 live_threads_threshold; member in struct:ThreadWatcher::WatchingParams 97 live_threads_threshold(live_threads_threshold_in) { 109 // the watched thread is unresponsive. |live_threads_threshold| specifies the 312 // |live_threads_threshold| specifies the maximum number of browser threads 315 // deadlock, or look for a solo hung thread. A small live_threads_threshold 341 // FILE. The second parameter specifies |live_threads_threshold|. For UI and 352 // Example 1: If the |live_threads_threshold| value for "IO" was 3 an 376 uint32 live_threads_threshold; member in struct:ThreadWatcherList::CrashDataThresholds [all...] |
thread_watcher.cc | 145 live_threads_threshold_(params.live_threads_threshold), 429 uint32 live_threads_threshold, 431 : live_threads_threshold(live_threads_threshold), 436 : live_threads_threshold(kLiveThreadsThreshold), 605 it->second.live_threads_threshold = INT_MAX; 631 uint32 live_threads_threshold = default_live_threads_threshold; local 634 (!base::StringToUint(values[1], &live_threads_threshold))) { 644 CrashDataThresholds crash_data(live_threads_threshold, 702 uint32 live_threads_threshold = 0 local [all...] |
thread_watcher_unittest.cc | 363 EXPECT_LT(0u, it->second.live_threads_threshold); 393 EXPECT_EQ(4u, it->second.live_threads_threshold); 425 uint32 crash_live_threads_threshold = it->second.live_threads_threshold;
|