OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ThreadLocalStorage
(Results
1 - 13
of
13
) sorted by null
/external/chromium_org/base/threading/
thread_local_storage.h
23
// interface, you should instead be using
ThreadLocalStorage
::StaticSlot/Slot.
33
//
ThreadLocalStorage
implementation. We expect that an OS will not return
57
//
ThreadLocalStorage
, until there are no slot values remaining as having
78
class BASE_EXPORT
ThreadLocalStorage
{
94
//
ThreadLocalStorage
::StaticSlot my_slot = TLS_INITIALIZER;
96
//
ThreadLocalStorage
::Slot (below) instead.
139
DISALLOW_COPY_AND_ASSIGN(
ThreadLocalStorage
);
thread_local_storage.cc
26
// assigned to the instance variable slot_ in a
ThreadLocalStorage
::Slot
28
// instance of
ThreadLocalStorage
::Slot has been freed (i.e., destructor called,
49
volatile base::
ThreadLocalStorage
::TLSDestructorFunc
147
base::
ThreadLocalStorage
::TLSDestructorFunc destructor =
194
ThreadLocalStorage
::Slot::Slot(TLSDestructorFunc destructor) {
200
bool
ThreadLocalStorage
::StaticSlot::Initialize(TLSDestructorFunc destructor) {
218
void
ThreadLocalStorage
::StaticSlot::Free() {
228
void*
ThreadLocalStorage
::StaticSlot::Get() const {
239
void
ThreadLocalStorage
::StaticSlot::Set(void* value) {
thread_local_storage_unittest.cc
16
// storing ints into
ThreadLocalStorage
.
29
static
ThreadLocalStorage
::StaticSlot tls_slot = TLS_INITIALIZER;
76
ThreadLocalStorage
::Slot slot;
thread_local.h
24
// Thread Safety: An instance of
ThreadLocalStorage
is completely thread safe
30
//
ThreadLocalStorage
.
70
typedef
ThreadLocalStorage
::StaticSlot SlotType;
/external/chromium_org/net/base/
dns_reloader.cc
96
static base::
ThreadLocalStorage
::StaticSlot tls_index_;
103
base::
ThreadLocalStorage
::StaticSlot DnsReloader::tls_index_ = TLS_INITIALIZER;
/external/chromium_org/ppapi/proxy/
plugin_globals.h
111
base::
ThreadLocalStorage
::Slot* msg_loop_slot() {
117
void set_msg_loop_slot(base::
ThreadLocalStorage
::Slot* slot) {
158
scoped_ptr<base::
ThreadLocalStorage
::Slot> msg_loop_slot_;
ppb_message_loop_proxy.cc
51
base::
ThreadLocalStorage
::Slot* slot = new base::
ThreadLocalStorage
::Slot();
73
base::
ThreadLocalStorage
::Slot* slot = globals->msg_loop_slot();
75
slot = new base::
ThreadLocalStorage
::Slot(&ReleaseMessageLoop);
/external/chromium_org/base/metrics/
stats_table.h
213
ThreadLocalStorage
::Slot tls_index_;
/external/chromium_org/mojo/examples/html_viewer/
blink_platform_impl.h
70
base::
ThreadLocalStorage
::Slot current_thread_slot_;
/external/chromium_org/base/debug/
trace_event_memory.cc
65
base::
ThreadLocalStorage
::StaticSlot tls_trace_memory_stack = TLS_INITIALIZER;
/external/chromium_org/base/
tracked_objects.h
350
// We use
ThreadLocalStorage
to quickly identfy the current ThreadData context.
586
static base::
ThreadLocalStorage
::StaticSlot tls_index_;
[
all
...]
tracked_objects.cc
244
base::
ThreadLocalStorage
::StaticSlot ThreadData::tls_index_ = TLS_INITIALIZER;
/external/chromium_org/content/child/
blink_platform_impl.h
177
base::
ThreadLocalStorage
::Slot current_thread_slot_;
Completed in 1101 milliseconds