Lines Matching refs:mClient
324 LocationAPI* mClient; in startBatchingCommand() member
335 mClient(client), in startBatchingCommand()
345 if (!mAdapter.hasBatchingCallback(mClient)) { in startBatchingCommand()
356 mAdapter.startBatching(mClient, mSessionId, mBatchingOptions); in startBatchingCommand()
358 mAdapter.startTripBatchingMultiplex(mClient, mSessionId, mBatchingOptions); in startBatchingCommand()
360 mAdapter.reportResponse(mClient, LOCATION_ERROR_INVALID_PARAMETER, mSessionId); in startBatchingCommand()
417 LocationAPI* mClient; in updateBatchingOptionsCommand() member
428 mClient(client), in updateBatchingOptionsCommand()
437 if (!mAdapter.isBatchingSession(mClient, mSessionId)) { in updateBatchingOptionsCommand()
445 mAdapter.stopBatching(mClient, mSessionId, true, mBatchOptions); in updateBatchingOptionsCommand()
447 mAdapter.stopTripBatchingMultiplex(mClient, mSessionId, true, mBatchOptions); in updateBatchingOptionsCommand()
464 LocationAPI* mClient; in stopBatchingCommand() member
473 mClient(client), in stopBatchingCommand()
481 if (!mAdapter.isBatchingSession(mClient, mSessionId)) { in stopBatchingCommand()
486 mAdapter.stopTripBatchingMultiplex(mClient, mSessionId); in stopBatchingCommand()
488 mAdapter.stopBatching(mClient, mSessionId); in stopBatchingCommand()
544 LocationAPI* mClient; in getBatchedLocationsCommand() member
555 mClient(client), in getBatchedLocationsCommand()
564 if (!mAdapter.hasBatchingCallback(mClient)) { in getBatchedLocationsCommand()
566 } else if (!mAdapter.isBatchingSession(mClient, mSessionId)) { in getBatchedLocationsCommand()
574 mClient = mClient] (LocationError err) { in getBatchedLocationsCommand()
575 mAdapter.reportResponse(mClient, err, mSessionId); in getBatchedLocationsCommand()
580 mClient = mClient] (LocationError err) { in getBatchedLocationsCommand()
581 mAdapter.reportResponse(mClient, err, mSessionId); in getBatchedLocationsCommand()
585 mAdapter.reportResponse(mClient, err, mSessionId); in getBatchedLocationsCommand()