Lines Matching full:line
50 // Expected: call should disappear from CLCC line
124 // Line index that was incoming or waiting at last poll, or -1 for none
150 * Note: directly modified line and has *p_call point directly into
151 * modified line
153 static int callFromCLCCLine(char *line, RIL_Call *p_call)
162 err = at_tok_start(&line);
165 err = at_tok_nextint(&line, &(p_call->index));
168 err = at_tok_nextbool(&line, &(p_call->isMT));
171 err = at_tok_nextint(&line, &state);
177 err = at_tok_nextint(&line, &mode);
182 err = at_tok_nextbool(&line, &(p_call->isMpty));
185 if (at_tok_hasmore(&line)) {
186 err = at_tok_nextstr(&line, &(p_call->number));
192 // like "NOT AVAILABLE" in the CLCC line
199 err = at_tok_nextint(&line, &p_call->toa);
208 LOGE("invalid CLCC line\n");
333 char *line = p_cur->line;
335 err = at_tok_start(&line);
339 err = at_tok_nextint(&line, &response->cid);
343 err = at_tok_nextint(&line, &response->active);
364 char *line = p_cur->line;
371 err = at_tok_start(&line);
375 err = at_tok_nextint(&line, &cid);
389 err = at_tok_nextstr(&line, &out);
396 err = at_tok_nextstr(&line, &out);
403 err = at_tok_nextstr(&line, &out);
439 char *line;
447 line = p_response->p_intermediates->line;
449 err = at_tok_start(&line);
455 err = at_tok_nextint(&line, &response);
526 err = callFromCLCCLine(p_cur->line, p_calls + countValidCalls);
680 char *line;
689 line = p_response->p_intermediates->line;
691 err = at_tok_start(&line);
694 err = at_tok_nextint(&line, &(response[0]));
697 err = at_tok_nextint(&line, &(response[1]));
720 char *line, *p;
741 line = p_response->p_intermediates->line;
743 err = at_tok_start(&line);
769 for (p = line ; *p != '\0' ;p++) {
775 err = at_tok_nextint(&line, &response[0]);
782 err = at_tok_nextint(&line, &skip);
784 err = at_tok_nextint(&line, &response[0]);
792 err = at_tok_nextint(&line, &response[0]);
794 err = at_tok_nexthexint(&line, &response[1]);
796 err = at_tok_nexthexint(&line, &response[2]);
800 err = at_tok_nextint(&line, &skip);
802 err = at_tok_nextint(&line, &response[0]);
804 err = at_tok_nexthexint(&line, &response[1]);
806 err = at_tok_nexthexint(&line, &response[2]);
813 err = at_tok_nextint(&line, &skip);
815 err = at_tok_nextint(&line, &response[0]);
817 err = at_tok_nexthexint(&line, &response[1]);
819 err = at_tok_nexthexint(&line, &response[2]);
821 err = at_tok_nexthexint(&line, &response[3]);
874 char *line = p_cur->line;
876 err = at_tok_start(&line);
879 err = at_tok_nextint(&line, &skip);
884 if (!at_tok_hasmore(&line)) {
889 err = at_tok_nextint(&line, &skip);
893 if (!at_tok_hasmore(&line)) {
898 err = at_tok_nextstr(&line, &(response[i]));
1102 char *line;
1126 line = p_response->p_intermediates->line;
1128 err = at_tok_start(&line);
1131 err = at_tok_nextint(&line, &(sr.sw1));
1134 err = at_tok_nextint(&line, &(sr.sw2));
1137 if (at_tok_hasmore(&line)) {
1138 err = at_tok_nextstr(&line, &(sr.simResponse));
1387 p_response->p_intermediates->line, sizeof(char *));
1400 p_response->p_intermediates->line, sizeof(char *));
1421 p_response->p_intermediates->line, sizeof(char *));
1612 cpinLine = p_response->p_intermediates->line;
1768 char *line;
1778 line = p_response->p_intermediates->line;
1780 err = at_tok_start(&line);
1783 err = at_tok_nextbool(&line, &ret);
1847 /* no connected line identification */
1890 * Called by atchannel when an unsolicited line appears
1896 char *line = NULL;
1910 line = strdup(s);
1911 at_tok_start(&line);
1913 err = at_tok_nextstr(&line, &response);
1916 LOGE("invalid NITZ line %s\n", s);