Lines Matching refs:str
54 char *str; in read_output() local
68 str = "length"; in read_output()
78 str = "data"; in read_output()
89 "errno = %d\n", str, -ret); in read_output()
92 "%d of %d bytes\n", str, ret, expected); in read_output()
250 char *split_if_spec(char *str, ...) in split_if_spec() argument
255 va_start(ap, str); in split_if_spec()
257 if (*str == '\0') in split_if_spec()
259 end = strchr(str, ','); in split_if_spec()
260 if (end != str) in split_if_spec()
261 *arg = str; in split_if_spec()
265 str = end; in split_if_spec()
268 return str; in split_if_spec()