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

  /external/webrtc/webrtc/modules/desktop_capture/win/
screen_capturer_win_magnifier.cc 38 Atomic32 ScreenCapturerWinMagnifier::tls_index_(TLS_OUT_OF_INDEXES);
240 assert(tls_index_.Value() != static_cast<int32_t>(TLS_OUT_OF_INDEXES));
244 TlsGetValue(tls_index_.Value()));
373 if (tls_index_.Value() == static_cast<int32_t>(TLS_OUT_OF_INDEXES)) {
375 // write to tls_index_ using CompareExchange.
377 if (!tls_index_.CompareExchange(new_tls_index, TLS_OUT_OF_INDEXES))
381 assert(tls_index_.Value() != static_cast<int32_t>(TLS_OUT_OF_INDEXES));
382 TlsSetValue(tls_index_.Value(), this);
screen_capturer_win_magnifier.h 102 static Atomic32 tls_index_; member in class:webrtc::ScreenCapturerWinMagnifier
  /external/libchrome/base/
tracked_objects.cc 380 // in-place construction happens when we call tls_index_.Initialize().
382 base::ThreadLocalStorage::StaticSlot ThreadData::tls_index_ = TLS_INITIALIZER; member in class:tracked_objects::ThreadData
447 reinterpret_cast<ThreadData*>(tls_index_.Get());
452 tls_index_.Set(current_thread_data);
457 if (!tls_index_.initialized())
459 ThreadData* registered = reinterpret_cast<ThreadData*>(tls_index_.Get());
466 tls_index_.Set(worker_thread_data);
768 if (!tls_index_.initialized()) { // Testing may have initialized this.
770 tls_index_.Initialize(&ThreadData::OnThreadTermination);
771 DCHECK(tls_index_.initialized())
    [all...]
tracked_objects.h 715 static base::ThreadLocalStorage::StaticSlot tls_index_; member in class:tracked_objects::ThreadData
    [all...]

Completed in 78 milliseconds