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

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

Snap for 11635697 from bae3ae1e to 24Q3-release

Change-Id: I462e5bdb3cc329b4f6c0453e0223057530714b2c
parents f06d9b03 bae3ae1e
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -12,7 +12,6 @@ filegroup {
    name: "Bluetooth-binder-aidl",
    srcs: [
        ":framework-bluetooth-updatable-exported-aidl-sources",
        ":modules-utils-synchronous-result-receiver-aidl",
        "android/bluetooth/IBluetooth.aidl",
        "android/bluetooth/IBluetoothA2dp.aidl",
        "android/bluetooth/IBluetoothA2dpSink.aidl",
+20 −0
Original line number Diff line number Diff line
/*
 * Copyright 2022 The Android Open Source Project
 * Copyright 2024 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.
@@ -14,20 +14,7 @@
 * limitations under the License.
 */

// This header is currently needed for hci_packets.h
// FIXME: Change hci_packets.h to not depend on os/log.h
//        and remove this.
#include "include/log.h"
package android.bluetooth;

parcelable BluetoothCodecType;
#define LOG_INFO(...)                                                       \
  rootcanal::log::Log(rootcanal::log::Verbosity::kInfo, __FILE__, __LINE__, \
                      "{}", fmt::sprintf(__VA_ARGS__))
#define LOG_WARN(...)                                                          \
  rootcanal::log::Log(rootcanal::log::Verbosity::kWarning, __FILE__, __LINE__, \
                      "{}", fmt::sprintf(__VA_ARGS__))
#define LOG_ERROR(...)                                                       \
  rootcanal::log::Log(rootcanal::log::Verbosity::kError, __FILE__, __LINE__, \
                      "{}", fmt::sprintf(__VA_ARGS__))
#define LOG_ALWAYS_FATAL(...)                                                \
  rootcanal::log::Log(rootcanal::log::Verbosity::kFatal, __FILE__, __LINE__, \
                      "{}", fmt::sprintf(__VA_ARGS__))
+21 −0
Original line number Diff line number Diff line
/*
 * Copyright 2024 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.
 */

package android.bluetooth;

parcelable BluetoothHearingAid.AdvertisementServiceData;

Loading