Home
last modified time | relevance | path

Searched refs:autoDeletedTime (Results 1 - 11 of 11) sorted by relevance

/base/notification/distributed_notification_service/services/ans/src/
H A Dreminder_data_manager_inner.cpp85 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 Dreminder_event_manager.cpp324 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 Dreminder_store_strategy.cpp101 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 Dreminder_common.cpp595 //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 Dnotification_utils.h184 int64_t autoDeletedTime; member
/base/notification/distributed_notification_service/frameworks/cj/ffi/src/
H A Dnotification_utils.cpp115 // 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 Dreminder_request.h832 * @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 Dreminder_data_manager.h242 void HandleAutoDeleteReminder(const int32_t notificationId, const int32_t uid, const int64_t autoDeletedTime);
/base/location/frameworks/js/napi/notification/src/
H A Dnotification_napi_convert_request.cpp45 // 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 Dcommon_convert_request.cpp101 // 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 Dreminder_request.cpp920 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()

Completed in 18 milliseconds