Lines Matching refs:hdl
56 netmgr_hdl_t hdl = netmgr_get_dev(WIFI_DEV_PATH); in hapy_netmgr_init() local
58 if (hdl >= 0) { in hapy_netmgr_init()
146 netmgr_hdl_t hdl = netmgr_get_dev(WIFI_DEV_PATH); in hapy_netmgr_getDev() local
147 return mp_obj_new_int(hdl); in hapy_netmgr_getDev()
153 netmgr_hdl_t hdl = netmgr_get_dev(WIFI_DEV_PATH); in hapy_netmgr_autoReconnect() local
155 netmgr_set_auto_reconnect(hdl, isAutoReconnect); in hapy_netmgr_autoReconnect()
162 netmgr_hdl_t hdl = netmgr_get_dev(WIFI_DEV_PATH); in hapy_netmgr_autoSavaAP() local
164 mp_int_t ret = netmgr_wifi_set_auto_save_ap(hdl, isAutoSave); in hapy_netmgr_autoSavaAP()
220 netmgr_hdl_t hdl = netmgr_get_dev(WIFI_DEV_PATH); in hapy_netmgr_getConfig() local
221 mp_int_t ret = netmgr_get_config(hdl, &netmgr_config); in hapy_netmgr_getConfig()
249 netmgr_hdl_t hdl = netmgr_get_dev(WIFI_DEV_PATH); in hapy_netmgr_saveConfig() local
250 mp_int_t ret = netmgr_save_config(hdl); in hapy_netmgr_saveConfig()
263 netmgr_hdl_t hdl = netmgr_get_dev(WIFI_DEV_PATH); in hapy_netmgr_deleteConfig() local
264 mp_int_t ret = netmgr_del_config(hdl, &config); in hapy_netmgr_deleteConfig()
271 netmgr_hdl_t hdl = netmgr_get_dev(WIFI_DEV_PATH); in hapy_netmgr_getChannelList() local
279 mp_int_t ret = netmgr_wifi_get_channelist(hdl, &channel_array, &channel_num); in hapy_netmgr_getChannelList()
297 netmgr_hdl_t hdl = netmgr_get_dev(WIFI_DEV_PATH); in hapy_netmgr_setChannelList() local
302 mp_int_t ret = netmgr_wifi_set_channelist(hdl, channels.buf, channels.len); in hapy_netmgr_setChannelList()