Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a27cc11c authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 12309590 from 92ddbc49 to 24Q4-release

Change-Id: I0dee6a712f0fda15cf4fee09b1f7d4e46cc4622f
parents adb954d4 92ddbc49
Loading
Loading
Loading
Loading
+1 −11
Original line number Diff line number Diff line
@@ -29,17 +29,7 @@ parcelable JankData {
  int jankType;

  /**
   * Time between frames in nanoseconds.
   * Expected duration in nanoseconds of this frame.
   */
  long frameIntervalNs;

  /**
   * Time allocated to the application to render this frame.
   */
  long scheduledAppFrameTimeNs;

  /**
   * Time taken by the application to render this frame.
   */
  long actualAppFrameTimeNs;
}
+7 −0
Original line number Diff line number Diff line
@@ -178,3 +178,10 @@ flag {
  description: "Capture input latency metrics on a per device granular level using histograms."
  bug: "270049345"
}

flag {
  name: "collect_palm_rejection_quality_metrics"
  namespace: "input"
  description: "Collect quality metrics on framework palm rejection."
  bug: "341717757"
}
+2 −1
Original line number Diff line number Diff line
@@ -24,7 +24,8 @@ mod keyboard_classifier;

pub use data_store::{DataStore, DefaultFileReaderWriter};
pub use input::{
    DeviceClass, DeviceId, InputDevice, ModifierState, MotionAction, MotionFlags, Source,
    DeviceClass, DeviceId, InputDevice, KeyboardType, ModifierState, MotionAction, MotionFlags,
    Source,
};
pub use input_verifier::InputVerifier;
pub use keyboard_classifier::KeyboardClassifier;
+1 −0
Original line number Diff line number Diff line
@@ -60,6 +60,7 @@ void InputFilter::notifyInputDevicesChanged(const NotifyInputDevicesChangedArgs&
        AidlDeviceInfo& aidlInfo = mDeviceInfos.emplace_back();
        aidlInfo.deviceId = info.getId();
        aidlInfo.external = info.isExternal();
        aidlInfo.keyboardType = info.getKeyboardType();
    }
    if (isFilterEnabled()) {
        LOG_ALWAYS_FATAL_IF(!mInputFilterRust->notifyInputDevicesChanged(mDeviceInfos).isOk());
+1 −0
Original line number Diff line number Diff line
@@ -23,4 +23,5 @@ package com.android.server.inputflinger;
parcelable DeviceInfo {
    int deviceId;
    boolean external;
    int keyboardType;
}
 No newline at end of file
Loading