HomeSort by relevance Sort by last modified time
    Searched refs:ThreadLocalPlatform (Results 1 - 3 of 3) sorted by null

  /external/chromium/base/
thread_local_posix.cc 14 void ThreadLocalPlatform::AllocateSlot(SlotType& slot) {
20 void ThreadLocalPlatform::FreeSlot(SlotType& slot) {
26 void* ThreadLocalPlatform::GetValueFromSlot(SlotType& slot) {
31 void ThreadLocalPlatform::SetValueInSlot(SlotType& slot, void* value) {
thread_local_win.cc 14 void ThreadLocalPlatform::AllocateSlot(SlotType& slot) {
20 void ThreadLocalPlatform::FreeSlot(SlotType& slot) {
27 void* ThreadLocalPlatform::GetValueFromSlot(SlotType& slot) {
32 void ThreadLocalPlatform::SetValueInSlot(SlotType& slot, void* value) {
thread_local.h 60 struct ThreadLocalPlatform {
77 ThreadLocalPlatform::AllocateSlot(slot_);
81 ThreadLocalPlatform::FreeSlot(slot_);
85 return static_cast<Type*>(ThreadLocalPlatform::GetValueFromSlot(slot_));
89 ThreadLocalPlatform::SetValueInSlot(slot_, ptr);
93 typedef ThreadLocalPlatform::SlotType SlotType;

Completed in 41 milliseconds