Searched refs:p_cur (Results 1 – 5 of 5) sorted by relevance
/hardware/ril/reference-ril/ |
D | at_tok.c | 28 int at_tok_start(char **p_cur) in at_tok_start() argument 30 if (*p_cur == NULL) { in at_tok_start() 37 *p_cur = strchr(*p_cur, ':'); in at_tok_start() 39 if (*p_cur == NULL) { in at_tok_start() 43 (*p_cur)++; in at_tok_start() 48 static void skipWhiteSpace(char **p_cur) in skipWhiteSpace() argument 50 if (*p_cur == NULL) return; in skipWhiteSpace() 52 while (**p_cur != '\0' && isspace(**p_cur)) { in skipWhiteSpace() 53 (*p_cur)++; in skipWhiteSpace() 57 static void skipNextComma(char **p_cur) in skipNextComma() argument [all …]
|
D | at_tok.h | 21 int at_tok_start(char **p_cur); 22 int at_tok_nextint(char **p_cur, int *p_out); 23 int at_tok_nexthexint(char **p_cur, int *p_out); 25 int at_tok_nextbool(char **p_cur, char *p_out); 26 int at_tok_nextstr(char **p_cur, char **out); 28 int at_tok_hasmore(char **p_cur);
|
D | reference-ril.c | 436 ATLine *p_cur; in requestOrSendDataCallList() local 451 for (p_cur = p_response->p_intermediates; p_cur != NULL; in requestOrSendDataCallList() 452 p_cur = p_cur->p_next) in requestOrSendDataCallList() 474 for (p_cur = p_response->p_intermediates; p_cur != NULL; in requestOrSendDataCallList() 475 p_cur = p_cur->p_next) { in requestOrSendDataCallList() 476 char *line = p_cur->line; in requestOrSendDataCallList() 505 for (p_cur = p_response->p_intermediates; p_cur != NULL; in requestOrSendDataCallList() 506 p_cur = p_cur->p_next) { in requestOrSendDataCallList() 507 char *line = p_cur->line; in requestOrSendDataCallList() 672 ATLine *p_cur; local [all …]
|
D | atchannel.c | 929 char *p_cur; in at_get_cme_error() local 941 p_cur = p_response->finalResponse; in at_get_cme_error() 942 err = at_tok_start(&p_cur); in at_get_cme_error() 948 err = at_tok_nextint(&p_cur, &ret); in at_get_cme_error()
|
/hardware/ril/libril/ |
D | ril.cpp | 2326 char **p_cur = (char **) response; in responseStrings() local 2334 appendPrintBuf("%s%s,", printBuf, (char*)p_cur[i]); in responseStrings() 2335 writeStringToParcel (p, p_cur[i]); in responseStrings() 2385 RIL_Call *p_cur = ((RIL_Call **) response)[i]; in responseCallList() local 2387 p.writeInt32(p_cur->state); in responseCallList() 2388 p.writeInt32(p_cur->index); in responseCallList() 2389 p.writeInt32(p_cur->toa); in responseCallList() 2390 p.writeInt32(p_cur->isMpty); in responseCallList() 2391 p.writeInt32(p_cur->isMT); in responseCallList() 2392 p.writeInt32(p_cur->als); in responseCallList() [all …]
|