Lines Matching refs:ret_ble
29 BLECFG_STATE ret_ble; in BleCfg_main_task() local
49 ret_ble = BleCfg_wifi_connect(); in BleCfg_main_task()
50 if ( ret_ble != BLECFG_SUCCESS ) { in BleCfg_main_task()
356 BLECFG_STATE ret_ble; in BleCfg_run() local
360 ret_ble = BleCfg_stack_init(BleCfg_cmd_parse); in BleCfg_run()
361 if (ret_ble) { in BleCfg_run()
362 BLECFG_LOG_ERROR("%s: Ble config stack init error %d\r\n", __func__, ret_ble); in BleCfg_run()
363 return ret_ble; in BleCfg_run()
367 ret_ble = BleCfg_netmgr_init(BleCfg_dhcp_success); in BleCfg_run()
368 if (ret_ble) { in BleCfg_run()
369 BLECFG_LOG_ERROR("%s: Ble config netmgr init error %d\r\n", __func__, ret_ble); in BleCfg_run()
370 return ret_ble; in BleCfg_run()
374 ret_ble = BleCfg_linksdk_init(BleCfg_link_success); in BleCfg_run()
375 if (ret_ble) { in BleCfg_run()
376 BLECFG_LOG_ERROR("%s: Ble config linksdk init error %d\r\n", __func__, ret_ble); in BleCfg_run()
377 return ret_ble; in BleCfg_run()
393 ret_ble = BleCfg_stack_start(); in BleCfg_run()
394 if (ret_ble) { in BleCfg_run()
395 BLECFG_LOG_ERROR("%s: Ble config start error %d\r\n", __func__, ret_ble); in BleCfg_run()
396 return ret_ble; in BleCfg_run()