Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:bufferCache_
(Results
1 - 8
of
8
) sorted by relevance
/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/test/unittest/
H
A
D
hdioutput_test.cpp
290
hdiOutput->
bufferCache_
.push_back(buffer);
in HWTEST_F()
313
ASSERT_EQ(hdiOutput->
bufferCache_
.size(), 1);
in HWTEST_F()
314
ASSERT_EQ(hdiOutput->
bufferCache_
[0], buffer);
in HWTEST_F()
331
hdiOutput->
bufferCache_
.push_back(new SurfaceBufferImpl());
in HWTEST_F()
335
ASSERT_EQ(hdiOutput->
bufferCache_
.size(), 1);
in HWTEST_F()
336
ASSERT_EQ(hdiOutput->
bufferCache_
[0], buffer);
in HWTEST_F()
/foundation/graphic/graphic_surface/surface/include/
H
A
D
native_window.h
39
std::unordered_map<uint32_t, NativeWindowBuffer*>
bufferCache_
;
member
/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/src/
H
A
D
hdi_output.cpp
104
bufferCache_
.reserve(bufferCacheCountMax_);
in Init()
400
uint32_t bufferCahceSize = (uint32_t)
bufferCache_
.size();
in CheckAndUpdateClientBufferCahce()
402
if (
bufferCache_
[i] == buffer) {
in CheckAndUpdateClientBufferCahce()
413
index = (uint32_t)
bufferCache_
.size();
in CheckAndUpdateClientBufferCahce()
414
bufferCache_
.push_back(buffer);
in CheckAndUpdateClientBufferCahce()
894
return
bufferCache_
.size();
in GetBufferCacheSize()
899
if (
bufferCache_
.empty()) {
in ClearBufferCache()
906
bufferCache_
.clear();
in ClearBufferCache()
H
A
D
hdi_layer.cpp
142
bufferCache_
.reserve(bufferCacheCountMax_);
in CreateLayer()
251
uint32_t bufferCacheSize = (uint32_t)
bufferCache_
.size();
in CheckAndUpdateLayerBufferCahce()
253
if (
bufferCache_
[i] == sequence) {
in CheckAndUpdateLayerBufferCahce()
265
index = (uint32_t)
bufferCache_
.size();
in CheckAndUpdateLayerBufferCahce()
266
bufferCache_
.push_back(sequence);
in CheckAndUpdateLayerBufferCahce()
823
if (
bufferCache_
.empty()) {
in ClearBufferCache()
828
bufferCache_
.clear();
in ClearBufferCache()
/foundation/graphic/graphic_surface/surface/src/
H
A
D
native_window.cpp
190
auto iter = window->
bufferCache_
.find(seqNum);
in NativeWindowRequestBuffer()
191
if (iter == window->
bufferCache_
.end()) {
in NativeWindowRequestBuffer()
198
window->
bufferCache_
[seqNum] = nwBuffer;
in NativeWindowRequestBuffer()
248
auto it = std::find_if(window->
bufferCache_
.begin(), window->
bufferCache_
.end(),
in NativeWindowFlushBuffer()
252
if (it != window->
bufferCache_
.end()) {
in NativeWindowFlushBuffer()
964
for (auto &[seqNum, buffer] :
bufferCache_
) {
in ~NativeWindow()
968
bufferCache_
.clear();
in ~NativeWindow()
H
A
D
producer_surface.cpp
226
auto& bufferCache = spNativeWindow->
bufferCache_
;
730
auto& bufferCache = spNativeWindow->
bufferCache_
;
/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/include/
H
A
D
hdi_layer.h
96
std::vector<uint32_t>
bufferCache_
;
member in OHOS::Rosen::HdiLayer
H
A
D
hdi_output.h
125
std::vector<sptr<SurfaceBuffer> >
bufferCache_
;
member in OHOS::Rosen::HdiOutput
Completed in 7 milliseconds