Lines Matching refs:p_response
624 void at_response_free(ATResponse *p_response) in at_response_free() argument
628 if (p_response == NULL) return; in at_response_free()
630 p_line = p_response->p_intermediates; in at_response_free()
642 free (p_response->finalResponse); in at_response_free()
643 free (p_response); in at_response_free()
650 static void reverseIntermediates(ATResponse *p_response) in reverseIntermediates() argument
654 pcur = p_response->p_intermediates; in reverseIntermediates()
655 p_response->p_intermediates = NULL; in reverseIntermediates()
659 pcur->p_next = p_response->p_intermediates; in reverseIntermediates()
660 p_response->p_intermediates = pcur; in reverseIntermediates()
928 AT_CME_Error at_get_cme_error(const ATResponse *p_response) in at_get_cme_error() argument
934 if (p_response->success > 0) { in at_get_cme_error()
938 if (p_response->finalResponse == NULL in at_get_cme_error()
939 || !strStartsWith(p_response->finalResponse, "+CME ERROR:") in at_get_cme_error()
944 p_cur = p_response->finalResponse; in at_get_cme_error()