Home
last modified time | relevance | path

Searched refs:p_cur (Results 1 – 3 of 3) sorted by relevance

/hardware/ril/reference-ril/
Dat_tok.c28 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 …]
Dat_tok.h21 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);
Datchannel.c948 char *p_cur; in at_get_cme_error() local
960 p_cur = p_response->finalResponse; in at_get_cme_error()
961 err = at_tok_start(&p_cur); in at_get_cme_error()
967 err = at_tok_nextint(&p_cur, &ret); in at_get_cme_error()