Lines Matching refs:p_response
625 void at_response_free(ATResponse *p_response) in at_response_free() argument
629 if (p_response == NULL) return; in at_response_free()
631 p_line = p_response->p_intermediates; in at_response_free()
643 free (p_response->finalResponse); in at_response_free()
644 free (p_response); in at_response_free()
651 static void reverseIntermediates(ATResponse *p_response) in reverseIntermediates() argument
655 pcur = p_response->p_intermediates; in reverseIntermediates()
656 p_response->p_intermediates = NULL; in reverseIntermediates()
660 pcur->p_next = p_response->p_intermediates; in reverseIntermediates()
661 p_response->p_intermediates = pcur; in reverseIntermediates()
945 AT_CME_Error at_get_cme_error(const ATResponse *p_response) in at_get_cme_error() argument
951 if (p_response->success > 0) { in at_get_cme_error()
955 if (p_response->finalResponse == NULL in at_get_cme_error()
956 || !strStartsWith(p_response->finalResponse, "+CME ERROR:") in at_get_cme_error()
961 p_cur = p_response->finalResponse; in at_get_cme_error()