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

Commit 436438af authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "legacy: Remove btif_debug"

parents 06b5e8b2 ed3ef6c4
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -118,7 +118,6 @@ cc_defaults {
        "src/btif_config_transcode.cc",
        "src/btif_core.cc",
        "src/btif_csis_client.cc",
        "src/btif_debug.cc",
        "src/btif_debug_btsnoop.cc",
        "src/btif_debug_conn.cc",
        "src/btif_dm.cc",
+0 −1
Original line number Diff line number Diff line
@@ -53,7 +53,6 @@ static_library("btif") {
    "src/btif_config_cache.cc",
    "src/btif_config_transcode.cc",
    "src/btif_core.cc",
    "src/btif_debug.cc",
    "src/btif_debug_btsnoop.cc",
    "src/btif_debug_conn.cc",
    "src/btif_dm.cc",

system/btif/include/btif_debug.h

deleted100644 → 0
+0 −25
Original line number Diff line number Diff line
/******************************************************************************
 *
 *  Copyright 2015 Google Inc.
 *
 *  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.
 *
 ******************************************************************************/

#pragma once

#include <stdint.h>

// Debug API

void btif_debug_init(void);

system/btif/src/btif_debug.cc

deleted100644 → 0
+0 −27
Original line number Diff line number Diff line
/******************************************************************************
 *
 *  Copyright 2015 Google Inc.
 *
 *  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.
 *
 ******************************************************************************/

#include <sys/time.h>
#include <unistd.h>

#include "btif/include/btif_debug.h"
#include "btif/include/btif_debug_btsnoop.h"
#include "internal_include/bt_target.h"

void btif_debug_init(void) {
}
+0 −1
Original line number Diff line number Diff line
@@ -22,7 +22,6 @@
#include <resolv.h>
#include <zlib.h>

#include "btif/include/btif_debug.h"
#include "btif/include/btif_debug_btsnoop.h"
#include "hci/include/btsnoop_mem.h"
#include "internal_include/bt_target.h"
Loading