Home
last modified time | relevance | path

Searched refs:netmgr_hdl_t (Results 1 – 21 of 21) sorted by relevance

/AliOS-Things-master/components/netmgr/include/
A Dnetmgr_wifi.h83 int netmgr_wifi_init(netmgr_hdl_t hdl);
88 void netmgr_wifi_deinit(netmgr_hdl_t hdl);
95 netmgr_hdl_t netmgr_wifi_get_dev(const char* name);
118 void netmgr_wifi_set_auto_reconnect(netmgr_hdl_t hdl, bool enable);
134 int netmgr_wifi_del_config(netmgr_hdl_t, const char* ssid);
141 int netmgr_wifi_get_state(netmgr_hdl_t hdl);
149 int netmgr_wifi_connect(netmgr_hdl_t hdl, netmgr_wifi_params_t* params);
156 int netmgr_wifi_disconnect(netmgr_hdl_t hdl);
163 int netmgr_wifi_save_config(netmgr_hdl_t hdl);
175 int netmgr_wifi_set_msg_cb(netmgr_hdl_t hdl, netmgr_msg_cb_t cb);
[all …]
A Dnetmgr.h197 typedef int netmgr_hdl_t; typedef
250 netmgr_hdl_t netmgr_get_dev(const char* name);
259 netmgr_type_t get_hdl_type(netmgr_hdl_t hdl);
306 int netmgr_disconnect(netmgr_hdl_t hdl);
315 netmgr_conn_state_t netmgr_get_state(netmgr_hdl_t hdl);
324 int netmgr_save_config(netmgr_hdl_t hdl);
374 void* netmgr_wifi_get_netif(netmgr_hdl_t hdl);
393 void netmgr_wifi_start_monitor(netmgr_hdl_t hdl);
400 void netmgr_wifi_stop_monitor(netmgr_hdl_t hdl);
407 void netmgr_wifi_start_mgnt_monitor(netmgr_hdl_t hdl);
[all …]
A Dnetmgr_ethernet.h38 int netmgr_eth_init(netmgr_hdl_t hdl);
/AliOS-Things-master/components/amp_adapter/platform/linux/
A Daos_wifi.c19 netmgr_hdl_t hdl;
81 static netmgr_hdl_t get_hdl_by_name(char* file_name) in get_hdl_by_name()
124 netmgr_hdl_t netmgr_get_dev(const char* name) in netmgr_get_dev()
148 void netmgr_set_auto_reconnect(netmgr_hdl_t hdl, bool enable) in netmgr_set_auto_reconnect()
154 int netmgr_get_config(netmgr_hdl_t hdl, netmgr_config_t* config) in netmgr_get_config()
160 int netmgr_del_config(netmgr_hdl_t hdl, netmgr_del_config_t* config) in netmgr_del_config()
166 netmgr_conn_state_t netmgr_get_state(netmgr_hdl_t hdl) in netmgr_get_state()
180 int netmgr_disconnect(netmgr_hdl_t hdl) in netmgr_disconnect()
185 int netmgr_save_config(netmgr_hdl_t hdl) in netmgr_save_config()
196 int netmgr_set_msg_cb(netmgr_hdl_t hdl, netmgr_msg_cb_t cb) in netmgr_set_msg_cb()
[all …]
/AliOS-Things-master/components/netmgr/src/
A Dnetmgr_service.c24 netmgr_hdl_t hdl;
106 static netmgr_hdl_t get_hdl_by_name(const char* file_name) in get_hdl_by_name()
125 netmgr_type_t get_hdl_type(netmgr_hdl_t hdl) in get_hdl_type()
223 netmgr_hdl_t netmgr_get_dev(const char* name) in netmgr_get_dev()
265 void netmgr_set_auto_reconnect(netmgr_hdl_t hdl, bool enable) in netmgr_set_auto_reconnect()
283 int netmgr_get_config(netmgr_hdl_t hdl, netmgr_config_t* config) in netmgr_get_config()
304 netmgr_conn_state_t netmgr_get_state(netmgr_hdl_t hdl) in netmgr_get_state()
325 int netmgr_disconnect(netmgr_hdl_t hdl) in netmgr_disconnect()
333 int netmgr_save_config(netmgr_hdl_t hdl) in netmgr_save_config()
341 int netmgr_set_msg_cb(netmgr_hdl_t hdl, netmgr_msg_cb_t cb) in netmgr_set_msg_cb()
[all …]
A Dnetmgr_gprs.c17 netmgr_hdl_t hdl;
139 return (netmgr_hdl_t)node; in netmgr_gprs_init()
146 netmgr_hdl_t netmgr_dev_gprs_init() in netmgr_dev_gprs_init()
157 int netmgr_config_gprs(netmgr_hdl_t hdl, int mode) in netmgr_config_gprs()
A Dnetmgr_eth.c14 netmgr_hdl_t hdl;
136 return (netmgr_hdl_t)node; in netmgr_eth_init()
144 netmgr_hdl_t netmgr_dev_eth_init() in netmgr_dev_eth_init()
156 int netmgr_config_eth(netmgr_hdl_t hdl, eth_mac_duplex_e duplex, eth_mac_speed_e speed) in netmgr_config_eth()
A Dnetmgr_nbiot.c154 netmgr_hdl_t netmgr_dev_nbiot_init() in netmgr_dev_nbiot_init()
156 return (netmgr_hdl_t)netmgr_nbiot_init(&netmgr_svc); in netmgr_dev_nbiot_init()
A Dnetmgr_wifi.c149 netmgr_hdl_t hdl;
482 static int wifi_get_mac(netmgr_hdl_t hdl, uint8_t *mac) in wifi_get_mac()
1880 int netmgr_wifi_init(netmgr_hdl_t hdl) in netmgr_wifi_init()
1984 void netmgr_wifi_deinit(netmgr_hdl_t hdl) in netmgr_wifi_deinit()
2029 void* netmgr_wifi_get_netif(netmgr_hdl_t hdl) in netmgr_wifi_get_netif()
2287 int netmgr_wifi_connect(netmgr_hdl_t hdl, netmgr_wifi_params_t *params) in netmgr_wifi_connect()
2591 int netmgr_wifi_disconnect(netmgr_hdl_t hdl) in netmgr_wifi_disconnect()
2706 int netmgr_wifi_set_msg_cb(netmgr_hdl_t hdl, netmgr_msg_cb_t cb) in netmgr_wifi_set_msg_cb()
2761 int netmgr_wifi_del_msg_cb(netmgr_hdl_t hdl, netmgr_msg_cb_t cb) in netmgr_wifi_del_msg_cb()
2991 int netmgr_wifi_save_config(netmgr_hdl_t hdl) in netmgr_wifi_save_config()
[all …]
A Dnetmgr_ethernet.c377 int netmgr_eth_init(netmgr_hdl_t hdl) in netmgr_eth_init()
/AliOS-Things-master/components/amp_adapter/platform/aos/network/
A Daos_wifi.c20 netmgr_hdl_t hdl; in aos_wifi_set_ifconfig()
30 netmgr_hdl_t hdl; in aos_wifi_get_ifconfig()
40 netmgr_hdl_t hdl; in aos_wifi_set_msg_cb()
50 netmgr_hdl_t hdl; in aos_wifi_del_msg_cb()
66 netmgr_hdl_t hdl; in aos_wifi_connect()
89 netmgr_hdl_t hdl; in aos_get_wifi_info()
127 netmgr_hdl_t hdl; in aos_wifi_disconnect()
137 netmgr_hdl_t hdl; in aos_wifi_get_state()
/AliOS-Things-master/components/amp/engine/duktape_engine/addons/network/netmgr/
A Dmodule_netmgr.c30 netmgr_hdl_t hdl;
40 netmgr_hdl_t hdl; in js_cb_conn_status()
77 netmgr_hdl_t hdl; in check_ip_task()
127 netmgr_hdl_t hdl; in native_netmgr_service_deinit()
190 netmgr_hdl_t hdl; in native_netmgr_set_auto_reconnect()
217 netmgr_hdl_t hdl; in native_netmgr_connect()
287 netmgr_hdl_t hdl; in native_netmgr_disconnect()
315 netmgr_hdl_t hdl; in native_netmgr_get_state()
332 netmgr_hdl_t hdl; in native_netmgr_save_config()
377 netmgr_hdl_t hdl; in native_netmgr_set_ifconfig()
[all …]
/AliOS-Things-master/components/py_engine/modules/netmgr/
A Dmodnetmgr.c56 netmgr_hdl_t hdl = netmgr_get_dev(WIFI_DEV_PATH); in hapy_netmgr_init()
146 netmgr_hdl_t hdl = netmgr_get_dev(WIFI_DEV_PATH); in hapy_netmgr_getDev()
153 netmgr_hdl_t hdl = netmgr_get_dev(WIFI_DEV_PATH); in hapy_netmgr_autoReconnect()
162 netmgr_hdl_t hdl = netmgr_get_dev(WIFI_DEV_PATH); in hapy_netmgr_autoSavaAP()
220 netmgr_hdl_t hdl = netmgr_get_dev(WIFI_DEV_PATH); in hapy_netmgr_getConfig()
249 netmgr_hdl_t hdl = netmgr_get_dev(WIFI_DEV_PATH); in hapy_netmgr_saveConfig()
263 netmgr_hdl_t hdl = netmgr_get_dev(WIFI_DEV_PATH); in hapy_netmgr_deleteConfig()
271 netmgr_hdl_t hdl = netmgr_get_dev(WIFI_DEV_PATH); in hapy_netmgr_getChannelList()
297 netmgr_hdl_t hdl = netmgr_get_dev(WIFI_DEV_PATH); in hapy_netmgr_setChannelList()
/AliOS-Things-master/components/amp/engine/quickjs_engine/addons/network/netmgr/
A Dmodule_netmgr.c31 netmgr_hdl_t hdl;
51 netmgr_hdl_t hdl; in js_cb_conn_status()
110 netmgr_hdl_t hdl; in check_ip_task()
171 netmgr_hdl_t hdl; in native_netmgr_service_deinit()
237 netmgr_hdl_t hdl; in native_netmgr_set_auto_reconnect()
263 netmgr_hdl_t hdl; in native_netmgr_connect()
379 netmgr_hdl_t hdl; in native_netmgr_disconnect()
406 netmgr_hdl_t hdl; in native_netmgr_get_state()
421 netmgr_hdl_t hdl; in native_netmgr_save_config()
464 netmgr_hdl_t hdl; in native_netmgr_set_ifconfig()
[all …]
/AliOS-Things-master/components/netmgr/include_inner/
A Dnetmgr_conn.h18 netmgr_hdl_t hdl;
/AliOS-Things-master/components/linkkit/wrappers/os/
A DHAL_AWSS_rhino.c275 netmgr_hdl_t hdl; in HAL_Sys_Net_Is_Ready()
293 netmgr_hdl_t fd; in netmgr_comp_enable()
/AliOS-Things-master/components/py_engine/modules/network/
A Dmodnetwork.c130 netmgr_hdl_t hdl; // can get through netmgr_wifi_get_dev
154 static int wifi_set_mac(netmgr_hdl_t hdl, uint8_t *mac) in wifi_set_mac()
159 static int wifi_get_mac(netmgr_hdl_t hdl, uint8_t *mac) in wifi_get_mac()
164 static int wifi_get_rssi(netmgr_hdl_t hdl, int *rssi) in wifi_get_rssi()
/AliOS-Things-master/components/amp_adapter/platform/aos/
A Daos_system.c80 netmgr_hdl_t hdl; in aos_get_ip()
/AliOS-Things-master/solutions/eduk1_demo/k1_apps/homepage/
A Dhomepage.c104 netmgr_hdl_t hdl; in homepage_task()
/AliOS-Things-master/hardware/board/haaseduk1/board_test/
A Dboard_test.c251 netmgr_hdl_t hdl; in mfg_wifi_connect()
/AliOS-Things-master/components/py_engine/adapter/
A Dmain.c146 netmgr_hdl_t hdl = netmgr_get_dev(WIFI_DEV_PATH); in net_init()

Completed in 34 milliseconds