Searched refs:conn_mgr_if_get_opt (Results 1 – 3 of 3) sorted by relevance
/Zephyr-latest/include/zephyr/net/ |
D | conn_mgr_connectivity.h | 194 int conn_mgr_if_get_opt(struct net_if *iface, int optname, void *optval, size_t *optlen);
|
/Zephyr-latest/tests/net/conn_mgr_conn/src/ |
D | main.c | 638 zassert_equal(conn_mgr_if_get_opt(ifa1, TEST_CONN_OPT_X, &buf, &buf_len), in ZTEST() 648 zassert_equal(conn_mgr_if_get_opt(ifa1, TEST_CONN_OPT_Y, &buf, &buf_len), in ZTEST() 656 zassert_equal(conn_mgr_if_get_opt(ifa2, TEST_CONN_OPT_X, &buf, &buf_len), in ZTEST() 669 zassert_equal(conn_mgr_if_get_opt(ifa1, TEST_CONN_OPT_Y, &buf, &buf_len), in ZTEST() 678 zassert_equal(conn_mgr_if_get_opt(ifa1, TEST_CONN_OPT_X, &buf, &buf_len), 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() 730 zassert_equal(conn_mgr_if_get_opt(ifa1, -1, buf, &buf_len), -ENOPROTOOPT, 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 …]
|
/Zephyr-latest/subsys/net/conn_mgr/ |
D | conn_mgr_connectivity.c | 103 int conn_mgr_if_get_opt(struct net_if *iface, int optname, void *optval, size_t *optlen) in conn_mgr_if_get_opt() function
|