pipe              187 libutil/xargs.c 	FILE *pipe = NULL;
pipe              244 libutil/xargs.c 		pipe = popen(strbuf_value(comline), "r");
pipe              245 libutil/xargs.c 		if (pipe == NULL)
pipe              249 libutil/xargs.c 	return pipe;
pipe              266 libutil/xargs.c 	xp->pipe = NULL;
pipe              402 libutil/xargs.c 	if (xp->pipe && strbuf_fgets(xp->result, xp->pipe, STRBUF_NOCRLF) != NULL) {
pipe              407 libutil/xargs.c 	if (xp->pipe)
pipe              408 libutil/xargs.c 		if (pclose(xp->pipe) != 0 && !xp->ignore_error)
pipe              414 libutil/xargs.c 		xp->pipe = execute_command(xp);
pipe              415 libutil/xargs.c 		if (xp->pipe && strbuf_fgets(xp->result, xp->pipe, STRBUF_NOCRLF) != NULL) {
pipe              420 libutil/xargs.c 		if (xp->pipe) {
pipe              421 libutil/xargs.c 			if (pclose(xp->pipe) != 0 && !xp->ignore_error)
pipe              453 libutil/xargs.c 	assert(xp->pipe == NULL);
pipe               47 libutil/xargs.h 	FILE *pipe;