Lines Matching refs:p_response
619 void at_response_free(ATResponse *p_response) in at_response_free() argument
623 if (p_response == NULL) return; in at_response_free()
625 p_line = p_response->p_intermediates; in at_response_free()
637 free (p_response->finalResponse); in at_response_free()
638 free (p_response); in at_response_free()
645 static void reverseIntermediates(ATResponse *p_response) in reverseIntermediates() argument
649 pcur = p_response->p_intermediates; in reverseIntermediates()
650 p_response->p_intermediates = NULL; in reverseIntermediates()
654 pcur->p_next = p_response->p_intermediates; in reverseIntermediates()
655 p_response->p_intermediates = pcur; in reverseIntermediates()
925 AT_CME_Error at_get_cme_error(const ATResponse *p_response) in at_get_cme_error() argument
931 if (p_response->success > 0) { in at_get_cme_error()
935 if (p_response->finalResponse == NULL in at_get_cme_error()
936 || !strStartsWith(p_response->finalResponse, "+CME ERROR:") in at_get_cme_error()
941 p_cur = p_response->finalResponse; in at_get_cme_error()