Home
last modified time | relevance | path

Searched refs:svNotify (Results 1 – 7 of 7) sorted by relevance

/hardware/qcom/gps/msm8998/core/
DLocApiBase.cpp264 void LocApiBase::reportSv(GnssSvNotification& svNotify) in reportSv() argument
273 svNotify.count); in reportSv()
274 for (int i = 0; i < svNotify.count && i < LOC_GNSS_MAX_SVS; i++) { in reportSv()
275 if (svNotify.gnssSvs[i].type > in reportSv()
277 svNotify.gnssSvs[i].type = GNSS_SV_TYPE_UNKNOWN; in reportSv()
282 constellationString[svNotify.gnssSvs[i].type], in reportSv()
283 svNotify.gnssSvs[i].svId, in reportSv()
284 svNotify.gnssSvs[i].cN0Dbhz, in reportSv()
285 svNotify.gnssSvs[i].elevation, in reportSv()
286 svNotify.gnssSvs[i].azimuth, in reportSv()
[all …]
DUlpProxyBase.h65 inline virtual bool reportSv(const GnssSvNotification& svNotify) { in reportSv() argument
66 (void)svNotify; in reportSv()
DLocAdapterBase.cpp94 reportSvEvent(const GnssSvNotification& svNotify, bool fromUlp)
DLocAdapterBase.h135 virtual void reportSvEvent(const GnssSvNotification& svNotify, bool fromUlp=false);
DLocApiBase.h117 void reportSv(GnssSvNotification& svNotify);
/hardware/qcom/gps/msm8998/gnss/
DGnssAdapter.h211 virtual void reportSvEvent(const GnssSvNotification& svNotify, bool fromUlp=false);
229 void reportSv(GnssSvNotification& svNotify);
236 void generateNmea(const GnssSvNotification& svNotify);
237 void generateNmeaGSV(const GnssSvNotification& svNotify,
DGnssAdapter.cpp1867 GnssAdapter::reportSvEvent(const GnssSvNotification& svNotify, in reportSvEvent() argument
1874 if (mUlpProxy->reportSv(svNotify)) { in reportSvEvent()
1883 const GnssSvNotification& svNotify) : in reportSvEvent()
1886 mSvNotify(svNotify) {} in reportSvEvent()
1892 sendMsg(new MsgReportSv(*this, svNotify)); in reportSvEvent()
1896 GnssAdapter::reportSv(GnssSvNotification& svNotify) in reportSv() argument
1899 int numSv = svNotify.count; in reportSv()
1904 gnssSvId = svNotify.gnssSvs[i].svId; in reportSv()
1922 svNotify.gnssSvs[i].gnssSvOptionsMask |= GNSS_SV_OPTIONS_USED_IN_FIX_BIT; in reportSv()
1924 svNotify.gnssSvs[i].gnssSvOptionsMask &= ~GNSS_SV_OPTIONS_USED_IN_FIX_BIT; in reportSv()
[all …]