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:validReminders
(Results
1 - 9
of
9
) sorted by relevance
/base/notification/distributed_notification_service/test/fuzztest/reminderhelper_fuzzer/
H
A
D
reminderhelper_fuzzer.cpp
38
std::vector<sptr<Notification::ReminderRequest>>
validReminders
;
in DoSomethingInterestingWithMyAPI()
local
39
validReminders
.emplace_back(valid);
in DoSomethingInterestingWithMyAPI()
40
Notification::ReminderHelper::GetValidReminders(
validReminders
);
in DoSomethingInterestingWithMyAPI()
/base/notification/distributed_notification_service/frameworks/ans/src/
H
A
D
reminder_helper.cpp
44
ErrCode ReminderHelper::GetValidReminders(std::vector<sptr<ReminderRequest>> &
validReminders
)
in GetValidReminders()
argument
47
return DelayedSingleton<AnsNotification>::GetInstance()->GetValidReminders(
validReminders
);
in GetValidReminders()
/base/notification/distributed_notification_service/interfaces/inner_api/
H
A
D
reminder_helper.h
72
* @param[out]
validReminders
Indicates an initial vector to receive the result.
75
static ErrCode GetValidReminders(std::vector<sptr<ReminderRequest>> &
validReminders
);
/base/notification/distributed_notification_service/frameworks/ans/test/unittest/
H
A
D
reminder_helper_test.cpp
87
std::vector<sptr<ReminderRequest>>
validReminders
;
in HWTEST_F()
local
89
ErrCode ret = reminderHelper.GetValidReminders(
validReminders
);
in HWTEST_F()
/base/notification/distributed_notification_service/frameworks/js/napi/src/reminder/
H
A
D
publish.cpp
61
std::vector<sptr<ReminderRequest>>
validReminders
;
member
808
void GetValidRemindersInner(napi_env env, const std::vector<sptr<ReminderRequest>>&
validReminders
, napi_value& arr)
in GetValidRemindersInner()
argument
812
for (auto reminder :
validReminders
) {
in GetValidRemindersInner()
829
void GetAllValidRemindersInner(napi_env env, const std::vector<sptr<ReminderRequest>>&
validReminders
, napi_value& arr)
in GetAllValidRemindersInner()
argument
833
for (auto reminder :
validReminders
) {
in GetAllValidRemindersInner()
891
asynccallbackinfo->
validReminders
);
in InnerGetValidReminders()
902
GetValidRemindersInner(env, asynccallbackinfo->
validReminders
, asynccallbackinfo->result);
in InnerGetValidReminders()
950
asynccallbackinfo->
validReminders
);
in InnerGetAllValidReminders()
961
GetAllValidRemindersInner(env, asynccallbackinfo->
validReminders
, asynccallbackinfo->result);
in InnerGetAllValidReminders()
/base/notification/distributed_notification_service/frameworks/core/src/
H
A
D
ans_manager_stub.cpp
1972
std::vector<sptr<ReminderRequest>>
validReminders
;
in HandleGetValidReminders()
local
1973
ErrCode result = GetValidReminders(
validReminders
);
in HandleGetValidReminders()
1975
ANSR_LOGD("Write back size=%{public}zu",
validReminders
.size());
in HandleGetValidReminders()
1976
if (!reply.WriteUint8(static_cast<uint8_t>(
validReminders
.size()))) {
in HandleGetValidReminders()
1981
for (auto it =
validReminders
.begin(); it !=
validReminders
.end(); ++it) {
in HandleGetValidReminders()
H
A
D
ans_notification.cpp
1376
ErrCode AnsNotification::GetValidReminders(std::vector<sptr<ReminderRequest>> &
validReminders
)
in GetValidReminders()
argument
1383
return proxy->GetValidReminders(
validReminders
);
in GetValidReminders()
/base/notification/distributed_notification_service/frameworks/core/include/
H
A
D
ans_notification.h
835
* @param[out]
validReminders
Indicates the vector to store the result.
838
ErrCode GetValidReminders(std::vector<sptr<ReminderRequest>> &
validReminders
);
/base/notification/distributed_notification_service/frameworks/core/test/unittest/ans_notification_test/
H
A
D
ans_notification_unit_test.cpp
904
std::vector<sptr<ReminderRequest>>
validReminders
;
in HWTEST_F()
local
905
ErrCode ret5 = ans_->GetValidReminders(
validReminders
);
in HWTEST_F()
Completed in 19 milliseconds