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:vsyncStation_
(Results
1 - 15
of
15
) sorted by relevance
/foundation/window/window_manager/wm/src/
H
A
D
screen_scene.cpp
40
vsyncStation_
= std::make_shared<VsyncStation>(nodeId);
in ScreenScene()
59
vsyncStation_
->Destroy();
in Destroy()
128
vsyncStation_
->RequestVsync(vsyncCallback);
in RequestVsync()
133
return
vsyncStation_
->GetVSyncPeriod();
in GetVSyncPeriod()
138
vsyncStation_
->FlushFrameRate(rate, animatorExpectedFrameRate, rateType);
in FlushFrameRate()
H
A
D
root_scene.cpp
77
vsyncStation_
= std::make_shared<VsyncStation>(nodeId);
in RootScene()
174
vsyncStation_
->RequestVsync(vsyncCallback);
in RequestVsync()
179
return
vsyncStation_
->GetVSyncPeriod();
in GetVSyncPeriod()
184
vsyncStation_
->FlushFrameRate(rate, animatorExpectedFrameRate, rateType);
in FlushFrameRate()
212
vsyncStation_
->SetUiDvsyncSwitch(dvsyncSwitch);
in SetUiDvsyncSwitch()
H
A
D
window_session_impl.cpp
199
vsyncStation_
= std::make_shared<VsyncStation>(surfaceNode_->GetId());
in WindowSessionImpl()
380
if (
vsyncStation_
== nullptr || !
vsyncStation_
->IsVsyncReceiverCreated()) {
in WindowSessionCreateCheck()
2515
if (
vsyncStation_
!= nullptr) {
in ClearVsyncStation()
2516
vsyncStation_
->Destroy();
in ClearVsyncStation()
2602
if (
vsyncStation_
!= nullptr) {
in NotifyAfterForeground()
2604
vsyncStation_
->GetFrameRateLinkerId());
in NotifyAfterForeground()
2605
vsyncStation_
->SetFrameRateLinkerEnable(true);
in NotifyAfterForeground()
2608
vsyncStation_
->SetDisplaySoloistFrameRateLinkerEnable(true);
in NotifyAfterForeground()
2626
if (
vsyncStation_
!
in NotifyAfterBackground()
[all...]
H
A
D
window_impl.cpp
115
vsyncStation_
= std::make_shared<VsyncStation>(surfaceNode_->GetId());
in WindowImpl()
1249
if (
vsyncStation_
== nullptr || !
vsyncStation_
->IsVsyncReceiverCreated()) {
in WindowCreateCheck()
1525
if (
vsyncStation_
!= nullptr) {
in ClearVsyncStation()
1526
vsyncStation_
->Destroy();
in ClearVsyncStation()
3348
if (
vsyncStation_
!= nullptr) {
in RequestVsync()
3349
vsyncStation_
->RequestVsync(vsyncCallback);
in RequestVsync()
3355
if (
vsyncStation_
!= nullptr) {
in GetVSyncPeriod()
3356
return
vsyncStation_
->GetVSyncPeriod();
in GetVSyncPeriod()
H
A
D
window_extension_session_impl.cpp
82
if (
vsyncStation_
== nullptr || !
vsyncStation_
->IsVsyncReceiverCreated()) {
in Create()
/foundation/window/window_manager/wm/include/
H
A
D
screen_scene.h
91
std::shared_ptr<VsyncStation>
vsyncStation_
= nullptr;
member in OHOS::OHOS::OHOS::Rosen::ScreenScene
H
A
D
root_scene.h
121
std::shared_ptr<VsyncStation>
vsyncStation_
= nullptr;
member in OHOS::OHOS::OHOS::Rosen::RootScene
H
A
D
window_session_impl.h
368
std::shared_ptr<VsyncStation>
vsyncStation_
= nullptr;
member in OHOS::Rosen::WindowSessionImpl
H
A
D
window_impl.h
501
std::shared_ptr<VsyncStation>
vsyncStation_
= nullptr;
member
/foundation/window/window_manager/wm/test/unittest/
H
A
D
window_session_impl_test2.cpp
474
auto vsyncStation = window->
vsyncStation_
;
in HWTEST_F()
478
window->
vsyncStation_
= nullptr;
in HWTEST_F()
481
window->
vsyncStation_
= vsyncStation;
in HWTEST_F()
496
auto vsyncStation = window->
vsyncStation_
;
in HWTEST_F()
500
window->
vsyncStation_
= nullptr;
in HWTEST_F()
503
window->
vsyncStation_
= vsyncStation;
in HWTEST_F()
1823
window->
vsyncStation_
= nullptr;
in HWTEST_F()
1853
window->
vsyncStation_
= nullptr;
in HWTEST_F()
H
A
D
window_impl_test5.cpp
587
window->
vsyncStation_
= std::make_shared<VsyncStation>(1);
in HWTEST_F()
590
window->
vsyncStation_
= nullptr;
in HWTEST_F()
614
window->
vsyncStation_
= std::make_shared<VsyncStation>(1);
in HWTEST_F()
617
window->
vsyncStation_
= nullptr;
in HWTEST_F()
H
A
D
window_session_impl_test.cpp
821
ASSERT_NE(window->
vsyncStation_
, nullptr);
in HWTEST_F()
823
window->
vsyncStation_
= nullptr;
in HWTEST_F()
842
window->
vsyncStation_
= nullptr;
in HWTEST_F()
1411
window->
vsyncStation_
= nullptr;
in HWTEST_F()
1439
window->
vsyncStation_
= nullptr;
in HWTEST_F()
H
A
D
window_impl_test.cpp
345
window->
vsyncStation_
= nullptr;
in HWTEST_F()
/foundation/window/window_manager/previewer/src/
H
A
D
window_impl.cpp
64
vsyncStation_
= std::make_shared<VsyncStation>(surfaceNode_->GetId());
in CreateSurfaceNode()
815
if (
vsyncStation_
== nullptr) {
in RequestVsync()
819
vsyncStation_
->RequestVsync(vsyncCallback);
in RequestVsync()
/foundation/window/window_manager/previewer/include/
H
A
D
window_impl.h
290
std::shared_ptr<VsyncStation>
vsyncStation_
= nullptr;
member in OHOS::OHOS::Rosen::WindowImpl
Completed in 35 milliseconds