Home
last modified time | relevance | path

Searched refs:locationSourceType (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/docs/zh-cn/application-dev/reference/apis-location-kit/
H A D_location___basic_info.md32 | [Location_SourceType](_location.md#location_sourcetype) [locationSourceType](#locationsourcetype)…
92 ### locationSourceType subsection
95 Location_SourceType Location_BasicInfo::locationSourceType
/ohos5.0/base/location/frameworks/js/napi/source/
H A Dlocation_napi_entry.cpp196 napi_value locationSourceType = nullptr; in LocationSourceTypeConstructor() local
197 NAPI_CALL(env, napi_create_object(env, &locationSourceType)); in LocationSourceTypeConstructor()
198 SetEnumPropertyByInteger(env, locationSourceType, LocationSourceType::GNSS_TYPE, "GNSS"); in LocationSourceTypeConstructor()
199 SetEnumPropertyByInteger(env, locationSourceType, LocationSourceType::NETWORK_TYPE, "NETWORK"); in LocationSourceTypeConstructor()
200 SetEnumPropertyByInteger(env, locationSourceType, LocationSourceType::INDOOR_TYPE, "INDOOR"); in LocationSourceTypeConstructor()
201 SetEnumPropertyByInteger(env, locationSourceType, LocationSourceType::RTK_TYPE, "RTK"); in LocationSourceTypeConstructor()
202 return locationSourceType; in LocationSourceTypeConstructor()
/ohos5.0/docs/en/application-dev/reference/apis-location-kit/
H A D_location___basic_info.md32 | [Location_SourceType](_location.md#location_sourcetype)[locationSourceType](#locationsourcetype) …
92 ### locationSourceType subsection
95 Location_SourceType Location_BasicInfo::locationSourceType
/ohos5.0/base/location/interfaces/inner_api/include/
H A Dlocation.h221 inline void SetLocationSourceType(int32_t locationSourceType) in SetLocationSourceType() argument
223 locationSourceType_ = locationSourceType; in SetLocationSourceType()
/ohos5.0/base/location/frameworks/native/location_ndk/include/
H A Dlocator_c_impl.h46 Location_SourceType locationSourceType; member
/ohos5.0/base/location/interfaces/c_api/include/
H A Doh_location_type.h232 Location_SourceType locationSourceType; member
/ohos5.0/base/location/frameworks/native/location_ndk/source/
H A Dlocator_c_impl.cpp123 location_Basic.locationSourceType = location->locationSourceType; in OH_LocationInfo_GetBasicInfo()
H A Dlocation_info_callback_host.cpp80 location_info.locationSourceType = (Location_SourceType)location->GetLocationSourceType(); in OnLocationReport()