sdm660-common: gps: Resolve unused parameter warnings
Change-Id: I0acef3da2c3567a28edd0a71dac89a5828f7725d
This commit is contained in:
parent
b4f14f3185
commit
d3c0533d4b
5 changed files with 14 additions and 14 deletions
|
@ -39,7 +39,7 @@ GnssConfiguration::GnssConfiguration(Gnss* gnss) : mGnss(gnss) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Methods from ::android::hardware::gps::V1_0::IGnssConfiguration follow.
|
// Methods from ::android::hardware::gps::V1_0::IGnssConfiguration follow.
|
||||||
Return<bool> GnssConfiguration::setSuplEs(bool enabled) {
|
Return<bool> GnssConfiguration::setSuplEs(bool /*enabled*/) {
|
||||||
// deprecated function. Must return false to pass VTS
|
// deprecated function. Must return false to pass VTS
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -88,8 +88,8 @@ void LocAdapterBase::
|
||||||
const GpsLocationExtended& locationExtended,
|
const GpsLocationExtended& locationExtended,
|
||||||
enum loc_sess_status status,
|
enum loc_sess_status status,
|
||||||
LocPosTechMask loc_technology_mask,
|
LocPosTechMask loc_technology_mask,
|
||||||
GnssDataNotification* pDataNotify,
|
GnssDataNotification* /*pDataNotify*/,
|
||||||
int msInWeek)
|
int /*msInWeek*/)
|
||||||
{
|
{
|
||||||
if (mLocAdapterProxyBase != NULL) {
|
if (mLocAdapterProxyBase != NULL) {
|
||||||
mLocAdapterProxyBase->reportPositionEvent((UlpLocation&)location,
|
mLocAdapterProxyBase->reportPositionEvent((UlpLocation&)location,
|
||||||
|
@ -162,7 +162,7 @@ DEFAULT_IMPL(false)
|
||||||
bool LocAdapterBase::
|
bool LocAdapterBase::
|
||||||
requestNiNotifyEvent(const GnssNiNotification &/*notify*/,
|
requestNiNotifyEvent(const GnssNiNotification &/*notify*/,
|
||||||
const void* /*data*/,
|
const void* /*data*/,
|
||||||
const LocInEmergency emergencyState)
|
const LocInEmergency /*emergencyState*/)
|
||||||
DEFAULT_IMPL(false)
|
DEFAULT_IMPL(false)
|
||||||
|
|
||||||
void LocAdapterBase::
|
void LocAdapterBase::
|
||||||
|
@ -335,7 +335,7 @@ LocAdapterBase::updateClientsEventMask()
|
||||||
DEFAULT_IMPL()
|
DEFAULT_IMPL()
|
||||||
|
|
||||||
void
|
void
|
||||||
LocAdapterBase::stopClientSessions(LocationAPI* client)
|
LocAdapterBase::stopClientSessions(LocationAPI* /*client*/)
|
||||||
DEFAULT_IMPL()
|
DEFAULT_IMPL()
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
@ -167,7 +167,7 @@ GeofenceAdapter::restartGeofences()
|
||||||
if (LOCATION_ERROR_SUCCESS == err) {
|
if (LOCATION_ERROR_SUCCESS == err) {
|
||||||
if (true == object.paused) {
|
if (true == object.paused) {
|
||||||
mLocApi->pauseGeofence(data.hwId, object.key.id,
|
mLocApi->pauseGeofence(data.hwId, object.key.id,
|
||||||
new LocApiResponse(*getContext(), [] (LocationError err ) {}));
|
new LocApiResponse(*getContext(), [] (LocationError /*err*/) {}));
|
||||||
}
|
}
|
||||||
saveGeofenceItem(object.key.client, object.key.id, data.hwId, options, info);
|
saveGeofenceItem(object.key.client, object.key.id, data.hwId, options, info);
|
||||||
}
|
}
|
||||||
|
@ -245,7 +245,7 @@ GeofenceAdapter::addGeofencesCommand(LocationAPI* client, size_t count, Geofence
|
||||||
mApi.addToCallQueue(new LocApiResponse(*mAdapter.getContext(),
|
mApi.addToCallQueue(new LocApiResponse(*mAdapter.getContext(),
|
||||||
[&mAdapter = mAdapter, mCount = mCount, mClient = mClient,
|
[&mAdapter = mAdapter, mCount = mCount, mClient = mClient,
|
||||||
mOptions = mOptions, mInfos = mInfos, mIds = mIds, &mApi = mApi,
|
mOptions = mOptions, mInfos = mInfos, mIds = mIds, &mApi = mApi,
|
||||||
errs, i] (LocationError err ) {
|
errs, i] (LocationError /*err*/) {
|
||||||
mApi.addGeofence(mIds[i], mOptions[i], mInfos[i],
|
mApi.addGeofence(mIds[i], mOptions[i], mInfos[i],
|
||||||
new LocApiResponseData<LocApiGeofenceData>(*mAdapter.getContext(),
|
new LocApiResponseData<LocApiGeofenceData>(*mAdapter.getContext(),
|
||||||
[&mAdapter = mAdapter, mOptions = mOptions, mClient = mClient,
|
[&mAdapter = mAdapter, mOptions = mOptions, mClient = mClient,
|
||||||
|
@ -346,7 +346,7 @@ GeofenceAdapter::removeGeofencesCommand(LocationAPI* client, size_t count, uint3
|
||||||
for (size_t i=0; i < mCount; ++i) {
|
for (size_t i=0; i < mCount; ++i) {
|
||||||
mApi.addToCallQueue(new LocApiResponse(*mAdapter.getContext(),
|
mApi.addToCallQueue(new LocApiResponse(*mAdapter.getContext(),
|
||||||
[&mAdapter = mAdapter, mCount = mCount, mClient = mClient, mIds = mIds,
|
[&mAdapter = mAdapter, mCount = mCount, mClient = mClient, mIds = mIds,
|
||||||
&mApi = mApi, errs, i] (LocationError err ) {
|
&mApi = mApi, errs, i] (LocationError /*err*/) {
|
||||||
uint32_t hwId = 0;
|
uint32_t hwId = 0;
|
||||||
errs[i] = mAdapter.getHwIdFromClient(mClient, mIds[i], hwId);
|
errs[i] = mAdapter.getHwIdFromClient(mClient, mIds[i], hwId);
|
||||||
if (LOCATION_ERROR_SUCCESS == errs[i]) {
|
if (LOCATION_ERROR_SUCCESS == errs[i]) {
|
||||||
|
@ -422,7 +422,7 @@ GeofenceAdapter::pauseGeofencesCommand(LocationAPI* client, size_t count, uint32
|
||||||
for (size_t i=0; i < mCount; ++i) {
|
for (size_t i=0; i < mCount; ++i) {
|
||||||
mApi.addToCallQueue(new LocApiResponse(*mAdapter.getContext(),
|
mApi.addToCallQueue(new LocApiResponse(*mAdapter.getContext(),
|
||||||
[&mAdapter = mAdapter, mCount = mCount, mClient = mClient, mIds = mIds,
|
[&mAdapter = mAdapter, mCount = mCount, mClient = mClient, mIds = mIds,
|
||||||
&mApi = mApi, errs, i] (LocationError err ) {
|
&mApi = mApi, errs, i] (LocationError /*err*/) {
|
||||||
uint32_t hwId = 0;
|
uint32_t hwId = 0;
|
||||||
errs[i] = mAdapter.getHwIdFromClient(mClient, mIds[i], hwId);
|
errs[i] = mAdapter.getHwIdFromClient(mClient, mIds[i], hwId);
|
||||||
if (LOCATION_ERROR_SUCCESS == errs[i]) {
|
if (LOCATION_ERROR_SUCCESS == errs[i]) {
|
||||||
|
@ -497,7 +497,7 @@ GeofenceAdapter::resumeGeofencesCommand(LocationAPI* client, size_t count, uint3
|
||||||
for (size_t i=0; i < mCount; ++i) {
|
for (size_t i=0; i < mCount; ++i) {
|
||||||
mApi.addToCallQueue(new LocApiResponse(*mAdapter.getContext(),
|
mApi.addToCallQueue(new LocApiResponse(*mAdapter.getContext(),
|
||||||
[&mAdapter = mAdapter, mCount = mCount, mClient = mClient, mIds = mIds,
|
[&mAdapter = mAdapter, mCount = mCount, mClient = mClient, mIds = mIds,
|
||||||
&mApi = mApi, errs, i] (LocationError err ) {
|
&mApi = mApi, errs, i] (LocationError /*err*/) {
|
||||||
uint32_t hwId = 0;
|
uint32_t hwId = 0;
|
||||||
errs[i] = mAdapter.getHwIdFromClient(mClient, mIds[i], hwId);
|
errs[i] = mAdapter.getHwIdFromClient(mClient, mIds[i], hwId);
|
||||||
if (LOCATION_ERROR_SUCCESS == errs[i]) {
|
if (LOCATION_ERROR_SUCCESS == errs[i]) {
|
||||||
|
@ -580,7 +580,7 @@ GeofenceAdapter::modifyGeofencesCommand(LocationAPI* client, size_t count, uint3
|
||||||
} else {
|
} else {
|
||||||
mApi.addToCallQueue(new LocApiResponse(*mAdapter.getContext(),
|
mApi.addToCallQueue(new LocApiResponse(*mAdapter.getContext(),
|
||||||
[&mAdapter = mAdapter, mCount = mCount, mClient = mClient, mIds = mIds,
|
[&mAdapter = mAdapter, mCount = mCount, mClient = mClient, mIds = mIds,
|
||||||
&mApi = mApi, mOptions = mOptions, errs, i] (LocationError err ) {
|
&mApi = mApi, mOptions = mOptions, errs, i] (LocationError /*err*/) {
|
||||||
uint32_t hwId = 0;
|
uint32_t hwId = 0;
|
||||||
errs[i] = mAdapter.getHwIdFromClient(mClient, mIds[i], hwId);
|
errs[i] = mAdapter.getHwIdFromClient(mClient, mIds[i], hwId);
|
||||||
if (LOCATION_ERROR_SUCCESS == errs[i]) {
|
if (LOCATION_ERROR_SUCCESS == errs[i]) {
|
||||||
|
|
|
@ -65,8 +65,8 @@ public:
|
||||||
inline XtraIpcListener(IOsObserver* observer, const MsgTask* msgTask,
|
inline XtraIpcListener(IOsObserver* observer, const MsgTask* msgTask,
|
||||||
XtraSystemStatusObserver& xsso) :
|
XtraSystemStatusObserver& xsso) :
|
||||||
mSystemStatusObsrvr(observer), mMsgTask(msgTask), mXSSO(xsso) {}
|
mSystemStatusObsrvr(observer), mMsgTask(msgTask), mXSSO(xsso) {}
|
||||||
virtual void onReceive(const char* data, uint32_t length,
|
virtual void onReceive(const char* data, uint32_t /*length*/,
|
||||||
const LocIpcRecver* recver) override {
|
const LocIpcRecver* /*recver*/) override {
|
||||||
#define STRNCMP(str, constStr) strncmp(str, constStr, sizeof(constStr)-1)
|
#define STRNCMP(str, constStr) strncmp(str, constStr, sizeof(constStr)-1)
|
||||||
if (!STRNCMP(data, "ping")) {
|
if (!STRNCMP(data, "ping")) {
|
||||||
LOC_LOGd("ping received");
|
LOC_LOGd("ping received");
|
||||||
|
|
|
@ -132,7 +132,7 @@ public:
|
||||||
inline bool sendData(const uint8_t data[], uint32_t length, int32_t msgId) const {
|
inline bool sendData(const uint8_t data[], uint32_t length, int32_t msgId) const {
|
||||||
return isSendable() && (send(data, length, msgId) > 0);
|
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*/) {
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue