Searched refs:svNotify (Results 1 – 7 of 7) sorted by relevance
/hardware/qcom/gps/msm8998/core/ |
D | LocApiBase.cpp | 264 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 …]
|
D | UlpProxyBase.h | 65 inline virtual bool reportSv(const GnssSvNotification& svNotify) { in reportSv() argument 66 (void)svNotify; in reportSv()
|
D | LocAdapterBase.cpp | 94 reportSvEvent(const GnssSvNotification& svNotify, bool fromUlp)
|
D | LocAdapterBase.h | 135 virtual void reportSvEvent(const GnssSvNotification& svNotify, bool fromUlp=false);
|
D | LocApiBase.h | 117 void reportSv(GnssSvNotification& svNotify);
|
/hardware/qcom/gps/msm8998/gnss/ |
D | GnssAdapter.h | 211 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,
|
D | GnssAdapter.cpp | 1867 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 …]
|