FP4: gps: Resolve unused parameter warnings
Change-Id: I0acef3da2c3567a28edd0a71dac89a5828f7725d
diff --git a/gps/android/2.1/Gnss.cpp b/gps/android/2.1/Gnss.cpp
index 37e1cc5..e24c81e 100644
--- a/gps/android/2.1/Gnss.cpp
+++ b/gps/android/2.1/Gnss.cpp
@@ -327,8 +327,8 @@
}
}
-Return<bool> Gnss::injectTime(int64_t timeMs, int64_t timeReferenceMs,
- int32_t uncertaintyMs) {
+Return<bool> Gnss::injectTime(int64_t timeMs __unused, int64_t timeReferenceMs __unused,
+ int32_t uncertaintyMs __unused) {
return true;
}
diff --git a/gps/android/2.1/GnssConfiguration.cpp b/gps/android/2.1/GnssConfiguration.cpp
index b6077ae..3e960b2 100644
--- a/gps/android/2.1/GnssConfiguration.cpp
+++ b/gps/android/2.1/GnssConfiguration.cpp
@@ -39,7 +39,7 @@
}
// Methods from ::android::hardware::gps::V1_0::IGnssConfiguration follow.
-Return<bool> GnssConfiguration::setSuplEs(bool enabled) {
+Return<bool> GnssConfiguration::setSuplEs(bool enabled __unused) {
// deprecated function. Must return false to pass VTS
return false;
}
diff --git a/gps/core/LocAdapterBase.cpp b/gps/core/LocAdapterBase.cpp
index 95f2728..a9d2487 100644
--- a/gps/core/LocAdapterBase.cpp
+++ b/gps/core/LocAdapterBase.cpp
@@ -88,8 +88,8 @@
const GpsLocationExtended& locationExtended,
enum loc_sess_status status,
LocPosTechMask loc_technology_mask,
- GnssDataNotification* pDataNotify,
- int msInWeek)
+ GnssDataNotification* pDataNotify __unused,
+ int msInWeek __unused)
{
if (mLocAdapterProxyBase != NULL) {
mLocAdapterProxyBase->reportPositionEvent((UlpLocation&)location,
@@ -162,7 +162,7 @@
bool LocAdapterBase::
requestNiNotifyEvent(const GnssNiNotification &/*notify*/,
const void* /*data*/,
- const LocInEmergency emergencyState)
+ const LocInEmergency /*emergencyState*/)
DEFAULT_IMPL(false)
void LocAdapterBase::
@@ -344,7 +344,7 @@
DEFAULT_IMPL()
void
-LocAdapterBase::stopClientSessions(LocationAPI* client)
+LocAdapterBase::stopClientSessions(LocationAPI* /*client*/)
DEFAULT_IMPL()
void
@@ -433,7 +433,7 @@
DEFAULT_IMPL()
bool LocAdapterBase::
- reportQwesCapabilities(const std::unordered_map<LocationQwesFeatureType, bool> &featureMap)
+ reportQwesCapabilities(const std::unordered_map<LocationQwesFeatureType, bool> &/*featureMap*/)
DEFAULT_IMPL(false)
} // namespace loc_core
diff --git a/gps/core/LocApiBase.cpp b/gps/core/LocApiBase.cpp
index 860da2e..b1d4b1b 100644
--- a/gps/core/LocApiBase.cpp
+++ b/gps/core/LocApiBase.cpp
@@ -900,33 +900,33 @@
DEFAULT_IMPL()
void LocApiBase::
- getRobustLocationConfig(uint32_t sessionId, LocApiResponse* /*adapterResponse*/)
+ getRobustLocationConfig(uint32_t /*sessionId*/, LocApiResponse* /*adapterResponse*/)
DEFAULT_IMPL()
void LocApiBase::
- configMinGpsWeek(uint16_t minGpsWeek,
+ configMinGpsWeek(uint16_t /*minGpsWeek*/,
LocApiResponse* /*adapterResponse*/)
DEFAULT_IMPL()
void LocApiBase::
- getMinGpsWeek(uint32_t sessionId, LocApiResponse* /*adapterResponse*/)
+ getMinGpsWeek(uint32_t /*sessionId*/, LocApiResponse* /*adapterResponse*/)
DEFAULT_IMPL()
LocationError LocApiBase::
- setParameterSync(const GnssConfig& gnssConfig)
+ setParameterSync(const GnssConfig& /*gnssConfig*/)
DEFAULT_IMPL(LOCATION_ERROR_SUCCESS)
void LocApiBase::
- getParameter(uint32_t sessionId, GnssConfigFlagsMask flags, LocApiResponse* /*adapterResponse*/)
+ getParameter(uint32_t /*sessionId*/, GnssConfigFlagsMask /*flags*/, LocApiResponse* /*adapterResponse*/)
DEFAULT_IMPL()
void LocApiBase::
- configConstellationMultiBand(const GnssSvTypeConfig& secondaryBandConfig,
+ configConstellationMultiBand(const GnssSvTypeConfig& /*secondaryBandConfig*/,
LocApiResponse* /*adapterResponse*/)
DEFAULT_IMPL()
void LocApiBase::
- getConstellationMultiBandConfig(uint32_t sessionId, LocApiResponse* /*adapterResponse*/)
+ getConstellationMultiBandConfig(uint32_t /*sessionId*/, LocApiResponse* /*adapterResponse*/)
DEFAULT_IMPL()
int64_t ElapsedRealtimeEstimator::getElapsedRealtimeEstimateNanos(int64_t curDataTimeNanos,
diff --git a/gps/core/LocApiBase.h b/gps/core/LocApiBase.h
index 121f795..b9c03a2 100644
--- a/gps/core/LocApiBase.h
+++ b/gps/core/LocApiBase.h
@@ -99,8 +99,8 @@
inline LocApiProxyBase() {}
inline virtual ~LocApiProxyBase() {}
inline virtual void* getSibling2() { return NULL; }
- inline virtual double getGloRfLoss(uint32_t left,
- uint32_t center, uint32_t right, uint8_t gloFrequency) { return 0.0; }
+ inline virtual double getGloRfLoss(uint32_t left __unused,
+ uint32_t center __unused, uint32_t right __unused, uint8_t gloFrequency __unused) { return 0.0; }
};
class LocApiBase {
diff --git a/gps/geofence/GeofenceAdapter.cpp b/gps/geofence/GeofenceAdapter.cpp
index 1aeea0a..2d9f5bd 100644
--- a/gps/geofence/GeofenceAdapter.cpp
+++ b/gps/geofence/GeofenceAdapter.cpp
@@ -167,7 +167,7 @@
if (LOCATION_ERROR_SUCCESS == err) {
if (true == object.paused) {
mLocApi->pauseGeofence(data.hwId, object.key.id,
- new LocApiResponse(*getContext(), [] (LocationError err ) {}));
+ new LocApiResponse(*getContext(), [] (LocationError err __unused) {}));
}
saveGeofenceItem(object.key.client, object.key.id, data.hwId, options, info);
}
@@ -245,7 +245,7 @@
mApi.addToCallQueue(new LocApiResponse(*mAdapter.getContext(),
[&mAdapter = mAdapter, mCount = mCount, mClient = mClient,
mOptions = mOptions, mInfos = mInfos, mIds = mIds, &mApi = mApi,
- errs, i] (LocationError err ) {
+ errs, i] (LocationError err __unused) {
mApi.addGeofence(mIds[i], mOptions[i], mInfos[i],
new LocApiResponseData<LocApiGeofenceData>(*mAdapter.getContext(),
[&mAdapter = mAdapter, mOptions = mOptions, mClient = mClient,
@@ -346,7 +346,7 @@
for (size_t i=0; i < mCount; ++i) {
mApi.addToCallQueue(new LocApiResponse(*mAdapter.getContext(),
[&mAdapter = mAdapter, mCount = mCount, mClient = mClient, mIds = mIds,
- &mApi = mApi, errs, i] (LocationError err ) {
+ &mApi = mApi, errs, i] (LocationError err __unused) {
uint32_t hwId = 0;
errs[i] = mAdapter.getHwIdFromClient(mClient, mIds[i], hwId);
if (LOCATION_ERROR_SUCCESS == errs[i]) {
@@ -422,7 +422,7 @@
for (size_t i=0; i < mCount; ++i) {
mApi.addToCallQueue(new LocApiResponse(*mAdapter.getContext(),
[&mAdapter = mAdapter, mCount = mCount, mClient = mClient, mIds = mIds,
- &mApi = mApi, errs, i] (LocationError err ) {
+ &mApi = mApi, errs, i] (LocationError err __unused) {
uint32_t hwId = 0;
errs[i] = mAdapter.getHwIdFromClient(mClient, mIds[i], hwId);
if (LOCATION_ERROR_SUCCESS == errs[i]) {
@@ -497,7 +497,7 @@
for (size_t i=0; i < mCount; ++i) {
mApi.addToCallQueue(new LocApiResponse(*mAdapter.getContext(),
[&mAdapter = mAdapter, mCount = mCount, mClient = mClient, mIds = mIds,
- &mApi = mApi, errs, i] (LocationError err ) {
+ &mApi = mApi, errs, i] (LocationError err __unused) {
uint32_t hwId = 0;
errs[i] = mAdapter.getHwIdFromClient(mClient, mIds[i], hwId);
if (LOCATION_ERROR_SUCCESS == errs[i]) {
@@ -580,7 +580,7 @@
} else {
mApi.addToCallQueue(new LocApiResponse(*mAdapter.getContext(),
[&mAdapter = mAdapter, mCount = mCount, mClient = mClient, mIds = mIds,
- &mApi = mApi, mOptions = mOptions, errs, i] (LocationError err ) {
+ &mApi = mApi, mOptions = mOptions, errs, i] (LocationError err __unused) {
uint32_t hwId = 0;
errs[i] = mAdapter.getHwIdFromClient(mClient, mIds[i], hwId);
if (LOCATION_ERROR_SUCCESS == errs[i]) {
diff --git a/gps/gnss/XtraSystemStatusObserver.cpp b/gps/gnss/XtraSystemStatusObserver.cpp
index d65622f..e04335a 100644
--- a/gps/gnss/XtraSystemStatusObserver.cpp
+++ b/gps/gnss/XtraSystemStatusObserver.cpp
@@ -65,8 +65,8 @@
inline XtraIpcListener(IOsObserver* observer, const MsgTask* msgTask,
XtraSystemStatusObserver& xsso) :
mSystemStatusObsrvr(observer), mMsgTask(msgTask), mXSSO(xsso) {}
- virtual void onReceive(const char* data, uint32_t length,
- const LocIpcRecver* recver) override {
+ virtual void onReceive(const char* data, uint32_t length __unused,
+ const LocIpcRecver* recver __unused) override {
#define STRNCMP(str, constStr) strncmp(str, constStr, sizeof(constStr)-1)
if (!STRNCMP(data, "ping")) {
LOC_LOGd("ping received");
diff --git a/gps/pla/android/loc_pla.h b/gps/pla/android/loc_pla.h
index 34cb591..9c2e7c1 100644
--- a/gps/pla/android/loc_pla.h
+++ b/gps/pla/android/loc_pla.h
@@ -85,7 +85,7 @@
}
/*API for boot kpi marker prints */
-inline int loc_boot_kpi_marker(const char * pFmt, ...)
+inline int loc_boot_kpi_marker(const char * pFmt __unused, ...)
{
return -1;
}
diff --git a/gps/utils/LocIpc.h b/gps/utils/LocIpc.h
index b2586e6..40ed5a3 100644
--- a/gps/utils/LocIpc.h
+++ b/gps/utils/LocIpc.h
@@ -82,7 +82,7 @@
}
virtual void onServiceStatusChange(int sericeId, int instanceId, ServiceStatus status,
const LocIpcSender& sender) = 0;
- inline virtual void onClientGone(int nodeId, int portId) {}
+ inline virtual void onClientGone(int nodeId __unused, int portId __unused) {}
inline const unordered_set<int>& getServicesToWatch() { return mServicesToWatch; }
};
@@ -166,10 +166,10 @@
inline bool sendData(const uint8_t data[], uint32_t length, int32_t msgId) const {
return isSendable() && (send(data, length, msgId) > 0);
}
- virtual unique_ptr<LocIpcRecver> getRecver(const shared_ptr<ILocIpcListener>& listener) {
+ virtual unique_ptr<LocIpcRecver> getRecver(const shared_ptr<ILocIpcListener>& listener __unused) {
return nullptr;
}
- inline virtual void copyDestAddrFrom(const LocIpcSender& otherSender) {}
+ inline virtual void copyDestAddrFrom(const LocIpcSender& otherSender __unused) {}
};
class LocIpcRecver {
diff --git a/gps/utils/loc_log.cpp b/gps/utils/loc_log.cpp
index 2110683..cf566f7 100644
--- a/gps/utils/loc_log.cpp
+++ b/gps/utils/loc_log.cpp
@@ -220,7 +220,7 @@
N/A
===========================================================================*/
-void log_buffer_insert(char *str, unsigned long buf_size, int level)
+void log_buffer_insert(char *str, unsigned long buf_size __unused, int level)
{
timespec tv;
clock_gettime(CLOCK_BOOTTIME, &tv);