Home
last modified time | relevance | path

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

/ohos5.0/base/location/frameworks/location_common/common/source/
H A Drequest.cpp34 bestLocation_ = new (std::nothrow) Location(); in Request()
53 bestLocation_ = new (std::nothrow) Location(); in Request()
209 return bestLocation_; in GetBestLocation()
214 if (bestLocation_ == nullptr || location == nullptr) { in SetBestLocation()
217 bestLocation_->SetLatitude(location->GetLatitude()); in SetBestLocation()
218 bestLocation_->SetLongitude(location->GetLongitude()); in SetBestLocation()
219 bestLocation_->SetAltitude(location->GetAltitude()); in SetBestLocation()
220 bestLocation_->SetAccuracy(location->GetAccuracy()); in SetBestLocation()
221 bestLocation_->SetSpeed(location->GetSpeed()); in SetBestLocation()
222 bestLocation_->SetDirection(location->GetDirection()); in SetBestLocation()
[all …]
/ohos5.0/base/location/interfaces/inner_api/include/
H A Drequest.h85 sptr<Location> bestLocation_; variable