OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ThreadData
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/ppapi/utility/threading/
simple_thread.cc
23
struct
ThreadData
{
35
ThreadData
* data = static_cast<
ThreadData
*>(void_data);
96
ThreadData
* data = new
ThreadData
;
/external/chromium/base/
tracked_objects.cc
21
base::ThreadLocalStorage::Slot
ThreadData
::tls_index_(base::LINKER_INITIALIZED);
75
birth_thread_(
ThreadData
::current()) { }
83
//
ThreadData
maintains the central data for all births and death.
86
ThreadData
*
ThreadData
::first_ = NULL;
88
base::Lock
ThreadData
::list_lock_;
91
ThreadData
::Status
ThreadData
::status_ =
ThreadData
::UNINITIALIZED;
93
ThreadData
::ThreadData() : next_(NULL)
[
all
...]
tracked_objects.h
93
//
ThreadData
instance (for that specific thread only). The two critical items
102
// of
ThreadData
instances. Each such instance maintains a pointer to the next
103
// one. A static member of
ThreadData
provides a pointer to the first_ item on
105
// When new
ThreadData
instances is added to the global list, it is pre-pended,
159
class
ThreadData
;
165
const
ThreadData
* birth_thread() const { return birth_thread_; }
175
const
ThreadData
* birth_thread_; // The thread this birth took place on.
255
Snapshot(const BirthOnThread& birth_on_thread, const
ThreadData
& death_thread,
262
const
ThreadData
* birth_thread() const { return birth_->birth_thread(); }
265
const
ThreadData
* death_thread() const {return death_thread_;
[
all
...]
/external/chromium_org/base/
tracked_objects.cc
39
// When
ThreadData
is first initialized, should we start in an ACTIVE state to
45
const
ThreadData
::Status kInitialStartupState =
46
ThreadData
::PROFILING_CHILDREN_ACTIVE;
49
// the
ThreadData
class. This compile time flag should be set to true if we
198
const
ThreadData
& current)
217
Births::Births(const Location& location, const
ThreadData
& current)
230
//
ThreadData
maintains the central data for all births and deaths on a single
238
NowFunction*
ThreadData
::now_function_ = NULL;
240
// A TLS slot which points to the
ThreadData
instance for the current thread. We
244
base::ThreadLocalStorage::StaticSlot
ThreadData
::tls_index_ = TLS_INITIALIZER
[
all
...]
tracked_objects.h
105
//
ThreadData
instance (for that specific thread only). The two critical items
114
// of
ThreadData
instances. Each such instance maintains a pointer to the next
115
// one. A static member of
ThreadData
provides a pointer to the first item on
118
// When new
ThreadData
instances is added to the global list, it is pre-pended,
150
// of
ThreadData
objects for a process. It holds a set of TaskSnapshots
198
class
ThreadData
;
201
BirthOnThread(const Location& location, const
ThreadData
& current);
204
const
ThreadData
* birth_thread() const { return birth_thread_; }
214
const
ThreadData
* const birth_thread_;
236
Births(const Location& location, const
ThreadData
& current)
[
all
...]
/external/llvm/include/llvm/MC/
SectionKind.h
82
///
ThreadData
- Initialized TLS data objects.
83
ThreadData
,
166
return K ==
ThreadData
|| K == ThreadBSS;
170
bool isThreadData() const { return K ==
ThreadData
; }
224
static SectionKind getThreadData() { return get(
ThreadData
); }
/external/webrtc/src/modules/audio_processing/test/
unit_test.cc
249
struct
ThreadData
{
250
ThreadData
(int thread_num_, AudioProcessing* ap_)
261
ThreadData
* thread_data = static_cast<
ThreadData
*>(thread_object);
317
std::vector<
ThreadData
*> thread_data(num_threads);
324
thread_data[i] = new
ThreadData
(i, apm_);
[
all
...]
/prebuilts/devtools/tools/lib/
traceview.jar
Completed in 1369 milliseconds