Home
last modified time | relevance | path

Searched refs:conn_mgr_if_connect (Results 1 – 7 of 7) sorted by relevance

/Zephyr-latest/tests/net/conn_mgr_conn/src/
Dmain.c214 zassert_equal(conn_mgr_if_connect(ifa1), 0, "conn_mgr_if_connect should not fail"); in ZTEST()
236 zassert_equal(conn_mgr_if_connect(ifb), 0, "conn_mgr_if_connect should not fail"); in ZTEST()
258 zassert_equal(conn_mgr_if_connect(ifa2), 0, "conn_mgr_if_connect should not fail"); in ZTEST()
358 zassert_equal(conn_mgr_if_connect(ifa1), 0, "conn_mgr_if_connect should not fail"); in ZTEST()
367 zassert_equal(conn_mgr_if_connect(ifa1), 0, "conn_mgr_if_connect should not fail"); in ZTEST()
408 zassert_equal(conn_mgr_if_connect(ifa1), 0, "conn_mgr_if_connect should not fail"); in ZTEST()
409 zassert_equal(conn_mgr_if_connect(ifa1), 0, "conn_mgr_if_connect should not fail"); in ZTEST()
434 zassert_equal(conn_mgr_if_connect(ifa1), 0, "conn_mgr_if_connect should not fail"); in ZTEST()
484 zassert_equal(conn_mgr_if_connect(ifnull), -ENOTSUP, in ZTEST()
488 zassert_equal(conn_mgr_if_connect(ifnone), -ENOTSUP, in ZTEST()
[all …]
/Zephyr-latest/include/zephyr/net/
Dconn_mgr_connectivity.h119 int conn_mgr_if_connect(struct net_if *iface);
/Zephyr-latest/subsys/net/conn_mgr/
Dconn_mgr_connectivity.c17 int conn_mgr_if_connect(struct net_if *iface) in conn_mgr_if_connect() function
259 err = conn_mgr_if_connect(iface); in conn_mgr_conn_handle_iface_admin_up()
461 status = conn_mgr_if_connect(iface); in conn_mgr_conn_all_if_cb()
/Zephyr-latest/doc/connectivity/networking/conn_mgr/
Dmain.rst211 …can provide a generic API to request network association (:c:func:`conn_mgr_if_connect`) and disas…
237 …is bound, all connectivity commands passed to it (such as :c:func:`conn_mgr_if_connect` or :c:func…
248 … admin-up (see :ref:`net_if_interface_state_management`), :c:func:`conn_mgr_if_connect` can be cal…
257 …The :c:func:`conn_mgr_if_connect` function is intentionally minimalistic, and does not take any ki…
302 When :c:func:`conn_mgr_if_connect` is called on an iface, a connection attempt begins.
Dimplementation.rst205 …n_mgr_conn_api.connect` should conform to the behavior described for :c:func:`conn_mgr_if_connect`.
212 …or example, network SSID, or PSK, if applicable), before the call to :c:func:`conn_mgr_if_connect`.
213 … to provide this information as part of, or following the :c:func:`conn_mgr_if_connect` call, alth…
/Zephyr-latest/samples/net/lwm2m_client/src/
Dlwm2m-client.c387 (void)conn_mgr_if_connect(net_if_get_default()); in main()
/Zephyr-latest/subsys/net/lib/shell/
Dcm.c621 conn_mgr_if_connect(target.iface); in cmd_net_cm_connect()