Home
last modified time | relevance | path

Searched refs:CurrentThreadId (Results 1 – 25 of 30) sorted by relevance

12

/external/webrtc/modules/remote_bitrate_estimator/test/
Dbwe_test_logging.cc65 thread_map_[rtc::CurrentThreadId()].global_state.tag = ToString(name); in SetGlobalContext()
70 thread_map_[rtc::CurrentThreadId()].global_state.tag = name; in SetGlobalContext()
75 thread_map_[rtc::CurrentThreadId()].global_state.tag = name; in SetGlobalContext()
80 thread_map_[rtc::CurrentThreadId()].global_state.enabled = enabled; in SetGlobalEnable()
85 ThreadMap::iterator it = thread_map_.find(rtc::CurrentThreadId()); in Log()
122 ThreadMap::iterator it = thread_map_.find(rtc::CurrentThreadId()); in Plot()
136 ThreadMap::iterator it = thread_map_.find(rtc::CurrentThreadId()); in PlotBar()
149 ThreadMap::iterator it = thread_map_.find(rtc::CurrentThreadId()); in PlotBaselineBar()
165 ThreadMap::iterator it = thread_map_.find(rtc::CurrentThreadId()); in PlotErrorBar()
184 ThreadMap::iterator it = thread_map_.find(rtc::CurrentThreadId()); in PlotLimitErrorBar()
[all …]
/external/perfetto/src/base/
Dthread_checker.cc29 ThreadID CurrentThreadId() { in CurrentThreadId() function
39 thread_id_.store(CurrentThreadId()); in ThreadChecker()
54 auto self = CurrentThreadId(); in CalledOnValidThread()
/external/webrtc/sdk/android/src/jni/audio_device/
Dopensles_player.cc59 ALOGD("ctor[tid=%d]", rtc::CurrentThreadId()); in OpenSLESPlayer()
71 ALOGD("dtor[tid=%d]", rtc::CurrentThreadId()); in ~OpenSLESPlayer()
85 ALOGD("Init[tid=%d]", rtc::CurrentThreadId()); in Init()
94 ALOGD("Terminate[tid=%d]", rtc::CurrentThreadId()); in Terminate()
101 ALOGD("InitPlayout[tid=%d]", rtc::CurrentThreadId()); in InitPlayout()
120 ALOGD("StartPlayout[tid=%d]", rtc::CurrentThreadId()); in StartPlayout()
148 ALOGD("StopPlayout[tid=%d]", rtc::CurrentThreadId()); in StopPlayout()
Dopensles_recorder.cc59 ALOGD("ctor[tid=%d]", rtc::CurrentThreadId()); in OpenSLESRecorder()
71 ALOGD("dtor[tid=%d]", rtc::CurrentThreadId()); in ~OpenSLESRecorder()
82 ALOGD("Init[tid=%d]", rtc::CurrentThreadId()); in Init()
91 ALOGD("Terminate[tid=%d]", rtc::CurrentThreadId()); in Terminate()
98 ALOGD("InitRecording[tid=%d]", rtc::CurrentThreadId()); in InitRecording()
117 ALOGD("StartRecording[tid=%d]", rtc::CurrentThreadId()); in StartRecording()
154 ALOGD("StopRecording[tid=%d]", rtc::CurrentThreadId()); in StopRecording()
/external/webrtc/modules/audio_device/android/
Dopensles_player.cc57 ALOGD("ctor[tid=%d]", rtc::CurrentThreadId()); in OpenSLESPlayer()
69 ALOGD("dtor[tid=%d]", rtc::CurrentThreadId()); in ~OpenSLESPlayer()
83 ALOGD("Init[tid=%d]", rtc::CurrentThreadId()); in Init()
92 ALOGD("Terminate[tid=%d]", rtc::CurrentThreadId()); in Terminate()
99 ALOGD("InitPlayout[tid=%d]", rtc::CurrentThreadId()); in InitPlayout()
114 ALOGD("StartPlayout[tid=%d]", rtc::CurrentThreadId()); in StartPlayout()
142 ALOGD("StopPlayout[tid=%d]", rtc::CurrentThreadId()); in StopPlayout()
Dopensles_recorder.cc57 ALOGD("ctor[tid=%d]", rtc::CurrentThreadId()); in OpenSLESRecorder()
69 ALOGD("dtor[tid=%d]", rtc::CurrentThreadId()); in ~OpenSLESRecorder()
80 ALOGD("Init[tid=%d]", rtc::CurrentThreadId()); in Init()
89 ALOGD("Terminate[tid=%d]", rtc::CurrentThreadId()); in Terminate()
96 ALOGD("InitRecording[tid=%d]", rtc::CurrentThreadId()); in InitRecording()
111 ALOGD("StartRecording[tid=%d]", rtc::CurrentThreadId()); in StartRecording()
148 ALOGD("StopRecording[tid=%d]", rtc::CurrentThreadId()); in StopRecording()
/external/eigen/unsupported/test/
Dcxx11_non_blocking_thread_pool.cpp31 VERIFY_IS_EQUAL(tp.CurrentThreadId(), -1); in test_parallelism()
39 const int thread_id = tp.CurrentThreadId(); in test_parallelism()
/external/tensorflow/tensorflow/core/platform/
Dthreadpool.cc226 int id = CurrentThreadId() + 1; in ParallelForWithWorkerId()
238 int id = CurrentThreadId() + 1; in ParallelForWithWorkerId()
247 int ThreadPool::CurrentThreadId() const { in CurrentThreadId() function in tensorflow::thread::ThreadPool
248 return underlying_threadpool_->CurrentThreadId(); in CurrentThreadId()
Dthreadpool.h211 int CurrentThreadId() const;
/external/webrtc/test/time_controller/
Dsimulated_time_controller.cc41 : thread_id_(rtc::CurrentThreadId()), current_time_(start_time) {} in SimulatedTimeControllerImpl()
76 if (rtc::CurrentThreadId() == thread_id_) { in YieldExecution()
99 RTC_DCHECK_EQ(rtc::CurrentThreadId(), thread_id_); in RunReadyRunners()
/external/webrtc/modules/utility/source/
Dhelpers_android.cc98 ALOGD("Attaching thread to JVM[tid=%d]", rtc::CurrentThreadId()); in AttachThreadScoped()
107 ALOGD("Detaching thread from JVM[tid=%d]", rtc::CurrentThreadId()); in ~AttachThreadScoped()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DParallel.cpp72 std::thread::id CurrentThreadId = std::this_thread::get_id(); in ~ThreadPoolExecutor() local
74 if (T.get_id() == CurrentThreadId) in ~ThreadPoolExecutor()
/external/tensorflow/tensorflow/lite/kernels/
Deigen_support.cc84 int CurrentThreadId() const override { in CurrentThreadId() function in tflite::eigen_support::__anon0b33ddad0111::EigenThreadPoolWrapper
85 return pool_ ? pool_->CurrentThreadId() : 0; in CurrentThreadId()
/external/llvm-project/llvm/lib/Support/
DParallel.cpp74 std::thread::id CurrentThreadId = std::this_thread::get_id(); in ~ThreadPoolExecutor() local
76 if (T.get_id() == CurrentThreadId) in ~ThreadPoolExecutor()
/external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/
DThreadPoolInterface.h26 virtual int CurrentThreadId() const = 0;
DSimpleThreadPool.h76 int CurrentThreadId() const final { in CurrentThreadId() function
/external/webrtc/rtc_base/
Dplatform_thread_types.h47 PlatformThreadId CurrentThreadId();
Dplatform_thread_types.cc30 PlatformThreadId CurrentThreadId() { in CurrentThreadId() function
/external/tensorflow/tensorflow/core/kernels/data/
Dunbounded_thread_pool.h50 int CurrentThreadId() const override;
Dunbounded_thread_pool.cc82 int UnboundedThreadPool::CurrentThreadId() const { return -1; } in CurrentThreadId() function in tensorflow::data::UnboundedThreadPool
/external/webrtc/rtc_base/system/
Dthread_registry.cc47 std::make_pair(this, ThreadData{rtc::CurrentThreadId(), location})); in ScopedRegisterThreadForDebugging()
/external/tensorflow/tensorflow/cc/client/
Dclient_session_test.cc66 int CurrentThreadId() const override { in CurrentThreadId() function in tensorflow::__anonf29f882d0111::CustomThreadPoolImpl
67 return underlying_threadpool_->CurrentThreadId(); in CurrentThreadId()
/external/tensorflow/tensorflow/core/util/
Dmkl_threadpool.h72 return (eigen_interface_->CurrentThreadId() != -1) ? true : false; in get_in_parallel()
/external/tensorflow/tensorflow/core/framework/
Drun_handler.cc449 int RunHandlerThreadPool::CurrentThreadId() const { in CurrentThreadId() function in tensorflow::internal::RunHandlerThreadPool
752 int CurrentThreadId() const override;
1038 int RunHandler::Impl::ThreadPoolInterfaceWrapper::CurrentThreadId() const { in CurrentThreadId() function in tensorflow::RunHandler::Impl::ThreadPoolInterfaceWrapper
1040 ->CurrentThreadId(); in CurrentThreadId()
Drun_handler.h246 int CurrentThreadId() const;

12