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:appLaunchData
(Results
1 - 4
of
4
) sorted by relevance
/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/src/appmgr/
H
A
D
app_launch_data.cpp
166
AppLaunchData *
appLaunchData
= new AppLaunchData();
in Unmarshalling()
local
167
if (
appLaunchData
&& !
appLaunchData
->ReadFromParcel(parcel)) {
in Unmarshalling()
169
delete
appLaunchData
;
in Unmarshalling()
170
appLaunchData
= nullptr;
in Unmarshalling()
172
return
appLaunchData
;
in Unmarshalling()
/foundation/ability/ability_runtime/frameworks/native/appkit/app/
H
A
D
main_thread.cpp
805
bool MainThread::CheckLaunchApplicationParam(const AppLaunchData &
appLaunchData
) const
in CheckLaunchApplicationParam()
807
if (
appLaunchData
.GetApplicationInfo().name.empty()) {
in CheckLaunchApplicationParam()
812
if (
appLaunchData
.GetProcessInfo().GetProcessName().empty()) {
in CheckLaunchApplicationParam()
978
bool MainThread::CheckForHandleLaunchApplication(const AppLaunchData &
appLaunchData
)
in CheckForHandleLaunchApplication()
argument
980
if (!CheckLaunchApplicationParam(
appLaunchData
)) {
in CheckForHandleLaunchApplication()
981
TAG_LOGE(AAFwkTag::APPKIT, "
appLaunchData
invalid");
in CheckForHandleLaunchApplication()
1281
* @param
appLaunchData
The launchdata of the application witch launced.
1284
void MainThread::HandleLaunchApplication(const AppLaunchData &
appLaunchData
, const Configuration &config)
in HandleLaunchApplication()
argument
1288
if (!CheckForHandleLaunchApplication(
appLaunchData
)) {
in HandleLaunchApplication()
1293
if (
appLaunchData
in HandleLaunchApplication()
[all...]
/foundation/ability/ability_runtime/test/unittest/appkit/main_thread_test/
H
A
D
main_thread_test.cpp
626
AppLaunchData
appLaunchData
;
in HWTEST_F()
local
630
appLaunchData
.SetApplicationInfo(appInfo);
in HWTEST_F()
631
appLaunchData
.SetProcessInfo(processInfo);
in HWTEST_F()
632
EXPECT_FALSE(mainThread_->CheckLaunchApplicationParam(
appLaunchData
));
in HWTEST_F()
645
AppLaunchData
appLaunchData
;
in HWTEST_F()
local
649
appLaunchData
.SetApplicationInfo(appInfo);
in HWTEST_F()
650
appLaunchData
.SetProcessInfo(processInfo);
in HWTEST_F()
651
EXPECT_FALSE(mainThread_->CheckLaunchApplicationParam(
appLaunchData
));
in HWTEST_F()
654
appLaunchData
.SetProcessInfo(processInfo2);
in HWTEST_F()
655
EXPECT_TRUE(mainThread_->CheckLaunchApplicationParam(
appLaunchData
));
in HWTEST_F()
805
AppLaunchData
appLaunchData
;
HWTEST_F()
local
825
AppLaunchData
appLaunchData
;
HWTEST_F()
local
844
AppLaunchData
appLaunchData
;
HWTEST_F()
local
[all...]
/foundation/ability/ability_runtime/interfaces/kits/native/appkit/app/
H
A
D
main_thread.h
388
* @param
appLaunchData
The launchdata of the application witch launced.
391
void HandleLaunchApplication(const AppLaunchData &
appLaunchData
, const Configuration &config);
406
* @param
appLaunchData
The launchdata of the application witch launced.
508
* @brief Check whether the
appLaunchData
is legal.
510
* @param
appLaunchData
The
appLaunchData
should be checked.
512
* @return if the
appLaunchData
is legal, return true. else return false.
514
bool CheckLaunchApplicationParam(const AppLaunchData &
appLaunchData
) const;
704
bool CheckForHandleLaunchApplication(const AppLaunchData &
appLaunchData
);
Completed in 7 milliseconds