Home
last modified time | relevance | path

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

/external/webrtc/rtc_base/
Dref_counter.h37 rtc::RefCountReleaseStatus DecRef() { in DecRef()
50 ? rtc::RefCountReleaseStatus::kDroppedLastRef in DecRef()
51 : rtc::RefCountReleaseStatus::kOtherRefsRemained; in DecRef()
Dref_count.h48 enum class RefCountReleaseStatus { kDroppedLastRef, kOtherRefsRemained }; enum
57 virtual RefCountReleaseStatus Release() const = 0;
Dcallback_unittest.cc42 RefCountReleaseStatus Release() const override { in Release()
44 return count_ == 0 ? RefCountReleaseStatus::kDroppedLastRef in Release()
45 : RefCountReleaseStatus::kOtherRefsRemained; in Release()
Dref_counted_object.h38 virtual RefCountReleaseStatus Release() const { in Release()
40 if (status == RefCountReleaseStatus::kDroppedLastRef) { in Release()
Dref_counted_object_unittest.cc74 EXPECT_EQ(aref->Release(), RefCountReleaseStatus::kOtherRefsRemained); in TEST()
/external/webrtc/modules/audio_device/include/
Dfake_audio_device.h25 rtc::RefCountReleaseStatus Release() const override { in Release()
26 return rtc::RefCountReleaseStatus::kDroppedLastRef; in Release()
/external/webrtc/api/
Dref_counted_base.h24 RefCountReleaseStatus Release() const { in Release()
26 if (status == RefCountReleaseStatus::kDroppedLastRef) { in Release()
/external/webrtc/modules/video_capture/windows/
Dhelp_functions_ds.h102 if (status == rtc::RefCountReleaseStatus::kDroppedLastRef) { in STDMETHOD_()
/external/webrtc/call/
Dcall.h61 rtc::RefCountReleaseStatus Release() const override;
Dcall.cc508 rtc::RefCountReleaseStatus Release() const { in Release()
514 return rtc::RefCountReleaseStatus::kDroppedLastRef; in Release()
528 return rtc::RefCountReleaseStatus::kOtherRefsRemained; in Release()
568 rtc::RefCountReleaseStatus SharedModuleThread::Release() const { in Release()
570 if (ret == rtc::RefCountReleaseStatus::kDroppedLastRef) in Release()
/external/webrtc/api/task_queue/
Dtask_queue_test.cc199 if (count_.DecRef() == rtc::RefCountReleaseStatus::kDroppedLastRef) { in TEST_P()
/external/webrtc/modules/audio_processing/
Daudio_processing_impl_unittest.cc46 MOCK_METHOD(rtc::RefCountReleaseStatus, Release, (), (const, override));