Home
last modified time | relevance | path

Searched refs:pLine (Results 1 - 6 of 6) sorted by relevance

/base/telephony/ril_adapter/services/vendor/src/
H A Dat_sim.c28 char *pLine = NULL; in GetSimType() local
39 pLine = pResponse->head->data; in GetSimType()
41 ret = SkipATPrefix(&pLine); in GetSimType()
45 ret = NextInt(&pLine, &simType); in GetSimType()
53 static int32_t GetSimState(char *pLine, char *pResult, ResponseInfo *pResponse) in GetSimState() argument
57 ret = SkipATPrefix(&pLine); in GetSimState()
61 ret = NextStr(&pLine, &pResult); in GetSimState()
81 static int32_t ParseSimResponseResult(char *pLine, HRilSimIOResponse *pSimResponse) in ParseSimResponseResult() argument
86 int32_t err = SkipATPrefix(&pLine); in ParseSimResponseResult()
90 err = NextInt(&pLine, in ParseSimResponseResult()
108 ParseSimPinInputTimesResult(char *pLine, HRilPinInputTimes *pinInputTimes) ParseSimPinInputTimesResult() argument
147 ParseUnlockSimLockResult(char *pLine, HRilLockStatus *lockStatus) ParseUnlockSimLockResult() argument
173 char *pLine = NULL; ReqGetSimStatus() local
257 char *pLine = (*ppResponse)->last == NULL ? (*ppResponse)->result : (*ppResponse)->last->data; ReqGetSimIOFDN() local
278 HandlerSimIOResult(ResponseInfo *pResponse, HRilSimIOResponse *simResponse, const ReqDataInfo *requestInfo, char *pLine, int32_t *ret) HandlerSimIOResult() argument
312 char *pLine = NULL; ReqGetSimIO() local
361 HandlerSimImsiResult( ResponseInfo *pResponse, struct ReportInfo reportInfo, const ReqDataInfo *requestInfo, char *pLine, int32_t *ret) HandlerSimImsiResult() argument
382 char *pLine = NULL; ReqGetSimImsi() local
405 HandlerSimLockStatusResult( ResponseInfo *pResponse, struct ReportInfo reportInfo, const ReqDataInfo *requestInfo, char *pLine, int32_t *ret) HandlerSimLockStatusResult() argument
428 char *pLine = NULL; ReqGetSimLockStatus() local
473 char *pLine = NULL; ReqSetSimLock() local
523 char *pLine = NULL; ReqChangeSimPassword() local
574 char *pLine = NULL; ReqUnlockPin() local
628 char *pLine = NULL; ReqUnlockPuk() local
681 char *pLine = NULL; ReqGetSimPinInputTimes() local
725 char *pLine = NULL; ReqGetSimPinInputTimesRemain() local
773 char *pLine = NULL; ReqUnlockPin2() local
827 char *pLine = NULL; ReqUnlockPuk2() local
880 char *pLine = NULL; ReqGetSimPin2InputTimes() local
914 char *pLine = NULL; ReqSetActiveSim() local
945 char *pLine = NULL; ReqSimStkSendTerminalResponse() local
976 char *pLine = NULL; ReqSimStkSendEnvelope() local
1012 char *pLine = NULL; ReqSimStkIsReady() local
1077 char *pLine = NULL; ReqSimOpenLogicalChannel() local
1107 char *pLine = NULL; ReqSimCloseLogicalChannel() local
1138 char *pLine = NULL; ReqSimTransmitApduLogicalChannel() local
1206 char *pLine = NULL; ReqUnlockSimLock() local
[all...]
H A Dat_data.c182 Line *pLine = NULL; in SendInquireCGACT() local
195 for (pLine = pResponse->head; pLine != NULL; pLine = pLine->next) { in SendInquireCGACT()
208 for (pLine = pResponse->head; pLine != NULL; pLine = pLine->next) { in SendInquireCGACT()
209 ret = ParsePdpCmd(pLine in SendInquireCGACT()
230 Line *pLine = NULL; BuildDataInfoList() local
321 Line *pLine = NULL; GetLinkInformation() local
397 Line *pLine = NULL; QueryAllSupportPDNInfos() local
862 char *pLine = (char *)lineCmd; CallCmdC5GQOSRDP() local
[all...]
H A Dat_call.c50 static int32_t ParseDiffPart(int32_t isAllInfo, char **pLine, HRilCallInfo *outCall) in ParseDiffPart() argument
57 if (NextInt(pLine, &outCall->voiceDomain) < 0) { in ParseDiffPart()
60 if (NextInt(pLine, &outCall->callType) < 0) { in ParseDiffPart()
63 NextInt(pLine, &tmp); // ignore in ParseDiffPart()
73 char *pLine = (char *)lineCmd; in CallCmdCLCC() local
77 if (pLine == NULL || outCall == NULL) { in CallCmdCLCC()
81 int32_t isAllInfo = ReportStrWith(pLine, "^CLCC:"); in CallCmdCLCC()
82 if (SkipATPrefix(&pLine) < 0) { in CallCmdCLCC()
85 if (NextInt(&pLine, &outCall->index) < 0) { in CallCmdCLCC()
88 if (NextInt(&pLine, in CallCmdCLCC()
283 Line *pLine = NULL; InitCallListCmdBuffer() local
329 Line *pLine = NULL; BuildCallInfoList() local
443 const int32_t *pLine = NULL; ReqHangup() local
1314 char *pLine = (char *)lineCmd; CallCmdXLEMA() local
1353 Line *pLine = NULL; InitGetEmergencyCallList() local
1396 Line *pLine = NULL; BuildGetEmergencyCallList() local
[all...]
H A Dat_modem.c49 char *pLine = NULL; in GetResponseErrorCode() local
52 pLine = pResponseInfo->result; in GetResponseErrorCode()
53 SkipATPrefix(&pLine); in GetResponseErrorCode()
54 NextInt(&pLine, &ret); in GetResponseErrorCode()
101 char *pLine = NULL; in ReqGetRadioState() local
112 pLine = pResponse->head->data; in ReqGetRadioState()
115 ret = SkipATPrefix(&pLine); in ReqGetRadioState()
119 ret = NextInt(&pLine, &radioState); in ReqGetRadioState()
H A Dat_network.c71 char *pLine = NULL; in GetResponseErrorCode() local
74 pLine = pResponseInfo->result; in GetResponseErrorCode()
75 SkipATPrefix(&pLine); in GetResponseErrorCode()
76 NextInt(&pLine, &ret); in GetResponseErrorCode()
599 Line *pLine = responseInfo->head; in ReqGetOperatorInfo() local
600 for (int32_t i = 0; pLine != NULL; i++, pLine = pLine->next) { in ReqGetOperatorInfo()
602 result = pLine->data; in ReqGetOperatorInfo()
1142 Line *pLine in ReqGetNeighboringCellInfoList() local
1481 Line *pLine = NULL; ReqGetCurrentCellInfo() local
1852 Line *pLine = responseInfo->head; ReqGetPreferredNetwork() local
1976 Line *pLine = responseInfo->head; NotifyNetWorkTime() local
[all...]
H A Dat_sms.c83 char *pLine = NULL; in HandlerSmsResult() local
86 pLine = responseInfo->result; in HandlerSmsResult()
87 SkipATPrefix(&pLine); in HandlerSmsResult()
88 NextInt(&pLine, err); in HandlerSmsResult()

Completed in 9 milliseconds