Home
last modified time | relevance | path

Searched refs:notificationRequestList_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/base/location/frameworks/native/geofence_sdk/source/
H A Dgeofence_request.cpp105 return notificationRequestList_; in GetNotificationRequestList()
111 notificationRequestList_.push_back(request); in SetNotificationRequest()
118 notificationRequestList_.push_back(*it); in SetNotificationRequestList()
209 notificationRequestList_.push_back(*request); in ReadFromParcel()
242 if (notificationRequestList_.size() > MAX_NOTIFICATION_REQUEST_LIST_SIZE) { in Marshalling()
246 parcel.WriteInt32(notificationRequestList_.size()); in Marshalling()
247 for (size_t i = 0; i < notificationRequestList_.size(); i++) { in Marshalling()
248 notificationRequestList_[i].Marshalling(parcel); in Marshalling()
/ohos5.0/base/location/interfaces/inner_api/include/
H A Dgeofence_request.h101 std::vector<OHOS::Notification::NotificationRequest> notificationRequestList_; variable