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

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

Snap for 8178706 from eabad880 to tm-d1-release

Change-Id: Ib5f80a08158fb577570b36faac9a22e39acf4671
parents 1f0a6a2d eabad880
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -426,8 +426,8 @@ void BluetoothAudioSession::ReportLowLatencyModeAllowedChanged(bool allowed) {
  for (auto& observer : observers_) {
    uint16_t cookie = observer.first;
    std::shared_ptr<PortStatusCallbacks> callback = observer.second;
    LOG(INFO) << __func__ << " - allowed="
              << allowed ? " allowed" : " disallowed";
    LOG(INFO) << __func__
              << " - allowed=" << (allowed ? " allowed" : " disallowed");
    callback->low_latency_mode_allowed_cb_(cookie, allowed);
  }
}
+1 −3
Original line number Diff line number Diff line
@@ -40,8 +40,6 @@
using namespace android;
using namespace std::chrono_literals;

#define POWER_SUPPLY_SUBSYSTEM "power_supply"

namespace android {
namespace hardware {
namespace health {
@@ -143,7 +141,7 @@ void HealthLoop::UeventEvent(uint32_t /*epevents*/) {
    cp = msg;

    while (*cp) {
        if (!strcmp(cp, "SUBSYSTEM=" POWER_SUPPLY_SUBSYSTEM)) {
        if (!strcmp(cp, "SUBSYSTEM=power_supply")) {
            ScheduleBatteryUpdate();
            break;
        }
+40 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2022 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
///////////////////////////////////////////////////////////////////////////////
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE.                          //
///////////////////////////////////////////////////////////////////////////////

// This file is a snapshot of an AIDL file. Do not edit it manually. There are
// two cases:
// 1). this is a frozen version file - do not edit this in any case.
// 2). this is a 'current' file. If you make a backwards compatible change to
//     the interface (from the latest frozen version), the build system will
//     prompt you to update this file with `m <name>-update-api`.
//
// You must not make a backward incompatible change to any AIDL file built
// with the aidl_interface module type with versions property set. The module
// type is used to build AIDL files in a way that they can be used across
// independently updatable components of the system. If a device is shipped
// with such a backward incompatible change, it has a high risk of breaking
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.wifi.supplicant;
@VintfStability
parcelable DppConnectionKeys {
  byte[] connector;
  byte[] cSign;
  byte[] netAccessKey;
}
+2 −1
Original line number Diff line number Diff line
@@ -44,6 +44,7 @@ interface ISupplicantStaIface {
  void filsHlpAddRequest(in byte[] dst_mac, in byte[] pkt);
  void filsHlpFlushRequest();
  android.hardware.wifi.supplicant.DppResponderBootstrapInfo generateDppBootstrapInfoForResponder(in byte[] macAddress, in String deviceInfo, in android.hardware.wifi.supplicant.DppCurve curve);
  void generateSelfDppConfiguration(in String ssid, in byte[] privEcKey);
  android.hardware.wifi.supplicant.ConnectionCapabilities getConnectionCapabilities();
  android.hardware.wifi.supplicant.MloLinksInfo getConnectionMloLinksInfo();
  android.hardware.wifi.supplicant.KeyMgmtMask getKeyMgmtCapabilities();
@@ -83,7 +84,7 @@ interface ISupplicantStaIface {
  void setWpsModelName(in String modelName);
  void setWpsModelNumber(in String modelNumber);
  void setWpsSerialNumber(in String serialNumber);
  void startDppConfiguratorInitiator(in int peerBootstrapId, in int ownBootstrapId, in String ssid, in String password, in String psk, in android.hardware.wifi.supplicant.DppNetRole netRole, in android.hardware.wifi.supplicant.DppAkm securityAkm);
  byte[] startDppConfiguratorInitiator(in int peerBootstrapId, in int ownBootstrapId, in String ssid, in String password, in String psk, in android.hardware.wifi.supplicant.DppNetRole netRole, in android.hardware.wifi.supplicant.DppAkm securityAkm, in byte[] privEcKey);
  void startDppEnrolleeInitiator(in int peerBootstrapId, in int ownBootstrapId);
  void startDppEnrolleeResponder(in int listenChannel);
  void startRxFilter();
+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ interface ISupplicantStaIfaceCallback {
  oneway void onDppFailure(in android.hardware.wifi.supplicant.DppFailureCode code, in String ssid, in String channelList, in char[] bandList);
  oneway void onDppProgress(in android.hardware.wifi.supplicant.DppProgressCode code);
  oneway void onDppSuccess(in android.hardware.wifi.supplicant.DppEventType event);
  oneway void onDppSuccessConfigReceived(in byte[] ssid, in String password, in byte[] psk, in android.hardware.wifi.supplicant.DppAkm securityAkm);
  oneway void onDppSuccessConfigReceived(in byte[] ssid, in String password, in byte[] psk, in android.hardware.wifi.supplicant.DppAkm securityAkm, in android.hardware.wifi.supplicant.DppConnectionKeys dppConnectionKeys);
  oneway void onDppSuccessConfigSent();
  oneway void onEapFailure(in int errorCode);
  oneway void onExtRadioWorkStart(in int id);
Loading