Searched refs:notification_size (Results 1 – 3 of 3) sorted by relevance
/Zephyr-latest/tests/bsim/bluetooth/host/misc/conn_stress/peripheral/src/ |
D | main.c | 91 static uint32_t notification_size; /* TODO: does this _need_ to be set in args? */ variable 366 snprintk(tx_data, notification_size, "%s%u", NOTIFICATION_DATA_PREFIX, count); in set_tx_payload() 437 err = bt_gatt_notify(NULL, vnd_attr, tx_data, notification_size); in test_peripheral_main() 468 notification_size = NOTIFICATION_DATA_LEN; in test_args() 476 notification_size = atol(ptr); in test_args() 477 notification_size = MIN(NOTIFICATION_DATA_LEN, notification_size); in test_args() 481 bs_trace_raw(0, "Notification data size : %d\n", notification_size); in test_args()
|
/Zephyr-latest/tests/bsim/bluetooth/host/misc/conn_stress/central/src/ |
D | main.c | 96 static uint32_t conn_interval_max, notification_size; variable 631 snprintk(vnd_value, notification_size, "%s%u", NOTIFICATION_DATA_PREFIX, in notify_peers() 634 err = bt_gatt_notify(conn, vnd_attr, vnd_value, notification_size); in notify_peers() 715 notification_size = NOTIFICATION_DATA_LEN; in test_args() 723 notification_size = atol(ptr); in test_args() 724 notification_size = MIN(NOTIFICATION_DATA_LEN, notification_size); in test_args() 739 bs_trace_raw(0, "Notification data size : %d\n", notification_size); in test_args()
|
/Zephyr-latest/subsys/usb/device_next/class/ |
D | usbd_cdc_ncm.c | 667 void *notification, size_t notification_size) in cdc_ncm_send_notification() argument 687 buf = usbd_ep_buf_alloc(c_data, ep, notification_size); in cdc_ncm_send_notification() 692 net_buf_add_mem(buf, notification, notification_size); in cdc_ncm_send_notification()
|