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:pkgs
(Results
1 - 7
of
7
) sorted by relevance
/foundation/window/window_manager_lite/services/ims/
H
A
D
input_event_hub.cpp
121
void InputEventHub::EventCallback(const InputEventPackage **
pkgs
, uint32_t count, uint32_t devIndex)
in EventCallback()
argument
123
if (
pkgs
== nullptr || readCallback_ == nullptr || count == 0) {
in EventCallback()
129
if (
pkgs
[i]->type == EV_REL) {
in EventCallback()
131
if (
pkgs
[i]->code == REL_X)
in EventCallback()
132
data.x +=
pkgs
[i]->value;
in EventCallback()
133
else if (
pkgs
[i]->code == REL_Y)
in EventCallback()
134
data.y +=
pkgs
[i]->value;
in EventCallback()
135
} else if (
pkgs
[i]->type == EV_ABS) {
in EventCallback()
137
if (
pkgs
[i]->code == ABS_MT_POSITION_X)
in EventCallback()
138
data.x =
pkgs
[
in EventCallback()
[all...]
H
A
D
input_event_hub.h
64
static void EventCallback(const InputEventPackage **
pkgs
, uint32_t count, uint32_t devIndex);
/foundation/multimodalinput/input/uinput/
H
A
D
hdf_device_event_dispatch.cpp
38
int32_t HdfDeviceEventDispatch::EventPkgCallback(const std::vector<EventPackage> &
pkgs
, uint32_t devIndex)
in EventPkgCallback()
argument
40
if (
pkgs
.empty()) {
in EventPkgCallback()
41
MMI_HILOGE("The
pkgs
is empty");
in EventPkgCallback()
45
for (const auto &item :
pkgs
) {
in EventPkgCallback()
H
A
D
hdf_device_event_dispatch.h
34
int32_t EventPkgCallback(const std::vector<EventPackage> &
pkgs
, uint32_t devIndex) override;
/foundation/graphic/graphic_2d/rosen/modules/hyper_graphic_manager/core/frame_rate_manager/
H
A
D
hgm_multi_app_strategy.cpp
40
HgmErrCode HgmMultiAppStrategy::HandlePkgsEvent(const std::vector<std::string>&
pkgs
)
in HandlePkgsEvent()
argument
43
// update
pkgs
in HandlePkgsEvent()
44
if (pkgs_ ==
pkgs
) {
in HandlePkgsEvent()
47
pkgs_ =
pkgs
;
in HandlePkgsEvent()
432
void HgmMultiAppStrategy::CheckPackageInConfigList(const std::vector<std::string>&
pkgs
)
in CheckPackageInConfigList()
argument
444
if (videoConfigFromHgm.empty() ||
pkgs
.size() > 1) {
in CheckPackageInConfigList()
447
for (auto ¶m:
pkgs
) {
in CheckPackageInConfigList()
H
A
D
hgm_multi_app_strategy.h
48
HgmErrCode HandlePkgsEvent(const std::vector<std::string>&
pkgs
);
76
void CheckPackageInConfigList(const std::vector<std::string>&
pkgs
);
90
HgmLRUCache<pid_t> backgroundPid_{ 100 }; // max nums of
pkgs
that can be stored is 100
/foundation/graphic/graphic_2d/rosen/test/hyper_graphic_manager/unittest/
H
A
D
hgm_multi_app_strategy_test.cpp
116
std::vector<std::string>
pkgs
;
in CreateVotePkgs()
local
118
pkgs
.push_back(pkgParam.pkgName + ":" + std::to_string(pkgParam.pid));
in CreateVotePkgs()
120
return
pkgs
;
in CreateVotePkgs()
432
STEP("2. empty
pkgs
") {
in HWTEST_F()
460
STEP("2. empty
pkgs
") {
in HWTEST_F()
486
STEP("2. empty
pkgs
") {
in HWTEST_F()
575
std::vector<std::string>
pkgs
= {"com.app10", "com.app15"};
in HWTEST_F()
local
576
multiAppStrategy_->CheckPackageInConfigList(
pkgs
);
in HWTEST_F()
577
ASSERT_EQ(
pkgs
[0], "com.app10");
in HWTEST_F()
Completed in 4 milliseconds