OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SamplerThread
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/v8/src/
sampler.cc
427
class
SamplerThread
: public Thread {
431
explicit
SamplerThread
(int interval)
432
: Thread(Thread::Options("
SamplerThread
", kSamplerThreadStackSize)),
444
instance_ = new
SamplerThread
(sampler->interval());
457
SamplerThread
* instance_to_remove = NULL;
501
static
SamplerThread
* instance_;
506
DISALLOW_COPY_AND_ASSIGN(
SamplerThread
);
510
Mutex*
SamplerThread
::mutex_ = NULL;
511
SamplerThread
*
SamplerThread
::instance_ = NULL
[
all
...]
/external/v8/src/
platform-cygwin.cc
629
class
SamplerThread
: public Thread {
633
explicit
SamplerThread
(int interval)
634
: Thread(Thread::Options("
SamplerThread
", kSamplerThreadStackSize)),
641
instance_ = new
SamplerThread
(sampler->interval());
688
SamplerThread
* sampler_thread =
689
reinterpret_cast<
SamplerThread
*>(raw_sampler_thread);
736
static
SamplerThread
* instance_;
739
DISALLOW_COPY_AND_ASSIGN(
SamplerThread
);
743
LazyMutex
SamplerThread
::mutex_ = LAZY_MUTEX_INITIALIZER;
744
SamplerThread
* SamplerThread::instance_ = NULL
[
all
...]
platform-macos.cc
748
class
SamplerThread
: public Thread {
752
explicit
SamplerThread
(int interval)
753
: Thread(Thread::Options("
SamplerThread
", kSamplerThreadStackSize)),
760
instance_ = new
SamplerThread
(sampler->interval());
807
SamplerThread
* sampler_thread =
808
reinterpret_cast<
SamplerThread
*>(raw_sampler_thread);
866
static
SamplerThread
* instance_;
869
DISALLOW_COPY_AND_ASSIGN(
SamplerThread
);
875
LazyMutex
SamplerThread
::mutex_ = LAZY_MUTEX_INITIALIZER;
876
SamplerThread
* SamplerThread::instance_ = NULL
[
all
...]
platform-win32.cc
[
all
...]
Completed in 517 milliseconds