opipe             107 libutil/dbop.c 	HANDLE opipe[2], ipipe[2];
opipe             135 libutil/dbop.c 	if (!CreatePipe(&opipe[0], &opipe[1], &sa, 0) ||
opipe             138 libutil/dbop.c 	SetHandleInformation(opipe[1], HANDLE_FLAG_INHERIT, 0);
opipe             142 libutil/dbop.c 	si.hStdInput = opipe[0];
opipe             152 libutil/dbop.c 	CloseHandle(opipe[0]);
opipe             156 libutil/dbop.c 	dbop->sortout = fdopen(_open_osfhandle((long)opipe[1], _O_WRONLY), "w");
opipe             184 libutil/dbop.c 	int opipe[2], ipipe[2];
opipe             205 libutil/dbop.c 	if (pipe(opipe) < 0 || pipe(ipipe) < 0)
opipe             210 libutil/dbop.c 		close(opipe[1]);
opipe             212 libutil/dbop.c 		if (dup2(opipe[0], 0) < 0 || dup2(ipipe[1], 1) < 0)
opipe             214 libutil/dbop.c 		close(opipe[0]);
opipe             225 libutil/dbop.c 	close(opipe[0]);
opipe             228 libutil/dbop.c 	fcntl(opipe[1], F_SETFD, FD_CLOEXEC);
opipe             229 libutil/dbop.c 	dbop->sortout = fdopen(opipe[1], "w");
opipe              95 plugin-factory/exuberant-ctags.c 	int opipe[2], ipipe[2];
opipe             105 plugin-factory/exuberant-ctags.c 	if (pipe(opipe) < 0 || pipe(ipipe) < 0)
opipe             110 plugin-factory/exuberant-ctags.c 		close(opipe[1]);
opipe             112 plugin-factory/exuberant-ctags.c 		if (dup2(opipe[0], STDIN_FILENO) < 0
opipe             115 plugin-factory/exuberant-ctags.c 		close(opipe[0]);
opipe             124 plugin-factory/exuberant-ctags.c 	close(opipe[0]);
opipe             127 plugin-factory/exuberant-ctags.c 	op = fdopen(opipe[1], "w");