Lines Matching refs:outn
120 struct output_file_normal *outn = to_output_file_normal(out); in file_open() local
122 outn->fd = fd; in file_open()
129 struct output_file_normal *outn = to_output_file_normal(out); in file_skip() local
131 ret = lseek64(outn->fd, cnt, SEEK_CUR); in file_skip()
142 struct output_file_normal *outn = to_output_file_normal(out); in file_pad() local
144 ret = ftruncate64(outn->fd, len); in file_pad()
155 struct output_file_normal *outn = to_output_file_normal(out); in file_write() local
157 ret = write(outn->fd, data, len); in file_write()
171 struct output_file_normal *outn = to_output_file_normal(out); in file_close() local
173 free(outn); in file_close()
619 struct output_file_normal *outn = calloc(1, sizeof(struct output_file_normal)); in output_file_new_normal() local
620 if (!outn) { in output_file_new_normal()
625 outn->out.ops = &file_ops; in output_file_new_normal()
627 return &outn->out; in output_file_new_normal()