Lines Matching +full:- +full:outfile
9 FILE * outfile = NULL; variable
16 return -1; in bufferToFile()
22 return -2; in bufferToFile()
26 return -3; in bufferToFile()
33 if (outfile != NULL) { in fuzz_openFile()
34 fclose(outfile); in fuzz_openFile()
36 outfile = fopen(name, "w"); in fuzz_openFile()
51 if (outfile == NULL) { in LLVMFuzzerTestOneInput()
52 outfile = fopen("/dev/null", "w"); in LLVMFuzzerTestOneInput()
53 if (outfile == NULL) { in LLVMFuzzerTestOneInput()
67 if (bufferToFile("/tmp/fuzz.pcap", Data+1+filterSize, Size-(1+filterSize)) < 0) { in LLVMFuzzerTestOneInput()
74 fprintf(outfile, "Couldn't open pcap file %s\n", errbuf); in LLVMFuzzerTestOneInput()
81 filter[filterSize-1] = 0; in LLVMFuzzerTestOneInput()
88 …fprintf(outfile, "packet length=%d/%d filter=%d\n",header->caplen, header->len, pcap_offline_filte… in LLVMFuzzerTestOneInput()