Home | History | Annotate | Download | only in ktrace

Lines Matching defs:outfile

85 	const char *outfile;
100 outfile = infile = NULL;
103 outfile = DEF_TRACEFILE;
131 outfile = optarg;
149 outfile = optarg;
201 if (clear == CLEAR && outfile == NULL && pid == 0)
227 (void)do_ktrace(outfile, vers, ops, trpoints, pid, block);
231 if (outfile && strcmp(outfile, "-")) {
232 if ((fd = open(outfile, O_CREAT | O_WRONLY |
235 err(EXIT_FAILURE, "%s", outfile);
241 if (do_ktrace(outfile, vers, ops, trpoints, getpid(), block) == 1) {
246 (void)do_ktrace(outfile, vers, ops, trpoints, getpid(), block);
251 (void)do_ktrace(outfile, vers, ops, trpoints, pid, block);
291 "[-o outfile] [-p pid] [-t " TRPOINTS "]\n", getprogname());
293 "[-adinRT] [-e emulation] [-m maxdata] [-o outfile]\n\t "