HomeSort by relevance Sort by last modified time
    Searched refs:scoped_ptr (Results 1 - 25 of 1177) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/parameter-framework/asio-1.10.6/include/asio/detail/
scoped_ptr.hpp 2 // detail/scoped_ptr.hpp
23 class scoped_ptr class in namespace:asio::detail
27 explicit scoped_ptr(T* p = 0) function in class:asio::detail::scoped_ptr
33 ~scoped_ptr()
65 scoped_ptr(const scoped_ptr&);
66 scoped_ptr& operator=(const scoped_ptr&);
  /system/tpm/trunks/
trunks_factory.h 23 #include <base/memory/scoped_ptr.h>
51 virtual scoped_ptr<TpmState> GetTpmState() const = 0;
54 virtual scoped_ptr<TpmUtility> GetTpmUtility() const = 0;
58 virtual scoped_ptr<AuthorizationDelegate> GetPasswordAuthorization(
62 virtual scoped_ptr<SessionManager> GetSessionManager() const = 0;
65 virtual scoped_ptr<HmacSession> GetHmacSession() const = 0;
68 virtual scoped_ptr<PolicySession> GetPolicySession() const = 0;
71 virtual scoped_ptr<PolicySession> GetTrialSession() const = 0;
74 virtual scoped_ptr<BlobParser> GetBlobParser() const = 0;
trunks_factory_impl.h 25 #include <base/memory/scoped_ptr.h>
48 scoped_ptr<TpmState> GetTpmState() const override;
49 scoped_ptr<TpmUtility> GetTpmUtility() const override;
50 scoped_ptr<AuthorizationDelegate> GetPasswordAuthorization(
52 scoped_ptr<SessionManager> GetSessionManager() const override;
53 scoped_ptr<HmacSession> GetHmacSession() const override;
54 scoped_ptr<PolicySession> GetPolicySession() const override;
55 scoped_ptr<PolicySession> GetTrialSession() const override;
56 scoped_ptr<BlobParser> GetBlobParser() const override;
59 scoped_ptr<CommandTransceiver> default_transceiver_
    [all...]
trunks_factory_impl.cc 65 scoped_ptr<TpmState> TrunksFactoryImpl::GetTpmState() const {
66 return scoped_ptr<TpmState>(new TpmStateImpl(*this));
69 scoped_ptr<TpmUtility> TrunksFactoryImpl::GetTpmUtility() const {
70 return scoped_ptr<TpmUtility>(new TpmUtilityImpl(*this));
73 scoped_ptr<AuthorizationDelegate> TrunksFactoryImpl::GetPasswordAuthorization(
75 return scoped_ptr<AuthorizationDelegate>(
79 scoped_ptr<SessionManager> TrunksFactoryImpl::GetSessionManager() const {
80 return scoped_ptr<SessionManager>(new SessionManagerImpl(*this));
83 scoped_ptr<HmacSession> TrunksFactoryImpl::GetHmacSession() const {
84 return scoped_ptr<HmacSession>(new HmacSessionImpl(*this))
    [all...]
trunks_factory_for_test.h 25 #include <base/memory/scoped_ptr.h>
65 scoped_ptr<TpmState> GetTpmState() const override;
66 scoped_ptr<TpmUtility> GetTpmUtility() const override;
67 scoped_ptr<AuthorizationDelegate> GetPasswordAuthorization(
69 scoped_ptr<SessionManager> GetSessionManager() const override;
70 scoped_ptr<HmacSession> GetHmacSession() const override;
71 scoped_ptr<PolicySession> GetPolicySession() const override;
72 scoped_ptr<PolicySession> GetTrialSession() const override;
73 scoped_ptr<BlobParser> GetBlobParser() const override;
109 scoped_ptr<MockTpm> default_tpm_
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
scoped_ptr.hpp 11 // http://www.boost.org/libs/smart_ptr/scoped_ptr.htm
14 #include <boost/smart_ptr/scoped_ptr.hpp>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/
scoped_ptr.hpp 11 // http://www.boost.org/libs/smart_ptr/scoped_ptr.htm
34 // scoped_ptr mimics a built-in pointer except that it guarantees deletion
35 // of the object pointed to, either on destruction of the scoped_ptr or via
36 // an explicit reset(). scoped_ptr is a simple solution for simple needs;
39 template<class T> class scoped_ptr // noncopyable class in namespace:boost
45 scoped_ptr(scoped_ptr const &);
46 scoped_ptr & operator=(scoped_ptr const &);
48 typedef scoped_ptr<T> this_type
57 explicit scoped_ptr( T * p = 0 ): px( p ) \/\/ never throws function in class:boost::scoped_ptr
66 explicit scoped_ptr( std::auto_ptr<T> p ): px( p.release() ) \/\/ never throws function in class:boost::scoped_ptr
    [all...]
  /external/webrtc/webrtc/common_audio/resampler/include/
push_resampler.h 14 #include "webrtc/base/scoped_ptr.h"
39 rtc::scoped_ptr<PushSincResampler> sinc_resampler_;
40 rtc::scoped_ptr<PushSincResampler> sinc_resampler_right_;
44 rtc::scoped_ptr<T[]> src_left_;
45 rtc::scoped_ptr<T[]> src_right_;
46 rtc::scoped_ptr<T[]> dst_left_;
47 rtc::scoped_ptr<T[]> dst_right_;
  /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...]
transient_detector.h 16 #include "webrtc/base/scoped_ptr.h"
58 rtc::scoped_ptr<WPDTree> wpd_tree_;
62 rtc::scoped_ptr<MovingMoments> moving_moments_[kLeaves];
64 rtc::scoped_ptr<float[]> first_moments_;
65 rtc::scoped_ptr<float[]> second_moments_;
  /external/webrtc/webrtc/base/
scoped_ptr.h 11 // Borrowed from Chromium's src/base/memory/scoped_ptr.h.
18 // Example usage (scoped_ptr<T>):
20 // scoped_ptr<Foo> foo(new Foo("wee"));
24 // scoped_ptr<Foo> foo; // No pointer managed.
37 // Example usage (scoped_ptr<T[]>):
39 // scoped_ptr<Foo[]> foo(new Foo[100]);
50 // copy will NOT work. Here is an example using scoped_ptr:
52 // void TakesOwnership(scoped_ptr<Foo> arg) {
55 // scoped_ptr<Foo> CreateFoo() {
58 // return scoped_ptr<Foo>(new Foo("new"))
309 class scoped_ptr { class in namespace:rtc
322 scoped_ptr() : impl_(nullptr) {} function in class:rtc::scoped_ptr
325 explicit scoped_ptr(element_type* p) : impl_(p) {} function in class:rtc::scoped_ptr
328 scoped_ptr(element_type* p, const D& d) : impl_(p, d) {} function in class:rtc::scoped_ptr
331 scoped_ptr(std::nullptr_t) : impl_(nullptr) {} function in class:rtc::scoped_ptr
344 scoped_ptr(scoped_ptr<U, V>&& other) function in class:rtc::scoped_ptr
466 class scoped_ptr<T[], D> { class in namespace:rtc
473 scoped_ptr() : impl_(nullptr) {} function in class:rtc::scoped_ptr
488 explicit scoped_ptr(element_type* array) : impl_(array) {} function in class:rtc::scoped_ptr
491 scoped_ptr(std::nullptr_t) : impl_(nullptr) {} function in class:rtc::scoped_ptr
494 scoped_ptr(scoped_ptr&& other) : impl_(&other.impl_) {} function in class:rtc::scoped_ptr
    [all...]
rtccertificate.h 16 #include "webrtc/base/scoped_ptr.h"
28 static scoped_refptr<RTCCertificate> Create(scoped_ptr<SSLIdentity> identity);
50 scoped_ptr<SSLIdentity> identity_;
  /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;
TwoWayCommunication.h 14 #include "webrtc/base/scoped_ptr.h"
34 rtc::scoped_ptr<AudioCodingModule> _acmA;
35 rtc::scoped_ptr<AudioCodingModule> _acmB;
37 rtc::scoped_ptr<AudioCodingModule> _acmRefA;
38 rtc::scoped_ptr<AudioCodingModule> _acmRefB;
  /external/libchrome/crypto/
scoped_nss_types.h 13 #include "base/memory/scoped_ptr.h"
32 typedef scoped_ptr<PK11Context,
35 typedef scoped_ptr<PK11SlotInfo, NSSDestroyer<PK11SlotInfo, PK11_FreeSlot> >
37 typedef scoped_ptr<PK11SlotList, NSSDestroyer<PK11SlotList, PK11_FreeSlotList> >
39 typedef scoped_ptr<PK11SymKey, NSSDestroyer<PK11SymKey, PK11_FreeSymKey> >
41 typedef scoped_ptr<SECKEYPublicKey,
44 typedef scoped_ptr<SECKEYPrivateKey,
47 typedef scoped_ptr<SECAlgorithmID,
51 typedef scoped_ptr<SECItem, NSSDestroyer1<SECItem, SECITEM_FreeItem, PR_TRUE> >
53 typedef scoped_ptr<PLArenaPool
    [all...]
  /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/libchrome/base/memory/
scoped_ptr.h 10 // Example usage (scoped_ptr<T>):
12 // scoped_ptr<Foo> foo(new Foo("wee"));
16 // scoped_ptr<Foo> foo; // No pointer managed.
29 // Example usage (scoped_ptr<T[]>):
31 // scoped_ptr<Foo[]> foo(new Foo[100]);
43 // using scoped_ptr:
45 // void TakesOwnership(scoped_ptr<Foo> arg) {
48 // scoped_ptr<Foo> CreateFoo() {
51 // return scoped_ptr<Foo>(new Foo("new"));
53 // scoped_ptr<Foo> PassThru(scoped_ptr<Foo> arg)
240 class scoped_ptr { class
254 scoped_ptr() : impl_(nullptr) {} function in class:scoped_ptr
257 explicit scoped_ptr(element_type* p) : impl_(p) {} function in class:scoped_ptr
260 scoped_ptr(element_type* p, const D& d) : impl_(p, d) {} function in class:scoped_ptr
263 scoped_ptr(std::nullptr_t) : impl_(nullptr) {} function in class:scoped_ptr
273 scoped_ptr(scoped_ptr&& other) : impl_(&other.impl_) {} function in class:scoped_ptr
300 scoped_ptr(scoped_ptr<U, E>&& other) function in class:scoped_ptr
407 class scoped_ptr<T[], D> { class
416 scoped_ptr() : impl_(nullptr) {} function in class:scoped_ptr
429 explicit scoped_ptr(element_type* array) : impl_(array) {} function in class:scoped_ptr
432 scoped_ptr(std::nullptr_t) : impl_(nullptr) {} function in class:scoped_ptr
435 scoped_ptr(scoped_ptr&& other) : impl_(&other.impl_) {} function in class:scoped_ptr
    [all...]
  /external/libweave/third_party/chromium/base/memory/
scoped_ptr.h 10 // Example usage (scoped_ptr<T>):
12 // scoped_ptr<Foo> foo(new Foo("wee"));
16 // scoped_ptr<Foo> foo; // No pointer managed.
29 // Example usage (scoped_ptr<T[]>):
31 // scoped_ptr<Foo[]> foo(new Foo[100]);
43 // using scoped_ptr:
45 // void TakesOwnership(scoped_ptr<Foo> arg) {
48 // scoped_ptr<Foo> CreateFoo() {
51 // return scoped_ptr<Foo>(new Foo("new"));
53 // scoped_ptr<Foo> PassThru(scoped_ptr<Foo> arg)
240 class scoped_ptr { class
254 scoped_ptr() : impl_(nullptr) {} function in class:scoped_ptr
257 explicit scoped_ptr(element_type* p) : impl_(p) {} function in class:scoped_ptr
260 scoped_ptr(element_type* p, const D& d) : impl_(p, d) {} function in class:scoped_ptr
263 scoped_ptr(std::nullptr_t) : impl_(nullptr) {} function in class:scoped_ptr
273 scoped_ptr(scoped_ptr&& other) : impl_(&other.impl_) {} function in class:scoped_ptr
300 scoped_ptr(scoped_ptr<U, E>&& other) function in class:scoped_ptr
407 class scoped_ptr<T[], D> { class
416 scoped_ptr() : impl_(nullptr) {} function in class:scoped_ptr
429 explicit scoped_ptr(element_type* array) : impl_(array) {} function in class:scoped_ptr
432 scoped_ptr(std::nullptr_t) : impl_(nullptr) {} function in class:scoped_ptr
435 scoped_ptr(scoped_ptr&& other) : impl_(&other.impl_) {} function in class:scoped_ptr
    [all...]
  /external/libchrome/base/prefs/
pref_filter.h 11 #include "base/memory/scoped_ptr.h"
27 typedef base::Callback<void(scoped_ptr<base::DictionaryValue> prefs,
41 scoped_ptr<base::DictionaryValue> pref_store_contents) = 0;
  /external/webrtc/webrtc/call/
congestion_controller.h 17 #include "webrtc/base/scoped_ptr.h"
71 rtc::scoped_ptr<VieRemb> remb_;
72 rtc::scoped_ptr<PacketRouter> packet_router_;
73 rtc::scoped_ptr<PacedSender> pacer_;
74 rtc::scoped_ptr<RemoteBitrateEstimator> remote_bitrate_estimator_;
75 rtc::scoped_ptr<RemoteEstimatorProxy> remote_estimator_proxy_;
84 rtc::scoped_ptr<ProcessThread> pacer_thread_;
86 rtc::scoped_ptr<BitrateController> bitrate_controller_;
87 rtc::scoped_ptr<TransportFeedbackAdapter> transport_feedback_adapter_;
  /external/webrtc/webrtc/common_audio/
fir_filter_neon.h 14 #include "webrtc/base/scoped_ptr.h"
31 rtc::scoped_ptr<float[], AlignedFreeDeleter> coefficients_;
32 rtc::scoped_ptr<float[], AlignedFreeDeleter> state_;
fir_filter_sse.h 14 #include "webrtc/base/scoped_ptr.h"
31 rtc::scoped_ptr<float[], AlignedFreeDeleter> coefficients_;
32 rtc::scoped_ptr<float[], AlignedFreeDeleter> state_;
  /external/webrtc/webrtc/modules/desktop_capture/win/
scoped_thread_desktop.h 17 #include "webrtc/base/scoped_ptr.h"
43 rtc::scoped_ptr<Desktop> assigned_;
46 rtc::scoped_ptr<Desktop> initial_;
  /external/webrtc/webrtc/modules/utility/include/
process_thread.h 15 #include "webrtc/base/scoped_ptr.h"
32 static rtc::scoped_ptr<ProcessThread> Create(const char* thread_name);
53 virtual void PostTask(rtc::scoped_ptr<ProcessTask> task) = 0;
  /external/webrtc/webrtc/modules/video_processing/
video_denoiser.h 32 rtc::scoped_ptr<DenoiseMetrics[]> metrics_;
33 rtc::scoped_ptr<DenoiserFilter> filter_;

Completed in 584 milliseconds

1 2 3 4 5 6 7 8 91011>>