Lines Matching refs:p_response
689 void at_response_free(ATResponse *p_response) in at_response_free() argument
693 if (p_response == NULL) return; in at_response_free()
695 p_line = p_response->p_intermediates; in at_response_free()
707 free (p_response->finalResponse); in at_response_free()
708 free (p_response); in at_response_free()
715 static void reverseIntermediates(ATResponse *p_response) in reverseIntermediates() argument
719 pcur = p_response->p_intermediates; in reverseIntermediates()
720 p_response->p_intermediates = NULL; in reverseIntermediates()
724 pcur->p_next = p_response->p_intermediates; in reverseIntermediates()
725 p_response->p_intermediates = pcur; in reverseIntermediates()
980 AT_CME_Error at_get_cme_error(const ATResponse *p_response) in at_get_cme_error() argument
986 if (p_response == NULL) in at_get_cme_error()
989 if (p_response->success > 0) { in at_get_cme_error()
993 if (p_response->finalResponse == NULL in at_get_cme_error()
994 || !strStartsWith(p_response->finalResponse, "+CME ERROR:") in at_get_cme_error()
999 p_cur = p_response->finalResponse; in at_get_cme_error()