Home | History | Annotate | Download | only in stream

Lines Matching defs:tempfile

52 char tempfile[40] = "";
73 sprintf(tempfile, "stream05.%d", getpid());
76 if ((stream = fopen(tempfile, "a+")) == NULL) {
78 tempfile,
84 if ((stream = fopen(tempfile, "r+")) == NULL) {
86 tempfile,
135 if ((stream = fopen(tempfile, "r+")) == NULL) {
137 tempfile,
182 if ((stream = fopen(tempfile, "rb")) == NULL) {
184 tempfile,
189 if ((stream = fopen(tempfile, "wb")) == NULL) {
191 tempfile,
196 if ((stream = fopen(tempfile, "ab")) == NULL) {
198 tempfile,
203 if ((stream = fopen(tempfile, "rb+")) == NULL) {
205 tempfile,
210 if ((stream = fopen(tempfile, "wb+")) == NULL) {
212 tempfile,
217 if ((stream = fopen(tempfile, "ab+")) == NULL) {
219 tempfile,
226 unlink(tempfile);