Home
last modified time | relevance | path

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

/external/webrtc/webrtc/system_wrappers/include/
Dref_count.h44 class RefCountImpl : public T {
46 RefCountImpl() : ref_count_(0) {} in RefCountImpl() function
49 explicit RefCountImpl(P p) : T(p), ref_count_(0) {} in RefCountImpl() function
52 RefCountImpl(P1 p1, P2 p2) : T(p1, p2), ref_count_(0) {} in RefCountImpl() function
55 RefCountImpl(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) {} in RefCountImpl() function
58 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4) : T(p1, p2, p3, p4), ref_count_(0) {} in RefCountImpl() function
61 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) in RefCountImpl() function
/external/webrtc/webrtc/modules/video_capture/external/
Dvideo_capture_external.cc21 RefCountImpl<VideoCaptureImpl>* implementation = in Create()
22 new RefCountImpl<VideoCaptureImpl>(id); in Create()
/external/webrtc/webrtc/modules/video_capture/windows/
Dvideo_capture_factory_windows.cc31 RefCountImpl<VideoCaptureDS>* capture = new RefCountImpl<VideoCaptureDS>(id); in Create()
/external/webrtc/webrtc/modules/video_capture/mac/
Dvideo_capture_mac.mm138 RefCountImpl<videocapturemodule::VideoCaptureMacQuickTime>*
140 new RefCountImpl<videocapturemodule::VideoCaptureMacQuickTime>(id);
172 RefCountImpl<videocapturemodule::VideoCaptureMacQTKit>* newCaptureModule =
173 new RefCountImpl<videocapturemodule::VideoCaptureMacQTKit>(id);
/external/webrtc/webrtc/modules/video_capture/ios/
Dvideo_capture_ios.mm49 RefCountImpl<VideoCaptureIos>* capture_module =
50 new RefCountImpl<VideoCaptureIos>(capture_id);
/external/webrtc/webrtc/modules/video_capture/
Dvideo_capture_impl.cc34 RefCountImpl<VideoCaptureImpl>* implementation = in Create()
35 new RefCountImpl<VideoCaptureImpl>(id); in Create()
/external/webrtc/webrtc/modules/video_capture/linux/
Dvideo_capture_linux.cc36 RefCountImpl<videocapturemodule::VideoCaptureModuleV4L2>* implementation = in Create()
37 new RefCountImpl<videocapturemodule::VideoCaptureModuleV4L2>(id); in Create()
/external/webrtc/webrtc/modules/audio_device/
Daudio_device_impl.cc88 RefCountImpl<AudioDeviceModuleImpl>* audioDevice = in Create()
89 new RefCountImpl<AudioDeviceModuleImpl>(id, audioLayer); in Create()