/base/notification/distributed_notification_service/services/ans/src/ |
H A D | reminder_data_manager_inner.cpp | 85 const int64_t autoDeletedTime) in HandleAutoDeleteReminder() 99 reminder->GetAutoDeletedTime() != autoDeletedTime) { in HandleAutoDeleteReminder() 84 HandleAutoDeleteReminder(const int32_t notificationId, const int32_t uid, const int64_t autoDeletedTime) HandleAutoDeleteReminder() argument
|
H A D | reminder_event_manager.cpp | 324 int64_t autoDeletedTime = request.GetAutoDeletedTime(); in OnCanceled() local 325 if (autoDeletedTime <= 0 || label != NOTIFICATION_LABEL) { in OnCanceled() 334 reminderDataManager_->HandleAutoDeleteReminder(notificationId, uid, autoDeletedTime); in OnCanceled()
|
H A D | reminder_store_strategy.cpp | 101 int64_t autoDeletedTime = 0; in RecoverTimeFromOldVersion() local 102 ReminderStrategy::GetRdbValue<int64_t>(resultSet, ReminderTable::AUTO_DELETED_TIME, autoDeletedTime); in RecoverTimeFromOldVersion() 103 reminder->SetAutoDeletedTime(autoDeletedTime); in RecoverTimeFromOldVersion() 250 int64_t autoDeletedTime = 0; in RecoverTimeFromDb() local 251 ReminderStrategy::GetRdbValue<int64_t>(resultSet, ReminderBaseTable::AUTO_DELETED_TIME, autoDeletedTime); in RecoverTimeFromDb() 252 reminder->SetAutoDeletedTime(autoDeletedTime); in RecoverTimeFromDb()
|
/base/notification/distributed_notification_service/frameworks/js/napi/src/reminder/ |
H A D | reminder_common.cpp | 595 //autoDeletedTime in GenReminderIntInner() 596 int64_t autoDeletedTime = 0; in GenReminderIntInner() local 597 if (GetInt64(env, value, ReminderAgentNapi::AUTODELETEDTIME, autoDeletedTime)) { in GenReminderIntInner() 598 if (autoDeletedTime > 0) { in GenReminderIntInner() 599 reminder->SetAutoDeletedTime(autoDeletedTime); in GenReminderIntInner()
|
/base/notification/distributed_notification_service/frameworks/cj/ffi/include/ |
H A D | notification_utils.h | 184 int64_t autoDeletedTime; member
|
/base/notification/distributed_notification_service/frameworks/cj/ffi/src/ |
H A D | notification_utils.cpp | 115 // autoDeletedTime?: int64_t in GetNotificationRequestByNumber() 116 int64_t autoDeletedTime = cjRequest.autoDeletedTime; in GetNotificationRequestByNumber() local 117 request.SetAutoDeletedTime(autoDeletedTime); in GetNotificationRequestByNumber() 960 // autoDeletedTime?: int32_t in SetNotificationRequestByNumber() 961 notificationRequest.autoDeletedTime = request->GetAutoDeletedTime(); in SetNotificationRequestByNumber()
|
/base/notification/distributed_notification_service/interfaces/inner_api/ |
H A D | reminder_request.h | 832 * @brief Sets autoDeletedTime. 834 * @param autoDeletedTime Indicates autoDeletedTime. 836 void SetAutoDeletedTime(int64_t autoDeletedTime); 839 * @brief Gets autoDeletedTime.
|
/base/notification/distributed_notification_service/services/ans/include/ |
H A D | reminder_data_manager.h | 242 void HandleAutoDeleteReminder(const int32_t notificationId, const int32_t uid, const int64_t autoDeletedTime);
|
/base/location/frameworks/js/napi/notification/src/ |
H A D | notification_napi_convert_request.cpp | 45 // autoDeletedTime?: number in GetNotificationRequestByNumber() 740 int64_t autoDeletedTime = 0; in GetNotificationAutoDeletedTime() local 742 NAPI_CALL(env, napi_has_named_property(env, value, "autoDeletedTime", &hasProperty)); in GetNotificationAutoDeletedTime() 744 napi_get_named_property(env, value, "autoDeletedTime", &result); in GetNotificationAutoDeletedTime() 750 napi_get_value_int64(env, result, &autoDeletedTime); in GetNotificationAutoDeletedTime() 751 request.SetAutoDeletedTime(autoDeletedTime); in GetNotificationAutoDeletedTime()
|
/base/notification/distributed_notification_service/frameworks/js/napi/src/ |
H A D | common_convert_request.cpp | 101 // autoDeletedTime?: number in SetNotificationRequestByNumber() 103 napi_set_named_property(env, result, "autoDeletedTime", value); in SetNotificationRequestByNumber() 567 // autoDeletedTime?: number in GetNotificationRequestByNumber() 1257 int64_t autoDeletedTime = 0; in GetNotificationAutoDeletedTime() local 1259 NAPI_CALL(env, napi_has_named_property(env, value, "autoDeletedTime", &hasProperty)); in GetNotificationAutoDeletedTime() 1261 napi_get_named_property(env, value, "autoDeletedTime", &result); in GetNotificationAutoDeletedTime() 1267 napi_get_value_int64(env, result, &autoDeletedTime); in GetNotificationAutoDeletedTime() 1268 request.SetAutoDeletedTime(autoDeletedTime); in GetNotificationAutoDeletedTime()
|
/base/notification/distributed_notification_service/frameworks/ans/src/ |
H A D | reminder_request.cpp | 920 void ReminderRequest::SetAutoDeletedTime(int64_t autoDeletedTime) in SetAutoDeletedTime() argument 922 autoDeletedTime_ = autoDeletedTime; in SetAutoDeletedTime() 1124 WRITE_INT64_RETURN_FALSE_LOG(parcel, autoDeletedTime_, "autoDeletedTime"); in Marshalling() 1246 READ_INT64_RETURN_FALSE_LOG(parcel, autoDeletedTime_, "autoDeletedTime"); in ReadFromParcel()
|