Home
last modified time | relevance | path

Searched refs:RefCountedMemory (Results 1 – 25 of 533) sorted by relevance

12345678910>>...22

/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/ui/webui/ntp/
H A Dntp_resource_cache.h25 class RefCountedMemory; variable
54 base::RefCountedMemory* GetNewTabGuestHTML();
55 base::RefCountedMemory* GetNewTabHTML(WindowType win_type);
56 base::RefCountedMemory* GetNewTabCSS(WindowType win_type);
116 base::RefCountedMemory* CreateNewTabEphemeralGuestSignedInHTML();
117 base::RefCountedMemory* CreateNewTabEphemeralGuestSignedOutHTML();
123 scoped_refptr<base::RefCountedMemory> new_tab_html_;
124 scoped_refptr<base::RefCountedMemory> new_tab_css_;
125 scoped_refptr<base::RefCountedMemory> new_tab_guest_html_;
128 scoped_refptr<base::RefCountedMemory> new_tab_incognito_html_;
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/mojo/public/cpp/base/
H A Dref_counted_memory_mojom_traits.cc13 scoped_refptr<base::RefCountedMemory>>::
14 data(const scoped_refptr<base::RefCountedMemory>& in) { in data()
20 scoped_refptr<base::RefCountedMemory>>::
21 IsNull(const scoped_refptr<base::RefCountedMemory>& input) { in IsNull()
27 scoped_refptr<base::RefCountedMemory>>::
28 SetToNull(scoped_refptr<base::RefCountedMemory>* out) { in SetToNull()
29 *out = scoped_refptr<base::RefCountedMemory>(); in SetToNull()
34 scoped_refptr<base::RefCountedMemory>>::
36 scoped_refptr<base::RefCountedMemory>* out) { in Read()
H A Dref_counted_memory_unittest.cc17 scoped_refptr<base::RefCountedMemory> in = in TEST()
20 scoped_refptr<base::RefCountedMemory> out; in TEST()
22 mojo::test::SerializeAndDeserialize<mojom::RefCountedMemory>(&in, &out)); in TEST()
31 scoped_refptr<base::RefCountedMemory> out = in TEST()
34 scoped_refptr<base::RefCountedMemory> in; in TEST()
36 mojo::test::SerializeAndDeserialize<mojom::RefCountedMemory>(&in, &out)); in TEST()
H A Dref_counted_memory_mojom_traits.h21 scoped_refptr<base::RefCountedMemory>> { in COMPONENT_EXPORT()
23 const scoped_refptr<base::RefCountedMemory>& in); in COMPONENT_EXPORT()
25 static bool IsNull(const scoped_refptr<base::RefCountedMemory>& input); in COMPONENT_EXPORT()
26 static void SetToNull(scoped_refptr<base::RefCountedMemory>* out); in COMPONENT_EXPORT()
29 scoped_refptr<base::RefCountedMemory>* out); in COMPONENT_EXPORT()
/dports/www/chromium-legacy/chromium-88.0.4324.182/mojo/public/cpp/base/
H A Dref_counted_memory_mojom_traits.cc13 scoped_refptr<base::RefCountedMemory>>::
14 data(const scoped_refptr<base::RefCountedMemory>& in) { in data()
20 scoped_refptr<base::RefCountedMemory>>::
21 IsNull(const scoped_refptr<base::RefCountedMemory>& input) { in IsNull()
27 scoped_refptr<base::RefCountedMemory>>::
28 SetToNull(scoped_refptr<base::RefCountedMemory>* out) { in SetToNull()
29 *out = scoped_refptr<base::RefCountedMemory>(); in SetToNull()
34 scoped_refptr<base::RefCountedMemory>>::
36 scoped_refptr<base::RefCountedMemory>* out) { in Read()
H A Dref_counted_memory_unittest.cc17 scoped_refptr<base::RefCountedMemory> in = in TEST()
20 scoped_refptr<base::RefCountedMemory> out; in TEST()
22 mojo::test::SerializeAndDeserialize<mojom::RefCountedMemory>(&in, &out)); in TEST()
31 scoped_refptr<base::RefCountedMemory> out = in TEST()
34 scoped_refptr<base::RefCountedMemory> in; in TEST()
36 mojo::test::SerializeAndDeserialize<mojom::RefCountedMemory>(&in, &out)); in TEST()
H A Dref_counted_memory_mojom_traits.h21 scoped_refptr<base::RefCountedMemory>> { in COMPONENT_EXPORT()
23 const scoped_refptr<base::RefCountedMemory>& in); in COMPONENT_EXPORT()
25 static bool IsNull(const scoped_refptr<base::RefCountedMemory>& input); in COMPONENT_EXPORT()
26 static void SetToNull(scoped_refptr<base::RefCountedMemory>* out); in COMPONENT_EXPORT()
29 scoped_refptr<base::RefCountedMemory>* out); in COMPONENT_EXPORT()
/dports/www/chromium-legacy/chromium-88.0.4324.182/base/memory/
H A Dref_counted_memory.h27 class BASE_EXPORT RefCountedMemory
28 : public RefCountedThreadSafe<RefCountedMemory> {
38 bool Equals(const scoped_refptr<RefCountedMemory>& other) const;
50 friend class RefCountedThreadSafe<RefCountedMemory>;
51 RefCountedMemory();
52 virtual ~RefCountedMemory();
57 class BASE_EXPORT RefCountedStaticMemory : public RefCountedMemory {
79 class BASE_EXPORT RefCountedBytes : public RefCountedMemory {
124 class BASE_EXPORT RefCountedString : public RefCountedMemory {
150 class BASE_EXPORT RefCountedString16 : public base::RefCountedMemory {
[all …]
H A Dref_counted_memory_unittest.cc44 scoped_refptr<RefCountedMemory> mem = RefCountedBytes::TakeVector(&data); in TEST()
52 scoped_refptr<RefCountedMemory> mem2; in TEST()
81 scoped_refptr<RefCountedMemory> mem = RefCountedString::TakeString(&s); in TEST()
95 scoped_refptr<RefCountedMemory> mem1 = RefCountedString::TakeString(&s1); in TEST()
98 scoped_refptr<RefCountedMemory> mem2 = RefCountedBytes::TakeVector(&d2); in TEST()
103 scoped_refptr<RefCountedMemory> mem3 = RefCountedString::TakeString(&s3); in TEST()
111 scoped_refptr<RefCountedMemory> mem = RefCountedString::TakeString(&s); in TEST()
H A Dref_counted_memory.cc14 bool RefCountedMemory::Equals( in Equals()
15 const scoped_refptr<RefCountedMemory>& other) const { in Equals()
21 RefCountedMemory::RefCountedMemory() = default;
23 RefCountedMemory::~RefCountedMemory() = default;
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/base/memory/
H A Dref_counted_memory.h26 class BASE_EXPORT RefCountedMemory
27 : public RefCountedThreadSafe<RefCountedMemory> {
37 bool Equals(const scoped_refptr<RefCountedMemory>& other) const;
49 friend class RefCountedThreadSafe<RefCountedMemory>;
50 RefCountedMemory();
51 virtual ~RefCountedMemory();
56 class BASE_EXPORT RefCountedStaticMemory : public RefCountedMemory {
78 class BASE_EXPORT RefCountedBytes : public RefCountedMemory {
123 class BASE_EXPORT RefCountedString : public RefCountedMemory {
149 class BASE_EXPORT RefCountedSharedMemoryMapping : public RefCountedMemory {
H A Dref_counted_memory_unittest.cc44 scoped_refptr<RefCountedMemory> mem = RefCountedBytes::TakeVector(&data); in TEST()
52 scoped_refptr<RefCountedMemory> mem2; in TEST()
81 scoped_refptr<RefCountedMemory> mem = RefCountedString::TakeString(&s); in TEST()
95 scoped_refptr<RefCountedMemory> mem1 = RefCountedString::TakeString(&s1); in TEST()
98 scoped_refptr<RefCountedMemory> mem2 = RefCountedBytes::TakeVector(&d2); in TEST()
103 scoped_refptr<RefCountedMemory> mem3 = RefCountedString::TakeString(&s3); in TEST()
111 scoped_refptr<RefCountedMemory> mem = RefCountedString::TakeString(&s); in TEST()
H A Dref_counted_memory.cc14 bool RefCountedMemory::Equals( in Equals()
15 const scoped_refptr<RefCountedMemory>& other) const { in Equals()
21 RefCountedMemory::RefCountedMemory() = default;
23 RefCountedMemory::~RefCountedMemory() = default;
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/chrome/browser/ui/webui/ntp/
H A Dntp_resource_cache.h24 class RefCountedMemory; variable
53 base::RefCountedMemory* GetNewTabHTML(WindowType win_type);
54 base::RefCountedMemory* GetNewTabCSS(WindowType win_type);
93 scoped_refptr<base::RefCountedMemory> new_tab_html_;
94 scoped_refptr<base::RefCountedMemory> new_tab_css_;
95 scoped_refptr<base::RefCountedMemory> new_tab_guest_html_;
96 scoped_refptr<base::RefCountedMemory> new_tab_incognito_html_;
97 scoped_refptr<base::RefCountedMemory> new_tab_incognito_css_;
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/printing/
H A Dprint_preview_data_service.cc18 void ValidatePreviewData(scoped_refptr<base::RefCountedMemory> data) { in ValidatePreviewData()
54 scoped_refptr<base::RefCountedMemory>* data) const { in GetPreviewDataForIndex()
65 scoped_refptr<base::RefCountedMemory> data) { in SetPreviewDataForIndex()
83 std::map<int, scoped_refptr<base::RefCountedMemory>>;
109 scoped_refptr<base::RefCountedMemory>* data_bytes) const { in GetDataEntry()
119 scoped_refptr<base::RefCountedMemory> data_bytes) { in SetDataEntry()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/chrome/browser/printing/
H A Dprint_preview_data_service.cc18 void ValidatePreviewData(scoped_refptr<base::RefCountedMemory> data) { in ValidatePreviewData()
54 scoped_refptr<base::RefCountedMemory>* data) const { in GetPreviewDataForIndex()
65 scoped_refptr<base::RefCountedMemory> data) { in SetPreviewDataForIndex()
83 std::map<int, scoped_refptr<base::RefCountedMemory>>;
109 scoped_refptr<base::RefCountedMemory>* data_bytes) const { in GetDataEntry()
119 scoped_refptr<base::RefCountedMemory> data_bytes) { in SetDataEntry()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ui/base/x/
H A Dselection_utils.h46 const scoped_refptr<base::RefCountedMemory>& memory);
50 const scoped_refptr<base::RefCountedMemory>& memory);
59 typedef std::map< ::Atom, scoped_refptr<base::RefCountedMemory> > InternalMap; in COMPONENT_EXPORT()
69 void Insert(::Atom atom, const scoped_refptr<base::RefCountedMemory>& item); in COMPONENT_EXPORT()
96 const scoped_refptr<base::RefCountedMemory>& memory); in COMPONENT_EXPORT()
119 scoped_refptr<base::RefCountedMemory> memory_; in COMPONENT_EXPORT()
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/base/x/
H A Dselection_utils.h42 const scoped_refptr<base::RefCountedMemory>& memory);
46 const scoped_refptr<base::RefCountedMemory>& memory);
56 std::map<x11::Atom, scoped_refptr<base::RefCountedMemory>>; in COMPONENT_EXPORT()
67 const scoped_refptr<base::RefCountedMemory>& item); in COMPONENT_EXPORT()
94 const scoped_refptr<base::RefCountedMemory>& memory); in COMPONENT_EXPORT()
117 scoped_refptr<base::RefCountedMemory> memory_; in COMPONENT_EXPORT()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/content/browser/webui/
H A Dweb_ui_data_source_unittest.cc35 base::RefCountedMemory* GetDataResourceBytes(int resource_id) override { in GetDataResourceBytes()
72 scoped_refptr<base::RefCountedMemory> data);
93 scoped_refptr<base::RefCountedMemory> data) { in EmptyStringsCallback()
111 void SomeValuesCallback(scoped_refptr<base::RefCountedMemory> data) { in SomeValuesCallback()
130 void DefaultResourceFoobarCallback(scoped_refptr<base::RefCountedMemory> data) { in DefaultResourceFoobarCallback()
136 scoped_refptr<base::RefCountedMemory> data) { in DefaultResourceStringsCallback()
148 void NamedResourceFoobarCallback(scoped_refptr<base::RefCountedMemory> data) { in NamedResourceFoobarCallback()
153 void NamedResourceStringsCallback(scoped_refptr<base::RefCountedMemory> data) { in NamedResourceStringsCallback()
166 scoped_refptr<base::RefCountedMemory> data) { in NamedResourceWithQueryStringCallback()
179 scoped_refptr<base::RefCountedMemory> data) { in RequestFilterQueryStringCallback()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/chrome/browser/ui/webui/print_preview/
H A Dprint_preview_ui.h33 class RefCountedMemory; variable
55 scoped_refptr<base::RefCountedMemory>* data) const;
148 scoped_refptr<base::RefCountedMemory> data,
153 void OnPreviewDataIsAvailable(scoped_refptr<base::RefCountedMemory> data,
220 scoped_refptr<base::RefCountedMemory> data);
245 scoped_refptr<base::RefCountedMemory> data);
/dports/www/chromium-legacy/chromium-88.0.4324.182/content/browser/webui/
H A Dweb_ui_data_source_unittest.cc38 base::RefCountedMemory* GetDataResourceBytes(int resource_id) override { in GetDataResourceBytes()
78 scoped_refptr<base::RefCountedMemory> data);
99 scoped_refptr<base::RefCountedMemory> data) { in EmptyStringsCallback()
117 void SomeValuesCallback(scoped_refptr<base::RefCountedMemory> data) { in SomeValuesCallback()
144 scoped_refptr<base::RefCountedMemory> data) { in DefaultResourceStringsCallback()
156 void NamedResourceFoobarCallback(scoped_refptr<base::RefCountedMemory> data) { in NamedResourceFoobarCallback()
174 scoped_refptr<base::RefCountedMemory> data) { in NamedResourceWithQueryStringCallback()
187 scoped_refptr<base::RefCountedMemory> data) { in NamedResourceWithUrlFragmentCallback()
200 scoped_refptr<base::RefCountedMemory> data) { in RequestFilterQueryStringCallback()
261 void InvalidResourceCallback(scoped_refptr<base::RefCountedMemory> data) { in InvalidResourceCallback()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/ui/webui/print_preview/
H A Dprint_preview_ui.h33 class RefCountedMemory; variable
57 scoped_refptr<base::RefCountedMemory>* data) const;
161 scoped_refptr<base::RefCountedMemory> data,
166 void OnPreviewDataIsAvailable(scoped_refptr<base::RefCountedMemory> data,
220 scoped_refptr<base::RefCountedMemory> data);
245 scoped_refptr<base::RefCountedMemory> data);
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ui/snapshot/
H A Dsnapshot.cc23 scoped_refptr<base::RefCountedMemory> EncodeImageAsPNG( in EncodeImageAsPNG()
33 scoped_refptr<base::RefCountedMemory> EncodeImageAsJPEG( in EncodeImageAsJPEG()
42 scoped_refptr<base::RefCountedMemory> (*encode_func)(const gfx::Image&), in EncodeImageAndScheduleCallback()
43 base::OnceCallback<void(scoped_refptr<base::RefCountedMemory> data)> in EncodeImageAndScheduleCallback()
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/snapshot/
H A Dsnapshot.cc23 scoped_refptr<base::RefCountedMemory> EncodeImageAsPNG( in EncodeImageAsPNG()
33 scoped_refptr<base::RefCountedMemory> EncodeImageAsJPEG( in EncodeImageAsJPEG()
42 scoped_refptr<base::RefCountedMemory> (*encode_func)(const gfx::Image&), in EncodeImageAndScheduleCallback()
43 base::OnceCallback<void(scoped_refptr<base::RefCountedMemory> data)> in EncodeImageAndScheduleCallback()
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/gfx/x/
H A Dxproto_types.h41 explicit ReadBuffer(scoped_refptr<base::RefCountedMemory> data); in COMPONENT_EXPORT()
48 scoped_refptr<base::RefCountedMemory> ReadAndAdvance(size_t length); in COMPONENT_EXPORT()
52 scoped_refptr<base::RefCountedMemory> data; in COMPONENT_EXPORT()
67 void AppendBuffer(scoped_refptr<base::RefCountedMemory> buffer, size_t size); in COMPONENT_EXPORT()
69 std::vector<scoped_refptr<base::RefCountedMemory>>& GetBuffers(); in COMPONENT_EXPORT()
87 std::vector<scoped_refptr<base::RefCountedMemory>> buffers_; in COMPONENT_EXPORT()
140 using RawReply = scoped_refptr<base::RefCountedMemory>;
141 using RawError = scoped_refptr<base::RefCountedMemory>;

12345678910>>...22