Lines Matching refs:test_network_pdu_len
370 static uint8_t test_network_pdu_len; variable
376 test_network_pdu_len = strlen(network_pdus[i]) / 2; in test_receive_network_pdus()
377 btstack_parse_hex(network_pdus[i], test_network_pdu_len, test_network_pdu_data); in test_receive_network_pdus()
379 mesh_network_received_message(test_network_pdu_data, test_network_pdu_len, 0); in test_receive_network_pdus()
433 if (outgoing_gatt_network_pdu_len != test_network_pdu_len){ in expect_gatt_network_pdu()
435 …printf("Expected PDU (%u): ", test_network_pdu_len); printf_hexdump(test_network_pdu_data, tes… in expect_gatt_network_pdu()
437 CHECK_EQUAL( outgoing_gatt_network_pdu_len, test_network_pdu_len); in expect_gatt_network_pdu()
438 … CHECK_EQUAL_ARRAY(test_network_pdu_data, outgoing_gatt_network_pdu_data, test_network_pdu_len); in expect_gatt_network_pdu()
449 if (outgoing_adv_network_pdu_len != test_network_pdu_len){ in expect_adv_network_pdu()
451 …printf("Expected PDU (%u): ", test_network_pdu_len); printf_hexdump(test_network_pdu_data, tes… in expect_adv_network_pdu()
453 CHECK_EQUAL( outgoing_adv_network_pdu_len, test_network_pdu_len); in expect_adv_network_pdu()
454 … CHECK_EQUAL_ARRAY(test_network_pdu_data, outgoing_adv_network_pdu_data, test_network_pdu_len); in expect_adv_network_pdu()
495 test_network_pdu_len = strlen(network_pdus[i]) / 2; in test_send_access_message()
496 btstack_parse_hex(network_pdus[i], test_network_pdu_len, test_network_pdu_data); in test_send_access_message()
538 test_network_pdu_len = strlen(network_pdus[i]) / 2; in test_send_control_message()
539 btstack_parse_hex(network_pdus[i], test_network_pdu_len, test_network_pdu_data); in test_send_control_message()
1121 test_network_pdu_len = strlen(network_pdus[i]) / 2; in TEST()
1122 btstack_parse_hex(network_pdus[i], test_network_pdu_len, test_network_pdu_data); in TEST()
1123 …esh_network_process_proxy_configuration_message(&test_network_pdu_data[1], test_network_pdu_len-1); in TEST()