Home | History | Annotate | Download | only in qphelper

Lines Matching refs:tmpFile

536 		int		tmpFile			= mkstemp(tmpFileName);
538 if (tmpFile == -1)
540 writeInfoFormat(writeInfo, userPtr, "Failed to create tmpfile '%s' for the backtrace %s.", tmpFileName, strerror(errno));
553 backtrace_symbols_fd(symbols, symbolCount, tmpFile);
555 if (lseek(tmpFile, 0, SEEK_SET) < 0)
558 close(tmpFile);
587 if (read(tmpFile, &c, 1) == 1)
614 close(tmpFile);
615 tmpFile = -1;
621 if (tmpFile == -1)
625 if (tmpFile != -1)
626 close(tmpFile);