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:lFuncs
(Results
1 - 2
of
2
) sorted by relevance
/drivers/peripheral/display/hal/default_standard/src/display_device/core/
H
A
D
hdi_session.cpp
370
LayerFuncs *
lFuncs
= reinterpret_cast<LayerFuncs *>(calloc(1, sizeof(LayerFuncs)));
in LayerInitialize()
local
371
DISPLAY_CHK_RETURN((
lFuncs
== nullptr), DISPLAY_FAILURE, DISPLAY_LOGE("can not calloc errno: %{public}d", errno));
in LayerInitialize()
372
lFuncs
->SetLayerAlpha = SetLayerAlpha;
in LayerInitialize()
373
lFuncs
->CreateLayer = CreateLayer;
in LayerInitialize()
374
lFuncs
->CloseLayer = CloseLayer;
in LayerInitialize()
375
lFuncs
->SetLayerSize = SetLayerSize;
in LayerInitialize()
376
lFuncs
->SetLayerCrop = SetLayerCrop;
in LayerInitialize()
377
lFuncs
->SetLayerZorder = SetLayerZorder;
in LayerInitialize()
378
lFuncs
->SetLayerPreMulti = SetLayerPreMulti;
in LayerInitialize()
379
lFuncs
in LayerInitialize()
[all...]
/drivers/peripheral/display/hal/default/
H
A
D
display_layer.c
430
static LayerFuncs *
lFuncs
= NULL;
in LayerInitialize()
local
436
if (
lFuncs
== NULL) {
in LayerInitialize()
437
lFuncs
= (LayerFuncs *)OsalMemCalloc(sizeof(LayerFuncs));
in LayerInitialize()
438
if (
lFuncs
== NULL) {
in LayerInitialize()
439
HDF_LOGE("%s:
lFuncs
is null", __func__);
in LayerInitialize()
445
lFuncs
->InitDisplay = InitDisplay;
in LayerInitialize()
446
lFuncs
->DeinitDisplay = DeinitDisplay;
in LayerInitialize()
447
lFuncs
->GetDisplayInfo = GetDisplayInfo;
in LayerInitialize()
448
lFuncs
->CreateLayer = CreateLayer;
in LayerInitialize()
449
lFuncs
in LayerInitialize()
[all...]
Completed in 5 milliseconds