Home
last modified time | relevance | path

Searched refs:inputFile (Results 1 – 15 of 15) sorted by relevance

/freebsd/tools/test/stress2/misc/
H A Dsendfile.sh44 in=inputFile
71 char *inputFile;
177 if (stat(inputFile, &statb) != 0)
178 err(1, "stat(%s)", inputFile);
180 if ((fd = open(inputFile, O_RDONLY)) == -1)
181 err(1, "open(%s)", inputFile);
199 inputFile = argv[1];
H A Dsendfile3.sh45 in=inputFile
81 char *inputFile;
174 if (stat(inputFile, &statb) != 0)
175 err(1, "stat(%s)", inputFile);
177 if ((fd = open(inputFile, O_RDONLY)) == -1)
178 err(1, "open(%s)", inputFile);
193 inputFile = argv[1];
H A Dsendfile12.sh94 static char *inputFile;
194 if (stat(inputFile, &statb) != 0)
195 err(1, "stat(%s)", inputFile);
197 if ((fd = open(inputFile, O_RDWR)) == -1)
198 err(1, "open(%s)", inputFile);
224 inputFile = argv[1];
H A Dsendfile20.sh105 char *inputFile;
211 if (stat(inputFile, &statb) != 0)
212 err(1, "stat(%s)", inputFile);
214 if ((fd = open(inputFile, O_RDONLY)) == -1)
215 err(1, "open(%s)", inputFile);
233 inputFile = argv[1];
H A Dsendfile24.sh97 char *inputFile;
197 if (stat(inputFile, &statb) != 0)
198 err(1, "stat(%s)", inputFile);
200 if ((fd = open(inputFile, O_RDONLY)) == -1)
201 err(1, "open(%s)", inputFile);
219 inputFile = argv[1];
H A Dsendfile11.sh95 static char *inputFile;
194 if (stat(inputFile, &statb) != 0)
195 err(1, "stat(%s)", inputFile);
197 if ((fd = open(inputFile, O_RDONLY)) == -1)
198 err(1, "open(%s)", inputFile);
218 inputFile = argv[1];
H A Dsendfile19.sh104 char *inputFile;
210 if (stat(inputFile, &statb) != 0)
211 err(1, "stat(%s)", inputFile);
213 if ((fd = open(inputFile, O_RDONLY)) == -1)
214 err(1, "open(%s)", inputFile);
232 inputFile = argv[1];
H A Dsendfile25.sh98 char *inputFile;
198 if (stat(inputFile, &statb) != 0)
199 err(1, "stat(%s)", inputFile);
201 if ((fd = open(inputFile, O_RDONLY)) == -1)
202 err(1, "open(%s)", inputFile);
221 inputFile = argv[1];
H A Dmsdos18.sh57 in=inputFile
89 char *inputFile;
198 if ((fd = open(inputFile, O_RDWR | O_CREAT | O_TRUNC, 0640)) == -1)
199 err(1, "open(%s)", inputFile);
231 inputFile = argv[1];
H A Dsendfile13.sh262 writer(char *inputFile) {
304 if (stat(inputFile, &statb) != 0)
305 err(1, "stat(%s)", inputFile);
307 if ((fd = open(inputFile, O_RDWR)) == -1)
308 err(1, "open(%s)", inputFile);
H A Dsendfile14.sh257 writer(char *inputFile) {
298 if (stat(inputFile, &statb) != 0)
299 err(1, "stat(%s)", inputFile);
301 if ((fd = open(inputFile, O_RDWR)) == -1)
302 err(1, "open(%s)", inputFile);
H A Dzfs10.sh68 in=inputFile
/freebsd/sys/contrib/zstd/programs/
H A Dutil.c409 FILE* const inputFile = fopen(inputFileName, "r"); in readLinesFromFile() local
413 if(!inputFile) { in readLinesFromFile()
418 while ( !feof(inputFile) ) { in readLinesFromFile()
419 size_t const lineLength = readLineFromFile(buf+pos, dstCapacity-pos, inputFile); in readLinesFromFile()
426 CONTROL( fclose(inputFile) == 0 ); in readLinesFromFile()
/freebsd/contrib/llvm-project/lld/MachO/
H A DObjC.cpp264 lld::macho::InputFile *inputFile = section->getFile(); in parseMethods() local
265 std::string result = toString(inputFile); in parseMethods()
267 auto objFile = dyn_cast_or_null<ObjFile>(inputFile); in parseMethods()
H A DSyntheticSections.cpp1070 for (const InputFile *inputFile : inputFiles) { in collectDataInCodeEntries() local
1071 if (!isa<ObjFile>(inputFile)) in collectDataInCodeEntries()
1073 const ObjFile *objFile = cast<ObjFile>(inputFile); in collectDataInCodeEntries()