Lines Matching refs:helper
606 char *helper; in hawkbit_get_url() local
608 helper = strstr(href, "//"); in hawkbit_get_url()
609 if (helper != NULL) { in hawkbit_get_url()
610 helper = strstr(helper + 2u, "/"); in hawkbit_get_url()
613 if (!helper) { in hawkbit_get_url()
614 LOG_ERR("Unexpected href format: %s", helper); in hawkbit_get_url()
617 return helper; in hawkbit_get_url()
626 char *helper; in hawkbit_find_cancel_action_id() local
628 helper = strstr(res->_links.cancelAction.href, "cancelAction/"); in hawkbit_find_cancel_action_id()
629 if (!helper) { in hawkbit_find_cancel_action_id()
635 helper += sizeof("cancelAction/"); in hawkbit_find_cancel_action_id()
637 *cancel_action_id = strtol(helper, NULL, 10); in hawkbit_find_cancel_action_id()