sortout           156 libutil/dbop.c 	dbop->sortout = fdopen(_open_osfhandle((long)opipe[1], _O_WRONLY), "w");
sortout           158 libutil/dbop.c 	if (dbop->sortout == NULL || dbop->sortin == NULL)
sortout           229 libutil/dbop.c 	dbop->sortout = fdopen(opipe[1], "w");
sortout           231 libutil/dbop.c 	if (dbop->sortout == NULL || dbop->sortin == NULL)
sortout           311 libutil/dbop.c 	dbop->sortout	= NULL;
sortout           370 libutil/dbop.c 	if (dbop->sortout != NULL) {
sortout           371 libutil/dbop.c 		fputs(name, dbop->sortout);
sortout           372 libutil/dbop.c 		putc(SORT_SEP, dbop->sortout);
sortout           373 libutil/dbop.c 		fputs(data, dbop->sortout);
sortout           374 libutil/dbop.c 		putc('\n', dbop->sortout);
sortout           713 libutil/dbop.c 	if (dbop->sortout != NULL) {
sortout           724 libutil/dbop.c 		fclose(dbop->sortout);
sortout           725 libutil/dbop.c 		dbop->sortout = NULL;
sortout            73 libutil/dbop.h 	FILE *sortout;			/**< write to sort command */