Lines Matching full:big
657 static int create_big(struct bt_le_ext_adv **adv, struct bt_iso_big **big) in create_big() argument
712 /* Prepare BIG */ in create_big()
719 /* Create BIG */ in create_big()
720 LOG_INF("Creating BIG"); in create_big()
721 err = bt_iso_big_create(*adv, &big_create_param, big); in create_big()
723 LOG_ERR("Failed to create BIG (err %d)", err); in create_big()
727 LOG_INF("Waiting for BIG complete"); in create_big()
733 LOG_INF("BIG created"); in create_big()
738 static int delete_big(struct bt_le_ext_adv **adv, struct bt_iso_big **big) in delete_big() argument
742 err = bt_iso_big_terminate(*big); in delete_big()
744 LOG_ERR("Failed to terminate BIG (err %d)", err); in delete_big()
747 *big = NULL; in delete_big()
781 struct bt_iso_big *big; in test_run_broadcaster() local
811 err = create_big(&adv, &big); in test_run_broadcaster()
813 LOG_ERR("Could not create BIG: %d", err); in test_run_broadcaster()
842 err = delete_big(&adv, &big); in test_run_broadcaster()
844 LOG_ERR("Could not delete BIG: %d", err); in test_run_broadcaster()