OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:thresholdPercent
(Results
1 - 4
of
4
) sorted by null
/cts/tests/sensor/src/android/hardware/cts/helpers/sensorverification/
JitterVerification.java
81
int
thresholdPercent
= DEFAULTS.get(sensorType, -1);
82
if (
thresholdPercent
== -1) {
88
thresholdPercent
= THRESHOLD_PERCENT_FOR_HIFI_SENSORS;
92
long jitterThresholdNs = expectedPeriodNs *
thresholdPercent
* 2 / 100; // *2 is for +/-
/frameworks/wilhelm/src/android/
android_GenericPlayer.cpp
188
void GenericPlayer::setBufferingUpdateThreshold(int16_t
thresholdPercent
) {
189
SL_LOGV("GenericPlayer::setBufferingUpdateThreshold %d",
thresholdPercent
);
191
msg->setInt32(WHATPARAM_BUFFERING_UPDATETHRESHOLD_PERCENT, (int32_t)
thresholdPercent
);
506
int32_t
thresholdPercent
= 0;
507
if (msg->findInt32(WHATPARAM_BUFFERING_UPDATETHRESHOLD_PERCENT, &
thresholdPercent
)) {
509
mCacheFillNotifThreshold = (int16_t)
thresholdPercent
;
android_GenericPlayer.h
76
void setBufferingUpdateThreshold(int16_t
thresholdPercent
);
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
Avrcp.java
291
// Update the threshold if the
thresholdPercent
is valid
292
int
thresholdPercent
=
294
if (
thresholdPercent
>= 0 &&
thresholdPercent
<= 100) {
295
mAbsVolThreshold = (
thresholdPercent
* mAudioStreamMax) / 100;
[
all
...]
Completed in 1583 milliseconds