Searched refs:in_file (Results 1 - 15 of 15) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/doc/examples/
H A Dxz_pipe_comp.c46 /* note: in_file and out_file must be open already */
47 int xz_compress (FILE *in_file, FILE *out_file) argument
73 in_len = fread (in_buf, 1, IN_BUF_MAX, in_file);
75 if (feof (in_file)) {
78 if (ferror (in_file)) {
H A Dxz_pipe_decomp.c34 /* note: in_file and out_file must be open already */
35 int xz_decompress (FILE *in_file, FILE *out_file) argument
61 in_len = fread (in_buf, 1, IN_BUF_MAX, in_file);
63 if (feof (in_file)) {
66 if (ferror (in_file)) {
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/doc/examples/
H A Dxz_pipe_comp.c46 /* note: in_file and out_file must be open already */
47 int xz_compress (FILE *in_file, FILE *out_file) argument
73 in_len = fread (in_buf, 1, IN_BUF_MAX, in_file);
75 if (feof (in_file)) {
78 if (ferror (in_file)) {
H A Dxz_pipe_decomp.c34 /* note: in_file and out_file must be open already */
35 int xz_decompress (FILE *in_file, FILE *out_file) argument
61 in_len = fread (in_buf, 1, IN_BUF_MAX, in_file);
63 if (feof (in_file)) {
66 if (ferror (in_file)) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/
H A Dzipfile.c2152 * Read the local header assumed at in_file file pointer.
2177 if (in_file) {
2178 fclose(in_file);
2179 in_file = NULL;
2188 if (in_file == NULL) {
2189 while ((in_file = zfopen(split_path, FOPR)) == NULL) {
2204 if (zfseeko(in_file, z->off, SEEK_SET) != 0) {
2205 fclose(in_file);
2206 in_file = NULL;
2210 if (!at_signature(in_file, "P
[all...]
H A Dcrypt.c243 * Encrypt the zip entry described by z from file in_file to file y
288 if ((c = getc(in_file)) == EOF) {
289 return ferror(in_file) ? ZE_READ : ZE_EOF;
308 if ((flag & 8) != 0 && zfseeko(in_file, 16L, SEEK_CUR)) {
309 return ferror(in_file) ? ZE_READ : ZE_EOF;
330 * Decrypt the zip entry described by z from file in_file to file y
369 if ((c1 = getc(in_file)) == EOF) {
370 return ferror(in_file) ? ZE_READ : ZE_EOF;
388 if (zfseeko(in_file, n, SEEK_SET)) {
389 return ferror(in_file)
[all...]
H A Dglobals.c172 FILE *in_file = NULL; /* current input file for splits */ variable
H A Dzipcloak.c648 if ((in_file = fopen(zipfile, FOPR)) == NULL) ziperr(ZE_NAME, zipfile);
686 fclose(in_file);
H A Dfileio.c1559 /* always copies from global in_file to global output file y */
1563 /* Copy n bytes from in_file to out_file, or until EOF if (zoff_t)n == -1.
1602 data_start = zftello(in_file);
1618 des_start = zftello(in_file);
1620 if ((k = fread(b, 1, brd, in_file)) == 0)
1626 else if (ferror(in_file))
1670 if (zfseeko(in_file, bytes_this_split + kk, SEEK_SET) != 0) {
1674 des_start = zftello(in_file);
1709 if (zfseeko(in_file, des_start + k, SEEK_SET) != 0) {
1732 data_start = zftello(in_file);
[all...]
H A Dzip.c294 if (in_file != NULL)
296 fclose(in_file);
297 in_file = NULL;
2410 in_file = NULL; /* current input file for splits */
3962 if (in_file != NULL) {
3963 fclose(in_file);
3964 in_file = NULL;
4853 while ((in_file = zfopen(in_split_path, FOPR_EX)) == NULL) {
4953 if (in_file && zipbeg && (r = bfcopy(zipbeg)) != ZE_OK) {
4956 if (in_file) {
[all...]
H A Dzipnote.c651 if ((in_file = fopen(zipfile, FOPR)) == NULL)
H A Dzip.h515 extern FILE *in_file; /* Current input file for spits */
H A Dzipsplit.c928 in_file = e;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/
H A Dread_write.c812 struct file * in_file, * out_file; local
822 in_file = fget_light(in_fd, &fput_needed_in);
823 if (!in_file)
825 if (!(in_file->f_mode & FMODE_READ))
829 ppos = &in_file->f_pos;
831 if (!(in_file->f_mode & FMODE_PREAD))
833 retval = rw_verify_area(READ, in_file, ppos, count);
848 in_inode = in_file->f_path.dentry->d_inode;
867 retval = do_splice_direct(in_file, ppos, out_file, count, fl);
882 fput_light(in_file, fput_needed_i
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/
H A Dffmpeg.c98 int in_file; member in struct:ChapterMap
2444 int infile = chapter_maps[i].in_file;
3063 c->in_file = strtol(p, &p, 0);

Completed in 134 milliseconds