Home
last modified time | relevance | path

Searched refs:TEST_CONN_OPT_X (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/tests/net/conn_mgr_conn/src/
Dmain.c632 zassert_equal(conn_mgr_if_set_opt(ifa1, TEST_CONN_OPT_X, &buf, strlen(buf) + 1), 0, in ZTEST()
638 zassert_equal(conn_mgr_if_get_opt(ifa1, TEST_CONN_OPT_X, &buf, &buf_len), in ZTEST()
656 zassert_equal(conn_mgr_if_get_opt(ifa2, TEST_CONN_OPT_X, &buf, &buf_len), in ZTEST()
678 zassert_equal(conn_mgr_if_get_opt(ifa1, TEST_CONN_OPT_X, &buf, &buf_len), in ZTEST()
690 zassert_equal(conn_mgr_if_set_opt(ifa1, TEST_CONN_OPT_X, &buf, strlen(buf) + 1), 0, in ZTEST()
696 zassert_equal(conn_mgr_if_get_opt(ifa1, TEST_CONN_OPT_X, &buf, &buf_len), 0, in ZTEST()
710 zassert_equal(conn_mgr_if_get_opt(ifa1, TEST_CONN_OPT_X, &buf, &buf_len), 0, in ZTEST()
735 zassert_equal(conn_mgr_if_set_opt(ifa1, TEST_CONN_OPT_X, NULL, 100), -EINVAL, in ZTEST()
738 zassert_equal(conn_mgr_if_get_opt(ifa1, TEST_CONN_OPT_X, NULL, &buf_len), -EINVAL, in ZTEST()
743 zassert_equal(conn_mgr_if_get_opt(ifa1, TEST_CONN_OPT_X, buf, NULL), -EINVAL, in ZTEST()
[all …]
Dtest_conn_impl.h24 #define TEST_CONN_OPT_X 0 macro
Dtest_conn_impl.c142 case TEST_CONN_OPT_X: in opt_pointer()