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:wantInfo
(Results
1 - 4
of
4
) sorted by relevance
/base/notification/distributed_notification_service/services/ans/src/
H
A
D
reminder_data_manager.cpp
1020
std::shared_ptr<ReminderRequest::WantAgentInfo>
wantInfo
= calendar->GetRRuleWantAgentInfo();
in StartExtensionAbility()
local
1021
if (
wantInfo
!= nullptr &&
wantInfo
->pkgName.size() != 0 &&
wantInfo
->abilityName.size() != 0) {
in StartExtensionAbility()
1023
want.SetElementName(
wantInfo
->pkgName,
wantInfo
->abilityName);
in StartExtensionAbility()
1922
auto
wantInfo
= reminder->GetWantAgentInfo();
in ClickReminder()
local
1923
if (
wantInfo
== nullptr || (
wantInfo
->pkgName.empty() &&
wantInfo
in ClickReminder()
[all...]
/base/notification/distributed_notification_service/frameworks/ans/src/
H
A
D
reminder_request.cpp
1535
AbilityRuntime::WantAgent::WantAgentInfo
wantInfo
(
in CreateWantAgent()
1543
auto wantAgent = AbilityRuntime::WantAgent::WantAgentHelper::GetWantAgent(
wantInfo
, userId_);
in CreateWantAgent()
1774
nlohmann::json
wantInfo
;
in SerializeWantAgent()
local
1775
wantInfo
["pkgName"] = pkgName;
in SerializeWantAgent()
1776
wantInfo
["abilityName"] = abilityName;
in SerializeWantAgent()
1777
wantInfo
["uri"] = uri;
in SerializeWantAgent()
1778
wantInfo
["parameters"] = parameters;
in SerializeWantAgent()
1779
wantInfoStr =
wantInfo
.dump(INDENT, ' ', false, nlohmann::json::error_handler_t::replace);
in SerializeWantAgent()
/base/notification/distributed_notification_service/frameworks/ans/test/unittest/
H
A
D
reminder_request_calendar_test.cpp
1080
auto
wantInfo
= std::make_shared<ReminderRequest::WantAgentInfo>();
in HWTEST_F()
local
1081
wantInfo
->pkgName = "testing service";
in HWTEST_F()
1082
wantInfo
->abilityName = "testing ability";
in HWTEST_F()
1083
calendar->SetRRuleWantAgentInfo(
wantInfo
);
in HWTEST_F()
1084
EXPECT_EQ(calendar->GetRRuleWantAgentInfo(),
wantInfo
);
in HWTEST_F()
/base/notification/distributed_notification_service/services/ans/test/unittest/
H
A
D
reminder_data_manager_test.cpp
621
auto
wantInfo
= std::make_shared<ReminderRequest::WantAgentInfo>();
in HWTEST_F()
local
622
reminder2->SetRRuleWantAgentInfo(
wantInfo
);
in HWTEST_F()
Completed in 12 milliseconds