Home | History | Annotate | Download | only in reference-ril

Lines Matching refs:p_out

91  * Parses the next integer in the AT response line and places it in *p_out
97 static int at_tok_nextint_base(char **p_cur, int *p_out, int base, int uns)
118 *p_out = (int)l;
130 * and places it in *p_out
134 int at_tok_nextint(char **p_cur, int *p_out)
136 return at_tok_nextint_base(p_cur, p_out, 10, 0);
141 * and places it in *p_out
145 int at_tok_nexthexint(char **p_cur, int *p_out)
147 return at_tok_nextint_base(p_cur, p_out, 16, 1);
150 int at_tok_nextbool(char **p_cur, char *p_out)
166 if (p_out != NULL) {
167 *p_out = (char)result;
173 int at_tok_nextstr(char **p_cur, char **p_out)
179 *p_out = nextTok(p_cur);