Home
last modified time | relevance | path

Searched refs:deliveryTime (Results 1 - 7 of 7) sorted by relevance

/base/notification/eventhandler/frameworks/eventhandler/src/
H A Devent_handler.cpp381 std::chrono::duration<double> deliveryTime = nowStart - event->GetSendTime(); in DeliveryTimeAction() local
382 std::string deliveryTimeCharacter = std::to_string((deliveryTime).count()); in DeliveryTimeAction()
385 "eventName: " + eventName + "," + "deliveryTime: " + deliveryTimeCharacter + "," + in DeliveryTimeAction()
/base/notification/distributed_notification_service/frameworks/cj/ffi/include/
H A Dnotification_utils.h182 int64_t deliveryTime; member
/base/notification/distributed_notification_service/frameworks/cj/ffi/src/
H A Dnotification_utils.cpp111 // deliveryTime?: int64_t in GetNotificationRequestByNumber()
112 int64_t deliveryTime = cjRequest.deliveryTime; in GetNotificationRequestByNumber() local
113 request.SetDeliveryTime(deliveryTime); in GetNotificationRequestByNumber()
957 // deliveryTime?: int32_t in SetNotificationRequestByNumber()
958 notificationRequest.deliveryTime = request->GetDeliveryTime(); in SetNotificationRequestByNumber()
/base/notification/distributed_notification_service/interfaces/inner_api/
H A Dnotification_request.h339 * @param deliveryTime Indicates the time in milliseconds.
341 void SetDeliveryTime(int64_t deliveryTime);
/base/location/frameworks/js/napi/notification/src/
H A Dnotification_napi_convert_request.cpp41 // deliveryTime?: number in GetNotificationRequestByNumber()
539 int64_t deliveryTime = 0; in GetNotificationDeliveryTime() local
541 NAPI_CALL(env, napi_has_named_property(env, value, "deliveryTime", &hasProperty)); in GetNotificationDeliveryTime()
543 napi_get_named_property(env, value, "deliveryTime", &result); in GetNotificationDeliveryTime()
549 napi_get_value_int64(env, result, &deliveryTime); in GetNotificationDeliveryTime()
550 request.SetDeliveryTime(deliveryTime); in GetNotificationDeliveryTime()
/base/notification/distributed_notification_service/frameworks/js/napi/src/
H A Dcommon_convert_request.cpp97 // deliveryTime?: number in SetNotificationRequestByNumber()
99 napi_set_named_property(env, result, "deliveryTime", value); in SetNotificationRequestByNumber()
563 // deliveryTime?: number in GetNotificationRequestByNumber()
1059 int64_t deliveryTime = 0; in GetNotificationDeliveryTime() local
1061 NAPI_CALL(env, napi_has_named_property(env, value, "deliveryTime", &hasProperty)); in GetNotificationDeliveryTime()
1063 napi_get_named_property(env, value, "deliveryTime", &result); in GetNotificationDeliveryTime()
1069 napi_get_value_int64(env, result, &deliveryTime); in GetNotificationDeliveryTime()
1070 request.SetDeliveryTime(deliveryTime); in GetNotificationDeliveryTime()
/base/notification/distributed_notification_service/frameworks/ans/src/
H A Dnotification_request.cpp170 void NotificationRequest::SetDeliveryTime(int64_t deliveryTime) in SetDeliveryTime() argument
172 deliveryTime_ = deliveryTime; in SetDeliveryTime()
749 ", createTime = " + std::to_string(createTime_) + ", deliveryTime = " + std::to_string(deliveryTime_) + in Dump()
809 jsonObject["deliveryTime"] = deliveryTime_; in ToJson()
2102 if (jsonObject.find("deliveryTime") != jsonEnd && jsonObject.at("deliveryTime").is_number_integer()) { in ConvertJsonToNum()
2103 target->deliveryTime_ = jsonObject.at("deliveryTime").get<int64_t>(); in ConvertJsonToNum()

Completed in 15 milliseconds