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