Searched refs:pResponse (Results 1 – 7 of 7) sorted by relevance
/ohos5.0/base/telephony/ril_adapter/services/vendor/src/ |
H A D | at_sim.c | 187 if (pResponse && pResponse->result) { in ReqGetSimStatus() 293 if (pResponse && pResponse->result) { in HandlerSimIOResult() 368 if (pResponse && pResponse->result) { in HandlerSimImsiResult() 412 if (pResponse && pResponse->result) { in HandlerSimLockStatusResult() 490 if (pResponse && pResponse->result) { in ReqSetSimLock() 541 if (pResponse && pResponse->result) { in ReqChangeSimPassword() 586 if (pResponse && pResponse->result) { in ReqUnlockPin() 640 if (pResponse && pResponse->result) { in ReqUnlockPuk() 689 if (pResponse && pResponse->result) { in ReqGetSimPinInputTimes() 743 if (pResponse && pResponse->head) { in ReqGetSimPinInputTimesRemain() [all …]
|
H A D | at_call.c | 372 if (ret || (pResponse != NULL && !pResponse->success)) { in ReqGetCallList() 430 if (pResponse == NULL || !pResponse->success) { in ReqDial() 513 if (pResponse == NULL || !pResponse->success) { in ReqGetClip() 551 if (pResponse == NULL || !pResponse->success) { in ReqSetClip() 573 if (pResponse == NULL || !pResponse->success) { in ReqGetClir() 841 if (pResponse == NULL || !pResponse->success) { in ReqCallSupplement() 868 if (pResponse == NULL || !pResponse->success) { in ReqGetCallWaiting() 905 if (pResponse == NULL || !pResponse->success) { in ReqSetCallWaiting() 948 if (pResponse == NULL || !pResponse->success) { in ReqSetCallTransferInfo() 1068 if (pResponse == NULL || !pResponse->success) { in ReqSetCallRestriction() [all …]
|
H A D | at_data.c | 89 FreeResponseInfo(pResponse); in OnDataReportErrorMessages() 326 if (ret != 0 || pResponse == NULL || pResponse->head == NULL || !pResponse->success) { in GetLinkInformation() 340 pLine = pResponse->head; in GetLinkInformation() 370 if (ret != 0 || pResponse == NULL || !pResponse->success) { in SendInquireCGDCONT() 402 if (ret != 0 || pResponse == NULL || !pResponse->success) { in QueryAllSupportPDNInfos() 632 if (ret != 0 || pResponse == NULL || !pResponse->success) { in SendCmdCGDCONT() 656 if ((ret != HRIL_ERR_SUCCESS) || pResponse == NULL || !pResponse->success) { in SendCmdNDISDUP() 775 if (ret != 0 || pResponse == NULL || !pResponse->success) { in SetDataProfileInfo() 791 if (ret != 0 || pResponse == NULL || !pResponse->success) { in SetDataProfileInfo() 901 if (ret || pResponse == NULL || !pResponse->success) { in ReqGetLinkBandwidthInfo() [all …]
|
H A D | vendor_adapter.c | 200 ResponseInfo *pResponse = NULL; in SetRadioState() local 225 if (err != 0 || pResponse == NULL || !pResponse->success) { in SetRadioState() 227 FreeResponseInfo(pResponse); in SetRadioState() 232 FreeResponseInfo(pResponse); in SetRadioState() 264 ResponseInfo *pResponse = NULL; in ModemInit() local 266 if (err != 0 || pResponse == NULL || !pResponse->success) { in ModemInit() 269 FreeResponseInfo(pResponse); in ModemInit() 273 FreeResponseInfo(pResponse); in ModemInit() 276 FreeResponseInfo(pResponse); in ModemInit() 281 FreeResponseInfo(pResponse); in ModemInit() [all …]
|
H A D | at_modem.c | 84 static void ErrorHandler(const ReqDataInfo *requestInfo, ResponseInfo *pResponse) in ErrorHandler() argument 92 FreeResponseInfo(pResponse); in ErrorHandler() 103 ResponseInfo *pResponse = NULL; in ReqGetRadioState() local 106 int32_t ret = SendCommandLock("AT+CFUN?", "+CFUN", timeOut, &pResponse); in ReqGetRadioState() 107 if (ret != 0 || pResponse == NULL || !pResponse->success) { in ReqGetRadioState() 109 return ErrorHandler(requestInfo, pResponse); in ReqGetRadioState() 111 if (pResponse->head != NULL) { in ReqGetRadioState() 112 pLine = pResponse->head->data; in ReqGetRadioState() 117 return ErrorHandler(requestInfo, pResponse); in ReqGetRadioState() 121 return ErrorHandler(requestInfo, pResponse); in ReqGetRadioState() [all …]
|
/ohos5.0/docs/zh-cn/device-dev/subsystems/ |
H A D | subsys-tel-guide.md | 172 ResponseInfo *pResponse = NULL; 194 ret = SendCommandLock(cmd, NULL, 0, &pResponse); // 发送AT指令 202 ret = SendCommandLock(cmd, NULL, 0, &pResponse); 203 if (ret != 0 || (pResponse != NULL && pResponse->success == 0)) { 424 ResponseInfo *pResponse = NULL; 446 ret = SendCommandLock(cmd, NULL, 0, &pResponse); // 发送AT命令 451 if (pResponse != NULL && pResponse->success == 0) { 458 FreeResponseInfo(pResponse);
|
/ohos5.0/docs/en/device-dev/subsystems/ |
H A D | subsys-tel-guide.md | 162 ResponseInfo *pResponse = NULL; 184 ret = SendCommandLock(cmd, NULL, 0, &pResponse); // Send the AT command. 192 ret = SendCommandLock(cmd, NULL, 0, &pResponse); 193 if (ret != 0 || (pResponse != NULL && pResponse->success == 0)) { 415 ResponseInfo *pResponse = NULL; 437 ret = SendCommandLock(cmd, NULL, 0, &pResponse); // Send the AT command. 442 if (pResponse != NULL && pResponse->success == 0) { 449 FreeResponseInfo(pResponse);
|