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

  /device/google/contexthub/firmware/os/inc/
sensors.h 134 uint64_t newLatency;
274 bool sensorRequestRateChange(uint32_t clientTid, uint32_t sensorHandle, uint32_t newRate, uint64_t newLatency);
syscallDo.h 135 static inline bool eOsSensorRequestRateChange(uint32_t clientId, uint32_t sensorHandle, uint32_t newRate, uint64_t newLatency)
137 uint32_t newLatency_lo = newLatency;
138 uint32_t newLatency_hi = newLatency >> 32;
  /device/google/contexthub/firmware/os/core/
sensors.c 603 static bool sensorAmendRequestor(uint32_t sensorHandle, uint32_t clientTid, uint32_t newRate, uint64_t newLatency)
609 req->latency = newLatency;
670 bool sensorRequestRateChange(uint32_t unusedTid, uint32_t sensorHandle, uint32_t newRate, uint64_t newLatency)
694 newLatency = newLatency > samplingPeriod ? newLatency : samplingPeriod;
697 if (!sensorAmendRequestor(sensorHandle, clientTid, newRate, newLatency))
osApi.c 161 uint64_t newLatency = (((uint64_t)newLatency_hi) << 32) + newLatency_lo;
163 *retValP = sensorRequestRateChange(0, sensorHandle, newRate, newLatency);
  /device/google/contexthub/firmware/app/chre/common/
chre10_app.c 219 if (msg->newLatency == SENSOR_LATENCY_NODATA)
222 change.status.latency = msg->newLatency;
chre_app.c 219 if (msg->newLatency == SENSOR_LATENCY_NODATA)
222 change.status.latency = msg->newLatency;
  /external/webrtc/webrtc/modules/audio_device/linux/
audio_device_pulse_linux.cc     [all...]

Completed in 224 milliseconds