HomeSort by relevance Sort by last modified time
    Searched full:scoped_refptr (Results 1 - 25 of 542) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/connectivity/shill/
refptr_types.h 25 typedef scoped_refptr<const Device> DeviceConstRefPtr;
26 typedef scoped_refptr<Device> DeviceRefPtr;
29 typedef scoped_refptr<const Cellular> CellularConstRefPtr;
30 typedef scoped_refptr<Cellular> CellularRefPtr;
33 typedef scoped_refptr<const Ethernet> EthernetConstRefPtr;
34 typedef scoped_refptr<Ethernet> EthernetRefPtr;
37 typedef scoped_refptr<const PPPDevice> PPPDeviceConstRefPtr;
38 typedef scoped_refptr<PPPDevice> PPPDeviceRefPtr;
41 typedef scoped_refptr<const VirtualDevice> VirtualDeviceConstRefPtr;
42 typedef scoped_refptr<VirtualDevice> VirtualDeviceRefPtr
    [all...]
  /external/libchrome/base/test/
opaque_ref_counted.h 12 // OpaqueRefCounted is a test class for scoped_refptr to ensure it still works
16 // Test functions that return and accept scoped_refptr<OpaqueRefCounted> values.
17 scoped_refptr<OpaqueRefCounted> MakeOpaqueRefCounted();
18 void TestOpaqueRefCounted(scoped_refptr<OpaqueRefCounted> p);
22 extern template class scoped_refptr<base::OpaqueRefCounted>;
opaque_ref_counted.cc 25 scoped_refptr<OpaqueRefCounted> MakeOpaqueRefCounted() {
29 void TestOpaqueRefCounted(scoped_refptr<OpaqueRefCounted> p) {
35 template class scoped_refptr<base::OpaqueRefCounted>;
  /external/webrtc/webrtc/base/
scoped_ref_ptr.h 25 // scoped_refptr<MyFoo> foo = new MyFoo();
31 // scoped_refptr<MyFoo> foo = new MyFoo();
39 // The above examples show how scoped_refptr<T> acts like a pointer to T.
40 // Given two scoped_refptr<T> classes, it is also possible to exchange
44 // scoped_refptr<MyFoo> a = new MyFoo();
45 // scoped_refptr<MyFoo> b;
55 // scoped_refptr<MyFoo> a = new MyFoo();
56 // scoped_refptr<MyFoo> b;
71 class scoped_refptr { class in namespace:rtc
73 scoped_refptr() : ptr_(NULL) function in class:rtc::scoped_refptr
76 scoped_refptr(T* p) : ptr_(p) { function in class:rtc::scoped_refptr
81 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { function in class:rtc::scoped_refptr
87 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { function in class:rtc::scoped_refptr
    [all...]
bind_unittest.cc 37 void RefArgument(const scoped_refptr<LifeTimeCheck>& object) {
72 // Try to catch any problem with scoped_refptr type deduction in rtc::Bind at
76 rtc::remove_reference<const scoped_refptr<RefCountInterface>&>::type,
77 const scoped_refptr<RefCountInterface>>::value,
78 "const scoped_refptr& should be captured by value");
80 static_assert(is_same<rtc::remove_reference<const scoped_refptr<F>&>::type,
81 const scoped_refptr<F>>::value,
82 "const scoped_refptr& should be captured by value");
99 is_same<detail::PointerType<T>::type, scoped_refptr<T>>::value, \
165 scoped_refptr<LifeTimeCheck> scoped_object(&object)
    [all...]
keep_ref_until_done.h 23 static inline void DoNothing(const scoped_refptr<T>& object) {}
31 return rtc::Bind(&impl::DoNothing<ObjectT>, scoped_refptr<ObjectT>(object));
36 const scoped_refptr<ObjectT>& object) {
  /external/libchrome/base/memory/
ref_counted.h 229 // scoped_refptr<MyFoo> foo = new MyFoo();
235 // scoped_refptr<MyFoo> foo = new MyFoo();
243 // The above examples show how scoped_refptr<T> acts like a pointer to T.
244 // Given two scoped_refptr<T> classes, it is also possible to exchange
248 // scoped_refptr<MyFoo> a = new MyFoo();
249 // scoped_refptr<MyFoo> b;
259 // scoped_refptr<MyFoo> a = new MyFoo();
260 // scoped_refptr<MyFoo> b;
267 class scoped_refptr { class
271 scoped_refptr() : ptr_(NULL) function in class:scoped_refptr
274 scoped_refptr(T* p) : ptr_(p) { function in class:scoped_refptr
280 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { function in class:scoped_refptr
287 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { function in class:scoped_refptr
294 scoped_refptr(scoped_refptr&& r) : ptr_(r.get()) { r.ptr_ = nullptr; } function in class:scoped_refptr
298 scoped_refptr(scoped_refptr<U>&& r) : ptr_(r.get()) { function in class:scoped_refptr
    [all...]
ref_counted_memory_unittest.cc 14 scoped_refptr<RefCountedMemory> mem = new RefCountedStaticMemory(
25 scoped_refptr<RefCountedMemory> mem = RefCountedBytes::TakeVector(&data);
33 scoped_refptr<RefCountedMemory> mem2;
46 scoped_refptr<RefCountedMemory> mem = RefCountedString::TakeString(&s);
57 scoped_refptr<RefCountedMemory> mem1 = RefCountedString::TakeString(&s1);
64 scoped_refptr<RefCountedMemory> mem2 = RefCountedBytes::TakeVector(&d2);
69 scoped_refptr<RefCountedMemory> mem3 = RefCountedString::TakeString(&s3);
77 scoped_refptr<RefCountedMemory> mem = RefCountedString::TakeString(&s);
ref_counted_unittest.cc 28 class CheckDerivedMemberAccess : public scoped_refptr<SelfAssign> {
45 scoped_refptr<ScopedRefPtrToSelf> self_ptr_;
112 scoped_refptr<SelfAssign> var(p);
138 check->self_ptr_ = scoped_refptr<ScopedRefPtrToSelf>();
143 scoped_refptr<base::OpaqueRefCounted> p = base::MakeOpaqueRefCounted();
146 scoped_refptr<base::OpaqueRefCounted> q;
153 scoped_refptr<SelfAssign> p;
160 scoped_refptr<SelfAssign> p1(new SelfAssign);
161 scoped_refptr<SelfAssign> p2(new SelfAssign);
171 scoped_refptr<Derived> p1(new Derived)
    [all...]
ref_counted_delete_on_message_loop.h 22 // Foo(const scoped_refptr<SingleThreadTaskRunner>& loop)
43 const scoped_refptr<SingleThreadTaskRunner>& task_runner)
69 scoped_refptr<SingleThreadTaskRunner> task_runner_;
  /external/libweave/third_party/chromium/base/memory/
ref_counted.h 216 // scoped_refptr<MyFoo> foo = new MyFoo();
222 // scoped_refptr<MyFoo> foo = new MyFoo();
230 // The above examples show how scoped_refptr<T> acts like a pointer to T.
231 // Given two scoped_refptr<T> classes, it is also possible to exchange
235 // scoped_refptr<MyFoo> a = new MyFoo();
236 // scoped_refptr<MyFoo> b;
246 // scoped_refptr<MyFoo> a = new MyFoo();
247 // scoped_refptr<MyFoo> b;
254 class scoped_refptr { class
258 scoped_refptr() : ptr_(NULL) function in class:scoped_refptr
261 scoped_refptr(T* p) : ptr_(p) { function in class:scoped_refptr
267 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { function in class:scoped_refptr
274 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { function in class:scoped_refptr
281 scoped_refptr(scoped_refptr&& r) : ptr_(r.get()) { r.ptr_ = nullptr; } function in class:scoped_refptr
285 scoped_refptr(scoped_refptr<U>&& r) : ptr_(r.get()) { function in class:scoped_refptr
    [all...]
ref_counted_unittest.cc 27 class CheckDerivedMemberAccess : public scoped_refptr<SelfAssign> {
44 scoped_refptr<ScopedRefPtrToSelf> self_ptr_;
111 scoped_refptr<SelfAssign> var(p);
137 check->self_ptr_ = scoped_refptr<ScopedRefPtrToSelf>();
142 scoped_refptr<SelfAssign> p;
149 scoped_refptr<SelfAssign> p1(new SelfAssign);
150 scoped_refptr<SelfAssign> p2(new SelfAssign);
160 scoped_refptr<Derived> p1(new Derived);
161 scoped_refptr<SelfAssign> p2;
177 scoped_refptr<ScopedRefPtrCountBase> p1(raw)
    [all...]
  /external/libchrome/sandbox/linux/bpf_dsl/
bpf_dsl_forward.h 23 typedef scoped_refptr<const internal::ResultExprImpl> ResultExpr;
24 typedef scoped_refptr<const internal::BoolExprImpl> BoolExpr;
38 scoped_refptr<const sandbox::bpf_dsl::internal::BoolExprImpl>;
40 scoped_refptr<const sandbox::bpf_dsl::internal::ResultExprImpl>;
  /external/libchrome/base/trace_event/
memory_dump_session_state.cc 11 const scoped_refptr<StackFrameDeduplicator>& stack_frame_deduplicator,
12 const scoped_refptr<TypeNameDeduplicator>& type_name_deduplicator)
memory_dump_session_state.h 22 const scoped_refptr<StackFrameDeduplicator>& stack_frame_deduplicator,
23 const scoped_refptr<TypeNameDeduplicator>& type_name_deduplicator);
43 scoped_refptr<StackFrameDeduplicator> stack_frame_deduplicator_;
47 scoped_refptr<TypeNameDeduplicator> type_name_deduplicator_;
  /external/webrtc/webrtc/test/win/
d3d_renderer.h 45 rtc::scoped_refptr<IDirect3D9> d3d_;
46 rtc::scoped_refptr<IDirect3DDevice9> d3d_device_;
48 rtc::scoped_refptr<IDirect3DTexture9> texture_;
49 rtc::scoped_refptr<IDirect3DVertexBuffer9> vertex_buffer_;
  /external/webrtc/talk/app/webrtc/
peerconnectionproxy.h 38 PROXY_METHOD0(rtc::scoped_refptr<StreamCollectionInterface>,
40 PROXY_METHOD0(rtc::scoped_refptr<StreamCollectionInterface>,
44 PROXY_METHOD1(rtc::scoped_refptr<DtmfSenderInterface>,
46 PROXY_METHOD2(rtc::scoped_refptr<RtpSenderInterface>,
50 PROXY_CONSTMETHOD0(std::vector<rtc::scoped_refptr<RtpSenderInterface>>,
52 PROXY_CONSTMETHOD0(std::vector<rtc::scoped_refptr<RtpReceiverInterface>>,
57 PROXY_METHOD2(rtc::scoped_refptr<DataChannelInterface>,
peerconnectionfactory.h 58 rtc::scoped_refptr<PeerConnectionInterface> CreatePeerConnection(
67 rtc::scoped_refptr<MediaStreamInterface>
70 rtc::scoped_refptr<AudioSourceInterface> CreateAudioSource(
73 rtc::scoped_refptr<VideoSourceInterface> CreateVideoSource(
77 rtc::scoped_refptr<VideoTrackInterface>
81 rtc::scoped_refptr<AudioTrackInterface>
114 rtc::scoped_refptr<AudioDeviceModule> default_adm_;
127 rtc::scoped_refptr<RefCountedDtlsIdentityStore> dtls_identity_store_;
peerconnectionfactoryproxy.h 44 rtc::scoped_refptr<PeerConnectionInterface> CreatePeerConnection(
50 return owner_thread_->Invoke<rtc::scoped_refptr<PeerConnectionInterface>>(
54 PROXY_METHOD1(rtc::scoped_refptr<MediaStreamInterface>,
56 PROXY_METHOD1(rtc::scoped_refptr<AudioSourceInterface>,
58 PROXY_METHOD2(rtc::scoped_refptr<VideoSourceInterface>,
61 PROXY_METHOD2(rtc::scoped_refptr<VideoTrackInterface>,
63 PROXY_METHOD2(rtc::scoped_refptr<AudioTrackInterface>,
71 rtc::scoped_refptr<PeerConnectionInterface> CreatePeerConnection_ot(
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_capture_options.h 42 void set_x_display(rtc::scoped_refptr<SharedXDisplay> x_display) {
52 rtc::scoped_refptr<DesktopConfigurationMonitor> m) {
60 rtc::scoped_refptr<FullScreenChromeWindowDetector> detector) {
90 rtc::scoped_refptr<SharedXDisplay> x_display_;
94 rtc::scoped_refptr<DesktopConfigurationMonitor> configuration_monitor_;
95 rtc::scoped_refptr<FullScreenChromeWindowDetector>
  /system/connectivity/apmanager/
manager.cc 51 scoped_refptr<Service> Manager::CreateService() {
53 scoped_refptr<Service> service = new Service(this, service_identifier_++);
58 bool Manager::RemoveService(const scoped_refptr<Service>& service,
74 scoped_refptr<Device> Manager::GetAvailableDevice() {
84 scoped_refptr<Device> Manager::GetDeviceFromInterfaceName(
94 void Manager::RegisterDevice(const scoped_refptr<Device>& device) {
  /external/libchrome/base/
thread_task_runner_handle.cc 21 scoped_refptr<SingleThreadTaskRunner> ThreadTaskRunnerHandle::Get() {
33 const scoped_refptr<SingleThreadTaskRunner>& task_runner)
thread_task_runner_handle.h 23 static scoped_refptr<SingleThreadTaskRunner> Get();
32 const scoped_refptr<SingleThreadTaskRunner>& task_runner);
36 scoped_refptr<SingleThreadTaskRunner> task_runner_;
  /external/libbrillo/brillo/dbus/
dbus_connection.cc 26 scoped_refptr<dbus::Bus> DBusConnection::Connect() {
30 scoped_refptr<dbus::Bus> DBusConnection::ConnectWithTimeout(
40 scoped_refptr<dbus::Bus> bus = new dbus::Bus(options);
dbus_connection.h 24 scoped_refptr<dbus::Bus> Connect();
29 scoped_refptr<dbus::Bus> ConnectWithTimeout(base::TimeDelta timeout);
32 scoped_refptr<dbus::Bus> bus_;

Completed in 211 milliseconds

1 2 3 4 5 6 7 8 91011>>