OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ThreadLocalStorage
(Results
1 - 21
of
21
) sorted by null
/external/chromium/base/threading/
thread_local_storage_posix.cc
11
ThreadLocalStorage
::Slot::Slot(TLSDestructorFunc destructor)
17
bool
ThreadLocalStorage
::Slot::Initialize(TLSDestructorFunc destructor) {
29
void
ThreadLocalStorage
::Slot::Free() {
37
void*
ThreadLocalStorage
::Slot::Get() const {
42
void
ThreadLocalStorage
::Slot::Set(void* value) {
thread_local_storage_win.cc
22
long
ThreadLocalStorage
::tls_key_ = TLS_OUT_OF_INDEXES;
27
long
ThreadLocalStorage
::tls_max_ = 1;
32
ThreadLocalStorage
::TLSDestructorFunc
33
ThreadLocalStorage
::tls_destructors_[kThreadLocalStorageSize];
35
void**
ThreadLocalStorage
::Initialize() {
59
ThreadLocalStorage
::Slot::Slot(TLSDestructorFunc destructor)
65
bool
ThreadLocalStorage
::Slot::Initialize(TLSDestructorFunc destructor) {
67
ThreadLocalStorage
::Initialize();
82
void
ThreadLocalStorage
::Slot::Free() {
89
void*
ThreadLocalStorage
::Slot::Get() const
[
all
...]
thread_local_storage.h
20
class BASE_API
ThreadLocalStorage
{
91
DISALLOW_COPY_AND_ASSIGN(
ThreadLocalStorage
);
thread_local_storage_unittest.cc
16
// storing ints into
ThreadLocalStorage
.
25
static
ThreadLocalStorage
::Slot tls_slot(LINKER_INITIALIZED);
63
ThreadLocalStorage
::Slot slot;
/external/chromium_org/base/threading/
thread_local_storage_posix.cc
11
ThreadLocalStorage
::Slot::Slot(TLSDestructorFunc destructor) {
17
bool
ThreadLocalStorage
::StaticSlot::Initialize(TLSDestructorFunc destructor) {
29
void
ThreadLocalStorage
::StaticSlot::Free() {
37
void*
ThreadLocalStorage
::StaticSlot::Get() const {
42
void
ThreadLocalStorage
::StaticSlot::Set(void* value) {
thread_local_storage.h
19
class BASE_EXPORT
ThreadLocalStorage
{
35
//
ThreadLocalStorage
::StaticSlot my_slot = TLS_INITIALIZER;
37
//
ThreadLocalStorage
::Slot (below) instead.
88
DISALLOW_COPY_AND_ASSIGN(
ThreadLocalStorage
);
thread_local_storage_win.cc
25
// assigned to the instance variable slot_ in a
ThreadLocalStorage
::Slot
27
// instance of
ThreadLocalStorage
::Slot has been freed (i.e., destructor called,
48
volatile base::
ThreadLocalStorage
::TLSDestructorFunc
129
base::
ThreadLocalStorage
::TLSDestructorFunc destructor =
154
ThreadLocalStorage
::Slot::Slot(TLSDestructorFunc destructor) {
160
bool
ThreadLocalStorage
::StaticSlot::Initialize(TLSDestructorFunc destructor) {
178
void
ThreadLocalStorage
::StaticSlot::Free() {
188
void*
ThreadLocalStorage
::StaticSlot::Get() const {
197
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;
/external/chromium/net/base/
dns_reload_timer.cc
65
// multiple times. Initialize the
ThreadLocalStorage
slot only once.
75
static base::
ThreadLocalStorage
::Slot tls_index_ ;
82
base::
ThreadLocalStorage
::Slot DnsReloadTimer::tls_index_(
/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
110
base::
ThreadLocalStorage
::Slot* msg_loop_slot() {
116
void set_msg_loop_slot(base::
ThreadLocalStorage
::Slot* slot) {
149
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/webkit/child/
webkitplatformsupport_child_impl.h
62
base::
ThreadLocalStorage
::Slot current_thread_slot_;
/external/chromium/base/metrics/
stats_table.h
187
ThreadLocalStorage
::Slot tls_index_;
/external/chromium_org/base/metrics/
stats_table.h
192
ThreadLocalStorage
::Slot tls_index_;
/external/chromium/base/
tracked_objects.h
575
static base::
ThreadLocalStorage
::Slot tls_index_;
tracked_objects.cc
21
base::
ThreadLocalStorage
::Slot ThreadData::tls_index_(base::LINKER_INITIALIZED);
[
all
...]
/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.
585
static base::
ThreadLocalStorage
::StaticSlot tls_index_;
[
all
...]
tracked_objects.cc
244
base::
ThreadLocalStorage
::StaticSlot ThreadData::tls_index_ = TLS_INITIALIZER;
/external/chromium_org/ui/base/ime/win/
tsf_bridge.cc
25
base::
ThreadLocalStorage
::StaticSlot tls_tsf_bridge = TLS_INITIALIZER;
Completed in 3032 milliseconds