Home | History | Annotate | Download | only in dmtracedump

Lines Matching refs:FILE

6 ** you may not use this file except in compliance with the License.
19 * Create a test file in the format required by dmtrace.
36 * Values from the header of the data file.
95 * Parse the input file. It looks something like this:
110 * An alternative file format leaves out the first two columns:
116 * In this file format, the thread id is always 1, and the time starts at
128 FILE *inputFp = fopen(inputFileName, "r");
324 * Write values to the binary data file.
326 void write2LE(FILE* fp, unsigned short val)
332 void write4LE(FILE* fp, unsigned int val)
340 void write8LE(FILE* fp, unsigned long long val)
352 void writeDataRecord(FILE *dataFp, int threadId, unsigned int methodVal,
363 void writeDataHeader(FILE *dataFp)
378 void writeKeyMethods(FILE *keyFp)
416 void writeKeys(FILE *keyFp)
424 void writeDataRecords(FILE *dataFp)
436 FILE *fp = fopen(traceFileName, "w");