Home
last modified time | relevance | path

Searched refs:isUnremovable (Results 1 - 6 of 6) sorted by relevance

/base/notification/distributed_notification_service/frameworks/cj/ffi/include/
H A Dnotification_utils.h181 bool isUnremovable; member
/base/notification/distributed_notification_service/frameworks/cj/ffi/src/
H A Dnotification_utils.cpp169 // isUnremovable?: boolean in GetNotificationRequestByBool()
170 bool isUnremovable = cjRequest.isUnremovable; in GetNotificationRequestByBool() local
171 request.SetUnremovable(isUnremovable); in GetNotificationRequestByBool()
988 // isUnremovable?: boolean in SetNotificationRequestByBool()
989 notificationRequest.isUnremovable = request->IsUnremovable(); in SetNotificationRequestByBool()
/base/notification/distributed_notification_service/interfaces/inner_api/
H A Dnotification_request.h225 * @param isUnremovable Specifies whether this notification is unremovable.
227 void SetUnremovable(bool isUnremovable);
/base/location/frameworks/js/napi/notification/src/
H A Dnotification_napi_convert_request.cpp104 // isUnremovable?: boolean in GetNotificationRequestByBool()
514 bool isUnremovable = false; in GetNotificationIsUnremovable() local
516 NAPI_CALL(env, napi_has_named_property(env, value, "isUnremovable", &hasProperty)); in GetNotificationIsUnremovable()
518 napi_get_named_property(env, value, "isUnremovable", &result); in GetNotificationIsUnremovable()
524 napi_get_value_bool(env, result, &isUnremovable); in GetNotificationIsUnremovable()
525 request.SetUnremovable(isUnremovable); in GetNotificationIsUnremovable()
/base/notification/distributed_notification_service/frameworks/js/napi/src/
H A Dcommon_convert_request.cpp148 // isUnremovable?: boolean in SetNotificationRequestByBool()
150 napi_set_named_property(env, result, "isUnremovable", value); in SetNotificationRequestByBool()
630 // isUnremovable?: boolean in GetNotificationRequestByBool()
1034 bool isUnremovable = false; in GetNotificationIsUnremovable() local
1036 NAPI_CALL(env, napi_has_named_property(env, value, "isUnremovable", &hasProperty)); in GetNotificationIsUnremovable()
1038 napi_get_named_property(env, value, "isUnremovable", &result); in GetNotificationIsUnremovable()
1044 napi_get_value_bool(env, result, &isUnremovable); in GetNotificationIsUnremovable()
1045 request.SetUnremovable(isUnremovable); in GetNotificationIsUnremovable()
/base/notification/distributed_notification_service/frameworks/ans/src/
H A Dnotification_request.cpp95 void NotificationRequest::SetUnremovable(bool isUnremovable) in SetUnremovable() argument
97 unremovable_ = isUnremovable; in SetUnremovable()
830 jsonObject["isUnremovable"] = unremovable_; in ToJson()
2234 if (jsonObject.find("isUnremovable") != jsonEnd && jsonObject.at("isUnremovable").is_boolean()) { in ConvertJsonToBool()
2235 target->unremovable_ = jsonObject.at("isUnremovable").get<bool>(); in ConvertJsonToBool()

Completed in 14 milliseconds