Searched defs:p_out (Results 1 - 1 of 1) sorted by relevance

/hardware/ril/reference-ril/
H A Dat_tok.c91 * 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) argument
118 *p_out = (int)l;
130 * and places it in *p_out
134 int at_tok_nextint(char **p_cur, int *p_out) argument
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) argument
147 return at_tok_nextint_base(p_cur, p_out, 16, 1);
150 int at_tok_nextbool(char **p_cur, char *p_out) argument
173 at_tok_nextstr(char **p_cur, char **p_out) argument
[all...]

Completed in 141 milliseconds