Lines Matching refs:mClient

325         LocationAPI* mClient;  in startBatchingCommand()  member
336 mClient(client), in startBatchingCommand()
346 if (!mAdapter.hasBatchingCallback(mClient)) { in startBatchingCommand()
357 mAdapter.startBatching(mClient, mSessionId, mBatchingOptions); in startBatchingCommand()
359 mAdapter.startTripBatchingMultiplex(mClient, mSessionId, mBatchingOptions); in startBatchingCommand()
361 mAdapter.reportResponse(mClient, LOCATION_ERROR_INVALID_PARAMETER, mSessionId); in startBatchingCommand()
418 LocationAPI* mClient; in updateBatchingOptionsCommand() member
429 mClient(client), in updateBatchingOptionsCommand()
438 if (!mAdapter.isBatchingSession(mClient, mSessionId)) { in updateBatchingOptionsCommand()
446 mAdapter.stopBatching(mClient, mSessionId, true, mBatchOptions); in updateBatchingOptionsCommand()
448 mAdapter.stopTripBatchingMultiplex(mClient, mSessionId, true, mBatchOptions); in updateBatchingOptionsCommand()
465 LocationAPI* mClient; in stopBatchingCommand() member
474 mClient(client), in stopBatchingCommand()
482 if (!mAdapter.isBatchingSession(mClient, mSessionId)) { in stopBatchingCommand()
487 mAdapter.stopTripBatchingMultiplex(mClient, mSessionId); in stopBatchingCommand()
489 mAdapter.stopBatching(mClient, mSessionId); in stopBatchingCommand()
545 LocationAPI* mClient; in getBatchedLocationsCommand() member
556 mClient(client), in getBatchedLocationsCommand()
565 if (!mAdapter.hasBatchingCallback(mClient)) { in getBatchedLocationsCommand()
567 } else if (!mAdapter.isBatchingSession(mClient, mSessionId)) { in getBatchedLocationsCommand()
575 mClient = mClient] (LocationError err) { in getBatchedLocationsCommand()
576 mAdapter.reportResponse(mClient, err, mSessionId); in getBatchedLocationsCommand()
581 mClient = mClient] (LocationError err) { in getBatchedLocationsCommand()
582 mAdapter.reportResponse(mClient, err, mSessionId); in getBatchedLocationsCommand()
586 mAdapter.reportResponse(mClient, err, mSessionId); in getBatchedLocationsCommand()