Lines Matching refs:acl_interface
355 void ValidateAclInterface(const shim::legacy::acl_interface_t& acl_interface) { in ValidateAclInterface() argument
356 log::assert_that(acl_interface.on_send_data_upwards != nullptr, in ValidateAclInterface()
358 log::assert_that(acl_interface.on_packets_completed != nullptr, in ValidateAclInterface()
361 log::assert_that(acl_interface.connection.classic.on_connected != nullptr, in ValidateAclInterface()
364 acl_interface.connection.classic.on_failed != nullptr, in ValidateAclInterface()
367 acl_interface.connection.classic.on_disconnected != nullptr, in ValidateAclInterface()
370 log::assert_that(acl_interface.connection.le.on_connected != nullptr, in ValidateAclInterface()
372 log::assert_that(acl_interface.connection.le.on_failed != nullptr, in ValidateAclInterface()
375 acl_interface.connection.le.on_disconnected != nullptr, in ValidateAclInterface()
1420 const acl_interface_t& acl_interface, in Acl() argument
1423 : handler_(handler), acl_interface_(acl_interface) { in Acl()