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

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

Snap for 8202755 from f268ae2c to tm-d1-release

Change-Id: I68121470923dcc753f82c9a4141b9c62fe61a4f3
parents 689ff111 f268ae2c
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -22,8 +22,11 @@
    <target_preparer class="com.android.tradefed.targetprep.StopServicesSetup">
    </target_preparer>

    <target_preparer class="com.android.tradefed.targetprep.DeviceSetup">
        <option name="bluetooth" value="off" />
    <target_preparer class="com.android.tradefed.targetprep.RunCommandTargetPreparer">
        <option name="run-command" value="settings put global ble_scan_always_enabled 0" />
        <option name="run-command" value="su u$(am get-current-user)_system svc bluetooth disable" />
        <option name="teardown-command" value="su u$(am get-current-user)_system svc bluetooth enable" />
        <option name="teardown-command" value="settings put global ble_scan_always_enabled 1" />
    </target_preparer>

    <target_preparer class="com.android.tradefed.targetprep.PushFilePreparer">
+2 −2
Original line number Diff line number Diff line
@@ -1390,7 +1390,7 @@ class BluetoothAudioProviderLeAudioBroadcastSoftwareAidl
 * stopped
 */
TEST_P(BluetoothAudioProviderLeAudioBroadcastSoftwareAidl,
       DISABLED_OpenLeAudioOutputSoftwareProvider) {}
       OpenLeAudioOutputSoftwareProvider) {}

/**
 * Test whether each provider of type
@@ -1398,7 +1398,7 @@ TEST_P(BluetoothAudioProviderLeAudioBroadcastSoftwareAidl,
 * stopped with different PCM config
 */
TEST_P(BluetoothAudioProviderLeAudioBroadcastSoftwareAidl,
       DISABLED_StartAndEndLeAudioOutputSessionWithPossiblePcmConfig) {
       StartAndEndLeAudioOutputSessionWithPossiblePcmConfig) {
  for (auto sample_rate : le_audio_output_sample_rates_) {
    for (auto bits_per_sample : le_audio_output_bits_per_samples_) {
      for (auto channel_mode : le_audio_output_channel_modes_) {
+2 −1
Original line number Diff line number Diff line
service broadcastradio-hal2 /vendor/bin/hw/android.hardware.broadcastradio@2.0-service
    interface android.hardware.broadcastradio@2.0::IBroadcastRadio default
    interface android.hardware.broadcastradio@2.0::IBroadcastRadio amfm
    interface android.hardware.broadcastradio@2.0::IBroadcastRadio dab
    class hal
    user audioserver
    group audio
+4 −4
Original line number Diff line number Diff line
@@ -40,10 +40,10 @@ parcelable SatellitePvt {
  android.hardware.gnss.SatelliteClockInfo satClockInfo;
  double ionoDelayMeters;
  double tropoDelayMeters;
  int TOC;
  int IODC;
  int TOE;
  int IODE;
  long timeOfClockSeconds;
  int issueOfDataClock;
  long timeOfEphemerisSeconds;
  int issueOfDataEphemeris;
  android.hardware.gnss.SatellitePvt.SatelliteEphemerisSource ephemerisSource = android.hardware.gnss.SatellitePvt.SatelliteEphemerisSource.OTHER;
  const int HAS_POSITION_VELOCITY_CLOCK_INFO = 1;
  const int HAS_IONO = 2;
+12 −10
Original line number Diff line number Diff line
@@ -76,12 +76,13 @@ parcelable SatellitePvt {
    double tropoDelayMeters;

    /**
     * Time of Clock.
     * Time of Clock in seconds.
     *
     * This is defined in GPS ICD200 documentation
     * (e.g., https://www.gps.gov/technical/icwg/IS-GPS-200H.pdf).
     * This value is defined in seconds since GPS epoch, regardless of the constellation.
     *
     * The value must not be encoded as in GPS ICD200 documentation.
     */
    int TOC;
    long timeOfClockSeconds;

    /**
     * Issue of Data, Clock.
@@ -91,15 +92,16 @@ parcelable SatellitePvt {
     *
     * The field must be set to 0 if it is not supported.
     */
    int IODC;
    int issueOfDataClock;

    /**
     * Time of Ephemeris.
     * Time of Ephemeris in seconds.
     *
     * This is defined in GPS ICD200 documentation
     * (e.g., https://www.gps.gov/technical/icwg/IS-GPS-200H.pdf).
     * This value is defined in seconds since GPS epoch, regardless of the constellation.
     *
     * The value must not be encoded as in GPS ICD200 documentation.
     */
    int TOE;
    long timeOfEphemerisSeconds;

    /**
     * Issue of Data, Ephemeris.
@@ -109,7 +111,7 @@ parcelable SatellitePvt {
     *
     * The field must be set to 0 if it is not supported.
     */
    int IODE;
    int issueOfDataEphemeris;

    /** Satellite's ephemeris source */
    @VintfStability
Loading