• Home
  • Raw
  • Download

Lines Matching refs:body

61       body{[](const RawAddress& rem_bda, uint16_t min_int, uint16_t max_int,
67 return body(rem_bda, min_int, max_int, latency, timeout, min_ce_len, in operator()
76 std::function<bool(const RawAddress& rem_bda, bool enable)> body{
79 return body(rem_bda, enable); in operator()
87 std::function<hci_role_t(const RawAddress& bd_addr)> body{
89 hci_role_t operator()(const RawAddress& bd_addr) { return body(bd_addr); }; in operator()
96 std::function<void(const RawAddress& bda)> body{[](const RawAddress& bda) {}};
97 void operator()(const RawAddress& bda) { body(bda); }; in operator()
108 body{[](uint16_t handle, uint8_t role, const RawAddress& bda,
114 return body(handle, role, bda, type, conn_interval, conn_latency, in operator()
127 body{[](uint16_t handle, uint8_t role,
133 return body(handle, role, address_with_type, conn_interval, conn_latency, in operator()
145 body{[](uint16_t handle, uint8_t status, uint16_t interval,
149 body(handle, status, interval, latency, timeout); in operator()
157 std::function<void(tL2C_LCB* p_lcb, uint8_t* p, uint16_t pkt_len)> body{
160 body(p_lcb, p, pkt_len); in operator()
168 std::function<bool(tL2C_LCB* p_lcb)> body{
170 bool operator()(tL2C_LCB* p_lcb) { return body(p_lcb); }; in operator()
177 std::function<void(uint16_t num_lm_ble_bufs)> body{
179 void operator()(uint16_t num_lm_ble_bufs) { body(num_lm_ble_bufs); }; in operator()
186 std::function<void(void)> body{[](void) {}};
187 void operator()(void) { body(); }; in operator()
196 body{[](uint16_t handle, uint16_t int_min, uint16_t int_max,
200 body(handle, int_min, int_max, latency, timeout); in operator()
209 std::function<void(tL2C_LCB* p_lcb)> body{[](tL2C_LCB* p_lcb) {}};
210 void operator()(tL2C_LCB* p_lcb) { body(p_lcb); }; in operator()
219 body{[](uint16_t handle, uint16_t tx_data_len, uint16_t rx_data_len) {}};
221 body(handle, tx_data_len, rx_data_len); in operator()
230 std::function<void(tL2C_CCB* p_ccb)> body{[](tL2C_CCB* p_ccb) {}};
231 void operator()(tL2C_CCB* p_ccb) { body(p_ccb); }; in operator()
238 std::function<void(tL2C_CCB* p_ccb, uint16_t result)> body{
240 void operator()(tL2C_CCB* p_ccb, uint16_t result) { body(p_ccb, result); }; in operator()
247 std::function<void(tL2C_CCB* p_ccb, uint16_t credit_value)> body{
250 body(p_ccb, credit_value); in operator()
258 std::function<void(tL2C_CCB* p_ccb)> body{[](tL2C_CCB* p_ccb) {}};
259 void operator()(tL2C_CCB* p_ccb) { body(p_ccb); }; in operator()
268 body{[](const RawAddress* bda, tBT_TRANSPORT transport, void* p_ref_data,
272 body(bda, transport, p_ref_data, status); in operator()
283 body{[](const RawAddress& bd_addr, uint16_t psm, bool is_originator,
290 return body(bd_addr, psm, is_originator, p_callback, p_ref_data); in operator()
300 body{[](uint16_t* min_interval, uint16_t* max_interval,
304 body(min_interval, max_interval, floor_interval); in operator()
312 std::function<void(const RawAddress& bda)> body{[](const RawAddress& bda) {}};
313 void operator()(const RawAddress& bda) { body(bda); }; in operator()