OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ThreadWatcher
(Results
1 - 4
of
4
) sorted by null
/external/chromium/chrome/browser/metrics/
thread_watcher.cc
16
const int
ThreadWatcher
::kPingCount = 3;
18
//
ThreadWatcher
methods and members.
19
ThreadWatcher
::
ThreadWatcher
(const BrowserThread::ID& thread_id,
36
ThreadWatcher
::~
ThreadWatcher
() {}
39
void
ThreadWatcher
::StartWatching(const BrowserThread::ID& thread_id,
52
&
ThreadWatcher
::StartWatching,
60
ThreadWatcher
* watcher =
61
new
ThreadWatcher
(thread_id, thread_name, sleep_time, unresponsive_time)
[
all
...]
thread_watcher.h
7
//
ThreadWatcher
class which performs health check on threads that would like to
9
// all active
ThreadWatcher
objects.
11
//
ThreadWatcher
class sends ping message to the watched thread and the watched
15
// TODO(raman):
ThreadWatcher
can detect hung threads. If a hung thread is
28
//
ThreadWatcher
::StartWatching(BrowserThread::IO, "IO", sleep_time,
56
class
ThreadWatcher
{
59
// create
ThreadWatcher
object for the given thread_id, thread_name,
63
//
ThreadWatcher
object and activate the thread watching of the given
92
// Construct a
ThreadWatcher
for the given thread_id. sleep_time_ is the
95
ThreadWatcher
(const BrowserThread::ID& thread_id
[
all
...]
/external/chromium_org/chrome/browser/metrics/
thread_watcher.cc
122
//
ThreadWatcher
methods and members.
123
ThreadWatcher
::
ThreadWatcher
(const WatchingParams& params)
147
ThreadWatcher
::~
ThreadWatcher
() {}
150
void
ThreadWatcher
::StartWatching(const WatchingParams& params) {
160
base::Bind(&
ThreadWatcher
::StartWatching, params));
167
ThreadWatcher
* watcher = new
ThreadWatcher
(params);
177
void
ThreadWatcher
::ActivateThreadWatching()
[
all
...]
thread_watcher.h
7
//
ThreadWatcher
class which performs health check on threads that would like to
9
// all active
ThreadWatcher
objects.
11
//
ThreadWatcher
class sends ping message to the watched thread and the watched
15
// TODO(raman):
ThreadWatcher
can detect hung threads. If a hung thread is
38
//
ThreadWatcher
::StartWatching(
71
class
ThreadWatcher
{
74
// as a workaround that limitation for invoking
ThreadWatcher
::StartWatching.
102
// will create
ThreadWatcher
object for the given |thread_id|, |thread_name|.
112
// will register that
ThreadWatcher
object and activate the thread watching of
138
// Construct a
ThreadWatcher
for the given |thread_id|. |sleep_time| is th
[
all
...]
Completed in 160 milliseconds