Lines Matching refs:body
52 std::function<void()> body{[]() {}};
53 void operator()() { body(); }; in operator()
60 std::function<void(const base::Location& from_here, BT_HDR* packet)> body{
63 body(from_here, packet); in operator()
71 std::function<void(BT_HDR* packet)> body{[](BT_HDR* packet) {}};
72 void operator()(BT_HDR* packet) { body(packet); }; in operator()
79 std::function<void(BT_HDR* packet)> body{[](BT_HDR* packet) {}};
80 void operator()(BT_HDR* packet) { body(packet); }; in operator()
87 std::function<void(BT_HDR* packet)> body{[](BT_HDR* packet) {}};
88 void operator()(BT_HDR* packet) { body(packet); }; in operator()
95 std::function<void()> body{[]() {}};
96 void operator()() { body(); }; in operator()
103 std::function<void(int credits)> body{[](int credits) {}};
104 void operator()(int credits) { body(credits); }; in operator()
111 std::function<bool()> body{[]() { return false; }};
112 bool operator()() { return body(); }; in operator()
120 std::function<void()> body{[]() {}};
121 void operator()() { body(); }; in operator()
128 std::function<void()> body{[]() {}};
129 void operator()() { body(); }; in operator()
137 std::function<const hci_t*()> body{[this]() { return hci; }};
138 const hci_t* operator()() { return body(); }; in operator()
150 body{[](const allocator_t* buffer_allocator_interface,
159 return body(buffer_allocator_interface, btsnoop_interface, in operator()