OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tls_data
(Results
1 - 3
of
3
) sorted by null
/external/libchrome/base/threading/
thread_local_storage.cc
159
TlsVectorEntry*
tls_data
= new TlsVectorEntry[kThreadLocalStorageSize];
local
160
memcpy(
tls_data
, stack_allocated_tls_data, sizeof(stack_allocated_tls_data));
161
PlatformThreadLocalStorage::SetTLSValue(key,
tls_data
);
162
return
tls_data
;
165
void OnThreadExitInternal(TlsVectorEntry*
tls_data
) {
166
DCHECK(
tls_data
);
177
memcpy(stack_allocated_tls_data,
tls_data
, sizeof(stack_allocated_tls_data));
182
delete[]
tls_data
; // Our last dependence on an allocator.
240
void *
tls_data
= GetTLSValue(key);
local
242
if (!
tls_data
)
306
TlsVectorEntry*
tls_data
= static_cast<TlsVectorEntry*>(
local
320
TlsVectorEntry*
tls_data
= static_cast<TlsVectorEntry*>(
local
[
all
...]
/external/mesa3d/src/gallium/state_trackers/wgl/
stw_framebuffer.c
195
struct stw_tls_data *
tls_data
;
local
199
tls_data
= stw_tls_get_data();
200
if (!
tls_data
)
204
return CallNextHookEx(
tls_data
->hCallWndProcHook, nCode, wParam, lParam);
241
return CallNextHookEx(
tls_data
->hCallWndProcHook, nCode, wParam, lParam);
/external/wpa_supplicant_8/src/crypto/
tls_openssl.c
219
struct
tls_data
{
struct
911
struct
tls_data
*data;
1069
struct
tls_data
*data = ssl_ctx;
[
all
...]
Completed in 102 milliseconds