Lines Matching refs:outFile
56 int outFile = getOutFile();
77 arrayHeaderLocation = lseek(outFile, 0, SEEK_CUR);
78 lseek(outFile, sizeof(PathProfileHeader), SEEK_CUR);
84 if (write(outFile, &pte, sizeof(PathProfileTableEntry)) < 0) {
97 arrayCurrentLocation = lseek(outFile, 0, SEEK_CUR);
98 lseek(outFile, arrayHeaderLocation, SEEK_SET);
100 if (write(outFile, &fHeader, sizeof(PathProfileHeader)) < 0) {
106 lseek(outFile, arrayCurrentLocation, SEEK_SET);
117 int outFile = getOutFile();
124 if (write(outFile, &header, sizeof(PathProfileHeader)) < 0) {
139 if (write(outFile, &pte, sizeof(PathProfileTableEntry)) < 0) {
222 int outFile = getOutFile();
229 headerLocation = lseek(outFile, 0, SEEK_CUR);
230 lseek(outFile, 2*sizeof(uint32_t), SEEK_CUR);
248 currentLocation = lseek(outFile, 0, SEEK_CUR);
249 lseek(outFile, headerLocation, SEEK_SET);
251 if (write(outFile, header, sizeof(header)) < 0) {
257 lseek(outFile, currentLocation, SEEK_SET);