Lines Matching refs:uuid
346 int bt_mesh_test_recv(uint16_t len, uint16_t dst, const uint8_t *uuid, k_timeout_t timeout) in bt_mesh_test_recv() argument
365 ((uuid != NULL && msg->ctx.uuid == NULL) || in bt_mesh_test_recv()
366 (uuid == NULL && msg->ctx.uuid != NULL) || in bt_mesh_test_recv()
367 memcmp(uuid, msg->ctx.uuid, 16))) { in bt_mesh_test_recv()
369 if (uuid && msg->ctx.uuid) { in bt_mesh_test_recv()
370 LOG_ERR("Got: %s", bt_hex(msg->ctx.uuid, 16)); in bt_mesh_test_recv()
371 LOG_ERR("Expected: %s", bt_hex(uuid, 16)); in bt_mesh_test_recv()
446 int bt_mesh_test_send_async(uint16_t addr, const uint8_t *uuid, size_t len, in bt_mesh_test_send_async() argument
459 test_send_ctx.uuid = uuid; in bt_mesh_test_send_async()
498 int bt_mesh_test_send(uint16_t addr, const uint8_t *uuid, size_t len, in bt_mesh_test_send() argument
502 return bt_mesh_test_send_async(addr, uuid, len, flags, NULL, NULL); in bt_mesh_test_send()
514 err = bt_mesh_test_send_async(addr, uuid, len, flags, &send_cb, &send_ctx); in bt_mesh_test_send()
534 int bt_mesh_test_send_data(uint16_t addr, const uint8_t *uuid, uint8_t *data, size_t len, in bt_mesh_test_send_data() argument
542 test_send_ctx.uuid = uuid; in bt_mesh_test_send_data()