Home
last modified time | relevance | path

Searched refs:m_tlsKey (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
DThreadSpecificWin.cpp52 m_tlsKey = TlsAlloc(); in PlatformThreadSpecificKey()
53 if (m_tlsKey == TLS_OUT_OF_INDEXES) in PlatformThreadSpecificKey()
59 TlsFree(m_tlsKey); in ~PlatformThreadSpecificKey()
62 void setValue(void* data) { TlsSetValue(m_tlsKey, data); } in setValue()
63 void* value() { return TlsGetValue(m_tlsKey); } in value()
73 DWORD m_tlsKey; member in WTF::PlatformThreadSpecificKey