Home
last modified time | relevance | path

Searched refs:tapDismissed (Results 1 - 8 of 8) sorted by relevance

/base/notification/distributed_notification_service/services/ans/src/
H A Dreminder_store_strategy.cpp218 std::string tapDismissed; in RecoverFromOldVersion() local
219 ReminderStrategy::GetRdbValue<std::string>(resultSet, ReminderTable::TAP_DISMISSED, tapDismissed); in RecoverFromOldVersion()
220 reminder->SetTapDismissed(tapDismissed == "true" ? true : false); in RecoverFromOldVersion()
367 std::string tapDismissed; in RecoverFromDb() local
368 ReminderStrategy::GetRdbValue<std::string>(resultSet, ReminderBaseTable::TAP_DISMISSED, tapDismissed); in RecoverFromDb()
369 reminder->SetTapDismissed(tapDismissed == "true" ? true : false); in RecoverFromDb()
/base/notification/distributed_notification_service/frameworks/cj/ffi/include/
H A Dnotification_utils.h183 bool tapDismissed; member
/base/notification/distributed_notification_service/frameworks/js/napi/src/reminder/
H A Dreminder_common.cpp608 // tapDismissed in GenReminderBoolInner()
609 bool tapDismissed = false; in GenReminderBoolInner() local
610 if (GetBool(env, value, ReminderAgentNapi::TAPDISMISSED, tapDismissed)) { in GenReminderBoolInner()
611 reminder->SetTapDismissed(tapDismissed); in GenReminderBoolInner()
/base/notification/distributed_notification_service/frameworks/cj/ffi/src/
H A Dnotification_utils.cpp173 // tapDismissed?: boolean in GetNotificationRequestByBool()
174 bool tapDismissed = cjRequest.tapDismissed; in GetNotificationRequestByBool() local
175 request.SetTapDismissed(tapDismissed); in GetNotificationRequestByBool()
991 // tapDismissed?: boolean in SetNotificationRequestByBool()
992 notificationRequest.tapDismissed = request->IsTapDismissed(); in SetNotificationRequestByBool()
/base/notification/distributed_notification_service/interfaces/inner_api/
H A Dreminder_request.h818 * @brief Sets tapDismissed.
820 * @param tapDismissed Indicates tapDismissed.
822 void SetTapDismissed(bool tapDismissed);
825 * @brief Gets tapDismissed.
827 * @return True if tapDismissed.
/base/location/frameworks/js/napi/notification/src/
H A Dnotification_napi_convert_request.cpp108 // tapDismissed?: boolean in GetNotificationRequestByBool()
564 bool tapDismissed = true; in GetNotificationtapDismissed() local
566 NAPI_CALL(env, napi_has_named_property(env, value, "tapDismissed", &hasProperty)); in GetNotificationtapDismissed()
568 napi_get_named_property(env, value, "tapDismissed", &result); in GetNotificationtapDismissed()
574 napi_get_value_bool(env, result, &tapDismissed); in GetNotificationtapDismissed()
575 request.SetTapDismissed(tapDismissed); in GetNotificationtapDismissed()
/base/notification/distributed_notification_service/frameworks/js/napi/src/
H A Dcommon_convert_request.cpp152 // tapDismissed?: boolean in SetNotificationRequestByBool()
154 napi_set_named_property(env, result, "tapDismissed", value); in SetNotificationRequestByBool()
634 // tapDismissed?: boolean in GetNotificationRequestByBool()
1084 bool tapDismissed = true; in GetNotificationtapDismissed() local
1086 NAPI_CALL(env, napi_has_named_property(env, value, "tapDismissed", &hasProperty)); in GetNotificationtapDismissed()
1088 napi_get_named_property(env, value, "tapDismissed", &result); in GetNotificationtapDismissed()
1094 napi_get_value_bool(env, result, &tapDismissed); in GetNotificationtapDismissed()
1095 request.SetTapDismissed(tapDismissed); in GetNotificationtapDismissed()
/base/notification/distributed_notification_service/frameworks/ans/src/
H A Dreminder_request.cpp910 void ReminderRequest::SetTapDismissed(bool tapDismissed) in SetTapDismissed() argument
912 tapDismissed_ = tapDismissed; in SetTapDismissed()
1121 WRITE_BOOL_RETURN_FALSE_LOG(parcel, tapDismissed_, "tapDismissed"); in Marshalling()
1244 READ_BOOL_RETURN_FALSE_LOG(parcel, tapDismissed_, "tapDismissed"); in ReadFromParcel()

Completed in 15 milliseconds