Searched refs:buf3 (Results 1 – 4 of 4) sorted by relevance
/Zephyr-latest/tests/bluetooth/mesh/delayable_msg/src/ |
D | main.c | 167 NET_BUF_SIMPLE_DEFINE(buf3, 20); in ZTEST() 175 memcpy(net_buf_simple_add(&buf3, 20), tx_data, 20); in ZTEST() 185 zexpect_ok(bt_mesh_delayable_msg_manage(&gctx, &buf3, SRC_ADDR, &send_cb, &buf3_id)); in ZTEST() 192 set_expectation(&buf3, &buf3_id); in ZTEST() 278 NET_BUF_SIMPLE_DEFINE(buf3, 20); in ZTEST() 283 memcpy(net_buf_simple_add(&buf3, 20), tx_data, 20); in ZTEST() 303 zexpect_ok(bt_mesh_delayable_msg_manage(&gctx, &buf3, SRC_ADDR, &send_cb, &buf_id)); in ZTEST()
|
/Zephyr-latest/tests/lib/c_lib/common/src/ |
D | main.c | 691 static const char buf3[] = "-010379aegi"; in ZTEST() local 705 ret = strtol(buf3, NULL, 8); in ZTEST() 778 static const char buf3[] = "-010379aegi"; in ZTEST() local 792 ret = strtoul(buf3, NULL, 8); in ZTEST() 860 static const char buf3[] = "-010379aegi"; in test_strtoll() local 874 ret = strtoll(buf3, NULL, 8); in test_strtoll() 940 static const char buf3[] = "-010379aegi"; in test_strtoull() local 954 ret = strtoull(buf3, NULL, 8); in test_strtoull()
|
/Zephyr-latest/tests/lib/net_buf/buf/src/ |
D | main.c | 511 struct net_buf *buf1, *buf2, *buf3; in ZTEST() local 521 buf3 = net_buf_clone(buf2, K_NO_WAIT); in ZTEST() 522 zassert_not_null(buf3, "Failed to clone buffer"); in ZTEST() 523 zassert_equal(buf3->data, buf2->data, "Cloned data doesn't match"); in ZTEST() 527 net_buf_unref(buf3); in ZTEST()
|
/Zephyr-latest/tests/net/socket/tcp/src/ |
D | main.c | 731 char buf3[MAX_BUF_LEN]; in ZTEST_USER() local 792 io_vector[2].iov_base = buf3; in ZTEST_USER() 793 io_vector[2].iov_len = sizeof(buf3); in ZTEST_USER()
|