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

  /external/webkit/Source/JavaScriptGlue/ForwardingHeaders/wtf/
ThreadSpecific.h 1 #include <JavaScriptCore/ThreadSpecific.h>
  /external/webkit/Source/WebCore/ForwardingHeaders/wtf/
ThreadSpecific.h 3 #include <JavaScriptCore/ThreadSpecific.h>
  /external/webkit/Source/JavaScriptCore/wtf/
ThreadSpecific.h 64 template<typename T> class ThreadSpecific {
65 WTF_MAKE_NONCOPYABLE(ThreadSpecific);
67 ThreadSpecific();
81 ~ThreadSpecific();
91 Data(T* value, ThreadSpecific<T>* owner) : value(value), owner(owner) {}
97 ThreadSpecific<T>* owner;
121 inline ThreadSpecific<T>::ThreadSpecific()
127 inline T* ThreadSpecific<T>::get()
133 inline void ThreadSpecific<T>::set(T* ptr
    [all...]
ThreadSpecificWin.cpp 23 #include "ThreadSpecific.h"
26 #error This file should not be compiled by ports that do not use Windows native ThreadSpecific implementation.
46 // The layout of ThreadSpecific<T>::Data does not depend on T. So we are safe to do the static cast to ThreadSpecific<int> in order to access its data member.
47 ThreadSpecific<int>::Data* data = static_cast<ThreadSpecific<int>::Data*>(TlsGetValue(tlsKeys()[i]));
WTFThreadData.cpp 33 ThreadSpecific<WTFThreadData>* WTFThreadData::staticData;
WTFThreadData.h 45 #include <wtf/ThreadSpecific.h>
135 static JS_EXPORTDATA ThreadSpecific<WTFThreadData>* staticData;
153 WTFThreadData::staticData = new ThreadSpecific<WTFThreadData>;
  /external/webkit/Source/WebCore/bindings/v8/
DOMData.cpp 55 DEFINE_STATIC_LOCAL(WTF::ThreadSpecific<ChildThreadDOMData>, childThreadDOMData, ());
DOMDataStore.h 44 #include <wtf/ThreadSpecific.h>
  /external/webkit/Source/WebCore/platform/
ThreadGlobalData.h 36 #include <wtf/ThreadSpecific.h>
38 using WTF::ThreadSpecific;
83 static ThreadSpecific<ThreadGlobalData>* staticData;
98 ThreadGlobalData::staticData = new ThreadSpecific<ThreadGlobalData>;
ThreadGlobalData.cpp 46 #include <wtf/ThreadSpecific.h>
53 ThreadSpecific<ThreadGlobalData>* ThreadGlobalData::staticData;
  /external/webkit/Source/WebKit2/Platform/
RunLoop.cpp 43 DEFINE_STATIC_LOCAL(WTF::ThreadSpecific<RunLoop>, runLoopData, ());
RunLoop.h 33 #include <wtf/ThreadSpecific.h>
131 friend class WTF::ThreadSpecific<RunLoop>;
  /external/webkit/Source/JavaScriptCore/runtime/
JSGlobalData.h 48 #include <wtf/ThreadSpecific.h>
Identifier.cpp 36 using WTF::ThreadSpecific;
295 // Check the identifier table accessible through the threadspecific matches the

Completed in 733 milliseconds