/aosp12/system/chre/core/ |
H A D | sensor_request.cc | 51 mLatency(latency), in SensorRequest() 60 mLatency = std::min(latency, Nanoseconds(kMaxIntervalLatencyNs)); in SensorRequest() 66 mLatency == request.mLatency && in isEquivalentTo() 72 mLatency == request.mLatency && in onlyBiasRequestUpdated() 91 Nanoseconds latency = request.mLatency; in mergeWith() 92 if (latency < mLatency) { in mergeWith() 93 mLatency = latency; in mergeWith() 102 if (latency != mLatency) { in mergeWith() 103 mLatency = latency; in mergeWith()
|
/aosp12/frameworks/base/core/java/android/speech/tts/ |
H A D | Voice.java | 67 private final int mLatency; field in Voice 80 this.mLatency = latency; in Voice() 89 this.mLatency = in.readInt(); in Voice() 100 dest.writeInt(mLatency); in writeToParcel() 151 return mLatency; in getLatency() 192 .append(", latency: ").append(mLatency) in toString() 203 result = prime * result + mLatency; in hashCode() 230 if (mLatency != other.mLatency) { in equals()
|
/aosp12/frameworks/base/services/core/java/com/android/server/biometrics/sensors/face/ |
H A D | UsageStats.java | 39 private long mLatency; field in UsageStats.AuthenticationEvent 50 mLatency = latency; in AuthenticationEvent() 59 + "\tLatency: " + mLatency in toString() 94 mAcceptLatency += event.mLatency; in addEvent() 97 mRejectLatency += event.mLatency; in addEvent() 100 mErrorLatency.put(event.mError, mErrorLatency.get(event.mError, 0L) + event.mLatency); in addEvent()
|
/aosp12/frameworks/base/core/java/android/bluetooth/ |
H A D | BluetoothHidDeviceAppQosSettings.java | 36 private final int mLatency; field in BluetoothHidDeviceAppQosSettings 68 mLatency = latency; in BluetoothHidDeviceAppQosSettings() 89 return mLatency; in getLatency() 128 out.writeInt(mLatency); in writeToParcel()
|
/aosp12/system/chre/core/include/chre/core/ |
H A D | sensor_request.h | 109 mLatency = latency; in setLatency() 117 return mLatency; in getLatency() 156 Nanoseconds mLatency; variable
|
/aosp12/hardware/qcom/audio/legacy/alsa_sound/ |
H A D | AudioPolicyManagerALSA.cpp | 116 delayMs = hwOutputDesc->mLatency*2; in setPhoneState() 124 if (delayMs < desc->mLatency*2) { in setPhoneState() 125 delayMs = desc->mLatency*2; in setPhoneState()
|
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/vibrator/ |
H A D | FakeVibratorControllerProvider.java | 54 private long mLatency; field in FakeVibratorControllerProvider 178 if (mLatency > 0) { in applyLatency() 179 Thread.sleep(mLatency); in applyLatency() 218 mLatency = millis; in setLatency()
|
/aosp12/frameworks/av/media/libaudioclient/include/media/ |
H A D | AudioIoDescriptor.h | 41 mFrameCount(0), mFrameCountHAL(0), mLatency(0), mPortId(AUDIO_PORT_HANDLE_NONE) in AudioIoDescriptor() 69 uint32_t mLatency; // only valid for output variable
|
H A D | AudioRecord.h | 258 uint32_t latency() const { return mLatency; } in latency() 717 uint32_t mLatency; // in ms variable
|
H A D | AudioTrack.h | 1193 uint32_t mLatency; // in ms variable
|
/aosp12/frameworks/av/services/audiopolicy/common/managerdefinitions/src/ |
H A D | AudioOutputDescriptor.cpp | 287 mProfile(profile), mIoHandle(AUDIO_IO_HANDLE_NONE), mLatency(0), in SwAudioOutputDescriptor() 299 dst->appendFormat(" Latency: %d\n", mLatency); in dump() 383 return (mOutput1->mLatency > mOutput2->mLatency) ? mOutput1->mLatency : mOutput2->mLatency; in latency() 385 return mLatency; in latency() 562 &mLatency, in open() 668 mLatency = output2->mLatency; in openDuplicating()
|
/aosp12/frameworks/av/media/libeffects/visualizer/ |
H A D | EffectVisualizer.cpp | 96 uint32_t mLatency; member 133 pContext->mLatency = 0; in Visualizer_reset() 613 pContext->mLatency = latency; in Visualizer_command() 649 int32_t latencyMs = pContext->mLatency; in Visualizer_command()
|
/aosp12/hardware/libhardware_legacy/audio/ |
H A D | AudioDumpInterface.h | 68 uint32_t mLatency; // variable
|
H A D | AudioDumpInterface.cpp | 266 mSampleRate(sampleRate), mFormat(format), mChannels(channels), mLatency(0), mDevice(devices), in AudioStreamOutDump()
|
/aosp12/frameworks/av/media/libaudioclient/ |
H A D | AudioRecord.cpp | 88 mMetricsItem->setInt32(MM_PREFIX "latency", (int32_t)record->mLatency); // bad estimate. in gather() 389 mLatency = (1000LL * mFrameCount) / mSampleRate; in set() 729 mInput, mLatency, mSelectedDeviceId, mRoutedDeviceId); in dump()
|
H A D | AudioTrack.cpp | 1691 return mLatency; in latency() 1704 mLatency = mAfLatency + (1000LL * mFrameCount) / mSampleRate; in updateLatency_l() 1835 mLatency = mAfLatency + (1000LL * mFrameCount) / mSampleRate; in createTrack_l() 3410 mLatency, mSelectedDeviceId, mRoutedDeviceId); in dump()
|
H A D | AidlConversion.cpp | 1160 legacy->mLatency = VALUE_OR_RETURN(convertIntegral<uint32_t>(aidl.latency)); in aidl2legacy_AudioIoDescriptor_AudioIoDescriptor() 1176 aidl.latency = VALUE_OR_RETURN(convertIntegral<int32_t>(legacy->mLatency)); in legacy2aidl_AudioIoDescriptor_AudioIoDescriptor()
|
H A D | AudioSystem.cpp | 409 *latency = outputDesc->mLatency; in getLatency()
|
/aosp12/frameworks/av/services/audiopolicy/common/managerdefinitions/include/ |
H A D | AudioOutputDescriptor.h | 420 uint32_t mLatency; // variable
|
/aosp12/hardware/libhardware_legacy/include/hardware_legacy/ |
H A D | AudioPolicyManagerBase.h | 277 uint32_t mLatency; // variable
|
/aosp12/frameworks/av/media/libstagefright/include/media/stagefright/ |
H A D | ACodec.h | 305 std::optional<uint32_t> mLatency; member
|
/aosp12/frameworks/av/media/libstagefright/ |
H A D | ACodec.cpp | 4612 if (mLatency && h264type.nBFrames > *mLatency) { in setupAVCEncoderParameters() 4613 h264type.nBFrames = *mLatency; in setupAVCEncoderParameters() 4993 mLatency = latency; in configureEncoderLatency() 4999 mLatency = 1; in configureEncoderLatency()
|
/aosp12/frameworks/av/services/audioflinger/ |
H A D | Threads.cpp | 2827 desc->mLatency = latency_l(); in ioConfigChanged() 8966 desc->mLatency = 0; in ioConfigChanged() 9835 desc->mLatency = 0; in ioConfigChanged()
|
/aosp12/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 10525 Landroid/bluetooth/BluetoothHidDeviceAppQosSettings;->mLatency:I 54793 Landroid/speech/tts/Voice;->mLatency:I
|