Home | History | Annotate | Download | only in slirp-android

Lines Matching refs:bptr

237 	char *bptr;
307 bptr = strdup(ex); /* No need to free() this */
312 argv[i++] = bptr;
316 curarg = bptr;
317 while (*bptr != ' ' && *bptr != (char)0)
318 bptr++;
319 c = *bptr;
320 *bptr++ = (char)0;
375 char *bptr;
378 bptr = (char *)malloc(len+1);
379 memcpy(bptr, str, len+1);
381 return bptr;