HomeSort by relevance Sort by last modified time
    Searched refs:mTBatch (Results 1 - 2 of 2) sorted by null

  /frameworks/native/services/sensorservice/
SensorDevice.h 117 nsecs_t mTSample, mTBatch;
118 BatchParams() : mTSample(INT64_MAX), mTBatch(INT64_MAX) {}
119 BatchParams(nsecs_t tSample, nsecs_t tBatch): mTSample(tSample), mTBatch(tBatch) {}
121 return !(mTSample == other.mTSample && mTBatch == other.mTBatch);
124 // The update mTBatch will be the min of original mTBatch and the apparent batch period
125 // of the other. the apparent batch is the maximum of mTBatch and mTSample,
128 mTBatch = std::min(mTBatch, std::max(other.mTBatch, other.mTSample))
    [all...]
SensorDevice.cpp 154 result.appendFormat("%.1f%s", params.mTBatch / 1e6f,
157 result.appendFormat("}, selected = %.2f ms\n", info.bestBatchParams.mTBatch / 1e6f);
287 info.bestBatchParams.mTSample, info.bestBatchParams.mTBatch);
289 handle, info.bestBatchParams.mTSample, info.bestBatchParams.mTBatch));
359 prevBestBatchParams.mTBatch, info.bestBatchParams.mTBatch);
365 info.bestBatchParams.mTSample, info.bestBatchParams.mTBatch);
368 handle, info.bestBatchParams.mTSample, info.bestBatchParams.mTBatch)));
372 info.bestBatchParams.mTBatch, strerror(-err));
420 info.bestBatchParams.mTBatch)));
    [all...]

Completed in 60 milliseconds