Searched refs:newLatency (Results 1 - 6 of 6) sorted by relevance

/device/google/contexthub/firmware/os/inc/
H A Dsensors.h134 uint64_t newLatency; member in struct:SensorRateChangeEvent
274 bool sensorRequestRateChange(uint32_t clientTid, uint32_t sensorHandle, uint32_t newRate, uint64_t newLatency);
H A DsyscallDo.h135 static inline bool eOsSensorRequestRateChange(uint32_t clientId, uint32_t sensorHandle, uint32_t newRate, uint64_t newLatency) argument
137 uint32_t newLatency_lo = newLatency;
138 uint32_t newLatency_hi = newLatency >> 32;
/device/google/contexthub/firmware/os/core/
H A Dsensors.c603 static bool sensorAmendRequestor(uint32_t sensorHandle, uint32_t clientTid, uint32_t newRate, uint64_t newLatency) argument
609 req->latency = newLatency;
670 bool sensorRequestRateChange(uint32_t unusedTid, uint32_t sensorHandle, uint32_t newRate, uint64_t newLatency) argument
694 newLatency = newLatency > samplingPeriod ? newLatency : samplingPeriod;
697 if (!sensorAmendRequestor(sensorHandle, clientTid, newRate, newLatency))
H A DosApi.c161 uint64_t newLatency = (((uint64_t)newLatency_hi) << 32) + newLatency_lo; local
163 *retValP = sensorRequestRateChange(0, sensorHandle, newRate, newLatency);
/device/google/contexthub/firmware/app/chre/common/
H A Dchre10_app.c219 if (msg->newLatency == SENSOR_LATENCY_NODATA)
222 change.status.latency = msg->newLatency;
H A Dchre_app.c219 if (msg->newLatency == SENSOR_LATENCY_NODATA)
222 change.status.latency = msg->newLatency;

Completed in 26 milliseconds