/external/webrtc/webrtc/voice_engine/test/auto_test/ |
voe_stress_test.h | 15 #include "webrtc/base/scoped_ptr.h" 40 // TODO(pbos): Remove scoped_ptr and use PlatformThread directly. 41 rtc::scoped_ptr<rtc::PlatformThread> _ptrExtraApiThread;
|
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/ |
scoped_ptr.h | 40 // from google3/base/scoped_ptr.h 45 // implementation of the scoped_ptr class, and its closely-related brethren, 48 template <class C> class scoped_ptr; 51 // A scoped_ptr<T> is like a T*, except that the destructor of scoped_ptr<T> 53 // That is, scoped_ptr<T> owns the T object that it points to. 54 // Like a T*, a scoped_ptr<T> may hold either NULL or a pointer to a T object. 56 // The size of a scoped_ptr is small: 57 // sizeof(scoped_ptr<C>) == sizeof(C*) 59 class scoped_ptr { class in namespace:google::protobuf::internal 68 explicit scoped_ptr(C* p = NULL) : ptr_(p) { } function in class:google::protobuf::internal::scoped_ptr [all...] |
/external/webrtc/webrtc/p2p/base/ |
transportdescriptionfactory_unittest.cc | 21 using rtc::scoped_ptr; 30 scoped_ptr<rtc::SSLIdentity>(new rtc::FakeSSLIdentity("User1")))), 32 scoped_ptr<rtc::SSLIdentity>(new rtc::FakeSSLIdentity("User2")))) {} 74 rtc::scoped_ptr<TransportDescription> offer(f1_.CreateOffer( 76 rtc::scoped_ptr<TransportDescription> answer( 82 rtc::scoped_ptr<TransportDescription> restart_offer(f1_.CreateOffer( 89 rtc::scoped_ptr<TransportDescription> restart_answer( 123 scoped_ptr<TransportDescription> desc(f1_.CreateOffer( 134 scoped_ptr<TransportDescription> desc(f1_.CreateOffer( 146 scoped_ptr<TransportDescription> desc(f1_.CreateOffer [all...] |
/external/webrtc/webrtc/modules/audio_processing/transient/ |
transient_suppressor.h | 17 #include "webrtc/base/scoped_ptr.h" 74 rtc::scoped_ptr<TransientDetector> detector_; 83 rtc::scoped_ptr<float[]> in_buffer_; 84 rtc::scoped_ptr<float[]> detection_buffer_; 86 rtc::scoped_ptr<float[]> out_buffer_; 89 rtc::scoped_ptr<size_t[]> ip_; 90 rtc::scoped_ptr<float[]> wfft_; 92 rtc::scoped_ptr<float[]> spectral_mean_; 95 rtc::scoped_ptr<float[]> fft_buffer_; 97 rtc::scoped_ptr<float[]> magnitudes_ [all...] |
/external/webrtc/webrtc/base/ |
asynctcpsocket_unittest.cc | 16 #include "webrtc/base/scoped_ptr.h" 40 scoped_ptr<PhysicalSocketServer> pss_; 41 scoped_ptr<VirtualSocketServer> vss_; 43 scoped_ptr<AsyncTCPSocket> tcp_socket_;
|
asyncudpsocket_unittest.cc | 16 #include "webrtc/base/scoped_ptr.h" 40 scoped_ptr<PhysicalSocketServer> pss_; 41 scoped_ptr<VirtualSocketServer> vss_; 43 scoped_ptr<AsyncUDPSocket> udp_socket_;
|
messagehandler.h | 17 #include "webrtc/base/scoped_ptr.h" 53 // Specialization for rtc::scoped_ptr<ReturnT>. 55 class FunctorMessageHandler<class rtc::scoped_ptr<ReturnT>, FunctorT> 60 rtc::scoped_ptr<ReturnT> result() { return std::move(result_); } 64 rtc::scoped_ptr<ReturnT> result_;
|
/external/webrtc/webrtc/modules/audio_coding/test/ |
SpatialAudio.h | 14 #include "webrtc/base/scoped_ptr.h" 36 rtc::scoped_ptr<AudioCodingModule> _acmLeft; 37 rtc::scoped_ptr<AudioCodingModule> _acmRight; 38 rtc::scoped_ptr<AudioCodingModule> _acmReceiver;
|
/external/webrtc/webrtc/modules/audio_processing/intelligibility/ |
intelligibility_utils.h | 20 #include "webrtc/base/scoped_ptr.h" 104 // and histories from rtc::scoped_ptr to std::vector. 107 rtc::scoped_ptr<std::complex<float>[]> running_mean_; 108 rtc::scoped_ptr<std::complex<float>[]> running_mean_sq_; 111 rtc::scoped_ptr<std::complex<float>[]> sub_running_mean_; 112 rtc::scoped_ptr<std::complex<float>[]> sub_running_mean_sq_; 116 rtc::scoped_ptr<rtc::scoped_ptr<std::complex<float>[]>[]> history_; 117 rtc::scoped_ptr<rtc::scoped_ptr<std::complex<float>[]>[]> subhistory_ [all...] |
/external/webrtc/webrtc/test/ |
fake_audio_device.h | 17 #include "webrtc/base/scoped_ptr.h" 60 rtc::scoped_ptr<EventTimerWrapper> tick_; 63 rtc::scoped_ptr<ModuleFileUtility> file_utility_; 64 rtc::scoped_ptr<FileWrapper> input_stream_;
|
/external/webrtc/webrtc/common_video/include/ |
incoming_video_stream.h | 15 #include "webrtc/base/scoped_ptr.h" 80 const rtc::scoped_ptr<CriticalSectionWrapper> stream_critsect_; 81 const rtc::scoped_ptr<CriticalSectionWrapper> thread_critsect_; 82 const rtc::scoped_ptr<CriticalSectionWrapper> buffer_critsect_; 85 rtc::scoped_ptr<rtc::PlatformThread> incoming_render_thread_ 87 rtc::scoped_ptr<EventTimerWrapper> deliver_buffer_event_; 92 const rtc::scoped_ptr<VideoRenderFrames> render_buffers_
|
/external/webrtc/webrtc/modules/audio_coding/neteq/tools/ |
neteq_quality_test.h | 17 #include "webrtc/base/scoped_ptr.h" 61 rtc::scoped_ptr<UniformLoss> uniform_loss_model_; 122 rtc::scoped_ptr<InputAudioFile> in_file_; 123 rtc::scoped_ptr<AudioSink> output_; 126 rtc::scoped_ptr<RtpGenerator> rtp_generator_; 127 rtc::scoped_ptr<NetEq> neteq_; 128 rtc::scoped_ptr<LossModel> loss_model_; 130 rtc::scoped_ptr<int16_t[]> in_data_; 131 rtc::scoped_ptr<uint8_t[]> payload_; 132 rtc::scoped_ptr<int16_t[]> out_data_ [all...] |
/external/webrtc/webrtc/modules/audio_processing/test/ |
audio_file_processor.h | 18 #include "webrtc/base/scoped_ptr.h" 87 WavFileProcessor(rtc::scoped_ptr<AudioProcessing> ap, 88 rtc::scoped_ptr<WavReader> in_file, 89 rtc::scoped_ptr<WavWriter> out_file); 96 rtc::scoped_ptr<AudioProcessing> ap_; 110 AecDumpFileProcessor(rtc::scoped_ptr<AudioProcessing> ap, 112 rtc::scoped_ptr<WavWriter> out_file); 125 rtc::scoped_ptr<AudioProcessing> ap_; 128 rtc::scoped_ptr<ChannelBuffer<float>> in_buf_; 129 rtc::scoped_ptr<ChannelBuffer<float>> reverse_buf_ [all...] |
/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
rtcp_sender.h | 21 #include "webrtc/base/scoped_ptr.h" 166 rtc::scoped_ptr<rtcp::RtcpPacket> BuildSR(const RtcpContext& context) 168 rtc::scoped_ptr<rtcp::RtcpPacket> BuildRR(const RtcpContext& context) 170 rtc::scoped_ptr<rtcp::RtcpPacket> BuildSDES(const RtcpContext& context) 172 rtc::scoped_ptr<rtcp::RtcpPacket> BuildPLI(const RtcpContext& context) 174 rtc::scoped_ptr<rtcp::RtcpPacket> BuildREMB(const RtcpContext& context) 176 rtc::scoped_ptr<rtcp::RtcpPacket> BuildTMMBR(const RtcpContext& context) 178 rtc::scoped_ptr<rtcp::RtcpPacket> BuildTMMBN(const RtcpContext& context) 180 rtc::scoped_ptr<rtcp::RtcpPacket> BuildAPP(const RtcpContext& context) 182 rtc::scoped_ptr<rtcp::RtcpPacket> BuildVoIPMetric(const RtcpContext& context [all...] |
/external/libchrome/base/ |
callback_list_unittest.cc | 12 #include "base/memory/scoped_ptr.h" 41 scoped_ptr<CallbackList<void(void)>::Subscription> sub) { 49 scoped_ptr<CallbackList<void(void)>::Subscription> removal_subscription_; 77 scoped_ptr<CallbackList<void(void)>::Subscription> subscription_; 121 scoped_ptr<CallbackList<void(int)>::Subscription> subscription1 = 128 scoped_ptr<CallbackList<void(int, int)>::Subscription> subscription2 = 135 scoped_ptr<CallbackList<void(int, int, int)>::Subscription> 142 scoped_ptr<CallbackList<void(int, int, int, int)>::Subscription> 149 scoped_ptr<CallbackList<void(int, int, int, int, int)>::Subscription> 156 scoped_ptr<CallbackList<void(int, int, int, int, int, int)>::Subscription [all...] |
sequence_checker_unittest.cc | 17 #include "base/memory/scoped_ptr.h" 97 scoped_ptr<SequenceCheckedObject> sequence_checked_object) { 118 scoped_ptr<SequencedWorkerPoolOwner> pool_owner_; 122 scoped_ptr<SequenceCheckedObject> sequence_checked_object( 133 scoped_ptr<SequenceCheckedObject> sequence_checked_object( 142 scoped_ptr<SequenceCheckedObject> sequence_checked_object( 154 scoped_ptr<SequenceCheckedObject> sequence_checked_object( 169 scoped_ptr<SequenceCheckedObject> sequence_checked_object( 189 scoped_ptr<SequenceCheckedObject> sequence_checked_object( 213 scoped_ptr<SequenceCheckedObject> sequence_checked_object [all...] |
/external/libweave/third_party/chromium/base/ |
callback_list_unittest.cc | 13 #include "base/memory/scoped_ptr.h" 41 scoped_ptr<CallbackList<void(void)>::Subscription> sub) { 49 scoped_ptr<CallbackList<void(void)>::Subscription> removal_subscription_; 77 scoped_ptr<CallbackList<void(void)>::Subscription> subscription_; 121 scoped_ptr<CallbackList<void(int)>::Subscription> subscription1 = 128 scoped_ptr<CallbackList<void(int, int)>::Subscription> subscription2 = 135 scoped_ptr<CallbackList<void(int, int, int)>::Subscription> 142 scoped_ptr<CallbackList<void(int, int, int, int)>::Subscription> 149 scoped_ptr<CallbackList<void(int, int, int, int, int)>::Subscription> 156 scoped_ptr<CallbackList<void(int, int, int, int, int, int)>::Subscription [all...] |
/external/libchrome/base/threading/ |
non_thread_safe_unittest.cc | 7 #include "base/memory/scoped_ptr.h" 75 scoped_ptr<NonThreadSafeClass> non_thread_safe_class_; 83 scoped_ptr<NonThreadSafeClass> non_thread_safe_class( 94 scoped_ptr<NonThreadSafeClass> non_thread_safe_class( 110 scoped_ptr<NonThreadSafeClass> non_thread_safe_class( 134 scoped_ptr<NonThreadSafeClass> non_thread_safe_class(
|
/external/autotest/client/deps/glbench/src/ |
texturetest.h | 8 #include "base/memory/scoped_ptr.h" 40 scoped_ptr<char[]> pixels_[kNumberOfTextures];
|
/external/clang/test/CodeGenObjCXX/ |
debug-info.mm | 5 template <class C> class scoped_ptr { 38 void WindowGetViewBounds(scoped_ptr<AutomationWindowTracker> window_tracker_) {
|
/external/libchrome/base/trace_event/ |
process_memory_totals_dump_provider.h | 12 #include "base/memory/scoped_ptr.h" 40 scoped_ptr<ProcessMetrics> process_metrics_;
|
/external/libchrome/crypto/ |
sha2.cc | 9 #include "base/memory/scoped_ptr.h" 16 scoped_ptr<SecureHash> ctx(SecureHash::Create(SecureHash::SHA256));
|
/external/webrtc/talk/app/webrtc/ |
peerconnectionfactory.h | 38 #include "webrtc/base/scoped_ptr.h" 61 rtc::scoped_ptr<cricket::PortAllocator> allocator, 62 rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store, 115 rtc::scoped_ptr<cricket::ChannelManager> channel_manager_; 118 rtc::scoped_ptr<cricket::WebRtcVideoEncoderFactory> 122 rtc::scoped_ptr<cricket::WebRtcVideoDecoderFactory> 124 rtc::scoped_ptr<rtc::BasicNetworkManager> default_network_manager_; 125 rtc::scoped_ptr<rtc::BasicPacketSocketFactory> default_socket_factory_;
|
/external/webrtc/webrtc/api/objc/ |
RTCIceCandidate+Private.h | 14 #include "webrtc/base/scoped_ptr.h" 25 rtc::scoped_ptr<webrtc::IceCandidateInterface> nativeCandidate;
|
/external/webrtc/webrtc/modules/video_coding/ |
timestamp_map.h | 14 #include "webrtc/base/scoped_ptr.h" 39 rtc::scoped_ptr<TimestampDataTuple[]> ring_buffer_;
|