Home | History | Annotate | Download | only in libprofile

Lines Matching refs:outFile

61   int outFile = getOutFile();
82 arrayHeaderLocation = lseek(outFile, 0, SEEK_CUR);
83 lseek(outFile, sizeof(PathProfileHeader), SEEK_CUR);
89 if (write(outFile, &pte, sizeof(PathProfileTableEntry)) < 0) {
102 arrayCurrentLocation = lseek(outFile, 0, SEEK_CUR);
103 lseek(outFile, arrayHeaderLocation, SEEK_SET);
105 if (write(outFile, &fHeader, sizeof(PathProfileHeader)) < 0) {
111 lseek(outFile, arrayCurrentLocation, SEEK_SET);
122 int outFile = getOutFile();
129 if (write(outFile, &header, sizeof(PathProfileHeader)) < 0) {
144 if (write(outFile, &pte, sizeof(PathProfileTableEntry)) < 0) {
227 int outFile = getOutFile();
234 headerLocation = lseek(outFile, 0, SEEK_CUR);
235 lseek(outFile, 2*sizeof(uint32_t), SEEK_CUR);
253 currentLocation = lseek(outFile, 0, SEEK_CUR);
254 lseek(outFile, headerLocation, SEEK_SET);
256 if (write(outFile, header, sizeof(header)) < 0) {
262 lseek(outFile, currentLocation, SEEK_SET);