Lines Matching refs:obj_in_stream
1448 static FILE *obj_in_stream = (FILE *) 0; /* file desc. to input .o */ variable
4215 sys_read = fread (small_buffer, 1, difference, obj_in_stream); in read_seek()
4225 else if (fseek (obj_in_stream, offset, SEEK_SET) < 0) in read_seek()
4229 sys_read = fread (ptr, 1, size, obj_in_stream); in read_seek()
4268 if (fstat (fileno (obj_in_stream), &stat_buf) != 0 in copy_object()
4269 || fseek (obj_in_stream, 0L, SEEK_SET) != 0) in copy_object()
4275 obj_in_stream); in copy_object()
4280 else if (sys_read == 0 && feof (obj_in_stream)) in copy_object()
4296 if (fseek (obj_in_stream, (long) orig_file_header.f_symptr, SEEK_SET) != 0) in copy_object()
4302 obj_in_stream); in copy_object()
4584 if (fseek (obj_in_stream, (long) 0, SEEK_SET) != 0) in copy_object()
4597 sys_read = fread (buffer, 1, num_write, obj_in_stream); in copy_object()
4805 obj_in_stream = fopen (obj_in_name, "r"); in main()
4806 if (obj_in_stream == (FILE *) 0) in main()