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:wholeBuffer
(Results
1 - 6
of
6
) sorted by relevance
/ide/tools/previewer/mock/lite/
H
A
D
VirtualScreenImpl.cpp
48
wholeBuffer
= new(std::nothrow) uint8_t[LWS_PRE + bufferSize];
in InitAll()
49
if (!
wholeBuffer
) {
in InitAll()
50
ELOG("Memory allocation failed :
wholeBuffer
.");
in InitAll()
58
screenBuffer =
wholeBuffer
+ LWS_PRE;
in InitAll()
66
ELOG("VirtualScreen::InitAll
wholeBuffer
memory allocation failed");
in InitAll()
215
:
wholeBuffer
(nullptr),
in VirtualScreenImpl()
237
if (
wholeBuffer
!= nullptr) {
in ~VirtualScreenImpl()
238
delete []
wholeBuffer
;
in ~VirtualScreenImpl()
239
wholeBuffer
= nullptr;
in ~VirtualScreenImpl()
H
A
D
VirtualScreenImpl.h
46
uint8_t*
wholeBuffer
;
member in VirtualScreenImpl
/ide/tools/previewer/mock/rich/
H
A
D
VirtualScreenImpl.cpp
61
GetInstance().
wholeBuffer
= new(std::nothrow) uint8_t[LWS_PRE + GetInstance().bufferSize];
in SendBufferOnTimer()
62
if (!GetInstance().
wholeBuffer
) {
in SendBufferOnTimer()
63
ELOG("Memory allocation failed :
wholeBuffer
.");
in SendBufferOnTimer()
66
GetInstance().screenBuffer = GetInstance().
wholeBuffer
+ LWS_PRE;
in SendBufferOnTimer()
202
GetInstance().
wholeBuffer
= new(std::nothrow) uint8_t[LWS_PRE + GetInstance().bufferSize];
in Callback()
203
if (!GetInstance().
wholeBuffer
) {
in Callback()
204
ELOG("Memory allocation failed :
wholeBuffer
.");
in Callback()
207
GetInstance().screenBuffer = GetInstance().
wholeBuffer
+ LWS_PRE;
in Callback()
272
wholeBuffer
(nullptr),
in VirtualScreenImpl()
407
if (
wholeBuffer
!
in FreeJpgMemory()
[all...]
H
A
D
VirtualScreenImpl.h
73
uint8_t*
wholeBuffer
;
member in VirtualScreenImpl
/ide/tools/previewer/test/unittest/mock_lite/
H
A
D
VirtualScreenImplTest.cpp
115
EXPECT_TRUE(VirtualScreenImpl::GetInstance().
wholeBuffer
== nullptr);
in TEST_F()
118
EXPECT_TRUE(VirtualScreenImpl::GetInstance().
wholeBuffer
!= nullptr);
in TEST_F()
/ide/tools/previewer/test/unittest/mock/
H
A
D
VirtualScreenImplTest.cpp
430
VirtualScreenImpl::GetInstance().
wholeBuffer
=
in TEST_F()
432
VirtualScreenImpl::GetInstance().screenBuffer = VirtualScreenImpl::GetInstance().
wholeBuffer
+ LWS_PRE;
in TEST_F()
477
VirtualScreenImpl::GetInstance().
wholeBuffer
=
in TEST_F()
479
VirtualScreenImpl::GetInstance().screenBuffer = VirtualScreenImpl::GetInstance().
wholeBuffer
+ LWS_PRE;
in TEST_F()
Completed in 4 milliseconds