1 /******************************************************************************
2 *
3 * Copyright 2003-2012 Broadcom Corporation
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 ******************************************************************************/
18
19 /******************************************************************************
20 *
21 * This is the API implementation file for the BTA device manager.
22 *
23 ******************************************************************************/
24 #include "bta_dm_ci.h"
25 #include "bt_common.h"
26 #include "bta_api.h"
27 #include "bta_dm_int.h"
28 #include "bta_sys.h"
29 #include "stack/include/btu.h"
30
31 #include <base/bind.h>
32 #include <memory>
33
34 /*******************************************************************************
35 *
36 * Function bta_dm_ci_io_req
37 *
38 * Description This function must be called in response to function
39 * bta_dm_co_io_req(), if *p_oob_data to BTA_OOB_UNKNOWN
40 * by bta_dm_co_io_req().
41 *
42 * Returns void
43 *
44 ******************************************************************************/
bta_dm_ci_io_req(const RawAddress & bd_addr,tBTA_IO_CAP io_cap,tBTA_OOB_DATA oob_data,tBTA_AUTH_REQ auth_req)45 void bta_dm_ci_io_req(const RawAddress& bd_addr, tBTA_IO_CAP io_cap,
46 tBTA_OOB_DATA oob_data, tBTA_AUTH_REQ auth_req)
47
48 {
49 do_in_main_thread(FROM_HERE, base::Bind(bta_dm_ci_io_req_act, bd_addr, io_cap,
50 oob_data, auth_req));
51 }
52
53 /*******************************************************************************
54 *
55 * Function bta_dm_ci_rmt_oob
56 *
57 * Description This function must be called in response to function
58 * bta_dm_co_rmt_oob() to provide the OOB data associated
59 * with the remote device.
60 *
61 * Returns void
62 *
63 ******************************************************************************/
bta_dm_ci_rmt_oob(bool accept,const RawAddress & bd_addr,const Octet16 & c,const Octet16 & r)64 void bta_dm_ci_rmt_oob(bool accept, const RawAddress& bd_addr, const Octet16& c,
65 const Octet16& r) {
66 std::unique_ptr<tBTA_DM_CI_RMT_OOB> msg =
67 std::make_unique<tBTA_DM_CI_RMT_OOB>();
68
69 msg->bd_addr = bd_addr;
70 msg->accept = accept;
71 msg->c = c;
72 msg->r = r;
73
74 do_in_main_thread(FROM_HERE,
75 base::Bind(bta_dm_ci_rmt_oob_act, base::Passed(&msg)));
76 }
77
78