Searched refs:fh (Results 1 - 25 of 193) sorted by relevance

12345678

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/media/
H A Dv4l2-dev.h111 int (*vidioc_querycap)(struct file *file, void *fh, struct v4l2_capability *cap);
114 int (*vidioc_g_priority) (struct file *file, void *fh,
116 int (*vidioc_s_priority) (struct file *file, void *fh,
120 int (*vidioc_enum_fmt_cap) (struct file *file, void *fh,
122 int (*vidioc_enum_fmt_overlay) (struct file *file, void *fh,
124 int (*vidioc_enum_fmt_vbi) (struct file *file, void *fh,
126 int (*vidioc_enum_fmt_vbi_capture) (struct file *file, void *fh,
128 int (*vidioc_enum_fmt_video_output)(struct file *file, void *fh,
130 int (*vidioc_enum_fmt_output_overlay) (struct file *file, void *fh,
132 int (*vidioc_enum_fmt_vbi_output) (struct file *file, void *fh,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/bin/megatron/
H A Dmacbin.h11 int bin_open(char *binfile, int flags, struct FHeader *fh, int options);
15 int bin_header_read(struct FHeader *fh, int revision);
16 int bin_header_write(struct FHeader *fh);
H A Dnad.h11 int nad_open(char *path, int openflags, struct FHeader *fh, int options);
12 int nad_header_read(struct FHeader *fh);
13 int nad_header_write(struct FHeader *fh);
H A Dhqx.h12 int hqx_open(char *hqxfile, int flags, struct FHeader *fh, int options);
15 int hqx_header_read(struct FHeader *fh);
16 int hqx_header_write(struct FHeader *fh);
H A Dmacbin.c73 int bin_open(char *binfile, int flags, struct FHeader *fh, int options) argument
104 ( bin_header_read( fh, rc ) == 0 )) {
118 strncpy( bin.path, fh->name, maxlen );
131 if ( bin_header_write( fh ) != 0 ) {
314 * read from the fh substruct. it must be called before any
318 int bin_header_read(struct FHeader *fh, int revision) argument
333 memcpy(&fh->finder_info.fdFlags + 1, head_buf + 101,1 );
345 * MacBinary header into the fh struct. What fun!
348 memcpy(fh->name, head_buf + 2, head_buf[ 1 ] );
349 memcpy(&fh
418 bin_header_write(struct FHeader *fh) argument
[all...]
H A Dasingle.h11 int single_open(char *singlefile, int flags, struct FHeader *fh, int options);
13 int single_header_read(struct FHeader *fh, int version);
H A Dasingle.c65 int single_open(char *singlefile, int flags, struct FHeader *fh, int options _U_) argument
81 ( single_header_read( fh, rc ) == 0 )) {
111 * can read from the fh substruct. it must be called before any of the
115 int single_header_read( struct FHeader *fh, int version) argument
189 * the informational entries into the fh struct. The ENTRYID_DATA
202 if ( read( single.filed, (char *)fh->name, readlen ) != readlen ) {
218 memcpy( &fh->finder_info.fdType, entry_buf + FINDERIOFF_TYPE,
219 sizeof( fh->finder_info.fdType ));
220 memcpy( &fh->finder_info.fdCreator, entry_buf + FINDERIOFF_CREATOR,
221 sizeof( fh
[all...]
H A Dmegatron.c39 static int from_open(int un, char *file, struct FHeader *fh, int flags) argument
45 return( hqx_open( file, O_RDONLY, fh, flags ));
49 return( bin_open( file, O_RDONLY, fh, flags ));
53 return( nad_open( file, O_RDONLY, fh, flags ));
57 return( single_open( file, O_RDONLY, fh, flags ));
110 static int to_open(int to, char *file, struct FHeader *fh, int flags) argument
117 return( nad_open( file, O_RDWR|O_CREAT|O_EXCL, fh, flags ));
122 return( bin_open( file, O_RDWR|O_CREAT|O_EXCL, fh, flags ));
173 struct FHeader fh; local
198 memset( &fh,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/bin/megatron/
H A Dmacbin.h11 int bin_open(char *binfile, int flags, struct FHeader *fh, int options);
15 int bin_header_read(struct FHeader *fh, int revision);
16 int bin_header_write(struct FHeader *fh);
H A Dnad.h11 int nad_open(char *path, int openflags, struct FHeader *fh, int options);
12 int nad_header_read(struct FHeader *fh);
13 int nad_header_write(struct FHeader *fh);
H A Dhqx.h12 int hqx_open(char *hqxfile, int flags, struct FHeader *fh, int options);
15 int hqx_header_read(struct FHeader *fh);
16 int hqx_header_write(struct FHeader *fh);
H A Dmacbin.c73 int bin_open(char *binfile, int flags, struct FHeader *fh, int options) argument
104 ( bin_header_read( fh, rc ) == 0 )) {
118 strncpy( bin.path, fh->name, maxlen );
131 if ( bin_header_write( fh ) != 0 ) {
314 * read from the fh substruct. it must be called before any
318 int bin_header_read(struct FHeader *fh, int revision) argument
333 memcpy(&fh->finder_info.fdFlags + 1, head_buf + 101,1 );
345 * MacBinary header into the fh struct. What fun!
348 memcpy(fh->name, head_buf + 2, head_buf[ 1 ] );
349 memcpy(&fh
418 bin_header_write(struct FHeader *fh) argument
[all...]
H A Dasingle.h11 int single_open(char *singlefile, int flags, struct FHeader *fh, int options);
13 int single_header_read(struct FHeader *fh, int version);
H A Dasingle.c65 int single_open(char *singlefile, int flags, struct FHeader *fh, int options _U_) argument
81 ( single_header_read( fh, rc ) == 0 )) {
111 * can read from the fh substruct. it must be called before any of the
115 int single_header_read( struct FHeader *fh, int version) argument
189 * the informational entries into the fh struct. The ENTRYID_DATA
202 if ( read( single.filed, (char *)fh->name, readlen ) != readlen ) {
218 memcpy( &fh->finder_info.fdType, entry_buf + FINDERIOFF_TYPE,
219 sizeof( fh->finder_info.fdType ));
220 memcpy( &fh->finder_info.fdCreator, entry_buf + FINDERIOFF_CREATOR,
221 sizeof( fh
[all...]
H A Dmegatron.c35 static int from_open(int un, char *file, struct FHeader *fh, int flags) argument
41 return( hqx_open( file, O_RDONLY, fh, flags ));
45 return( bin_open( file, O_RDONLY, fh, flags ));
49 return( nad_open( file, O_RDONLY, fh, flags ));
53 return( single_open( file, O_RDONLY, fh, flags ));
106 static int to_open(int to, char *file, struct FHeader *fh, int flags) argument
113 return( nad_open( file, O_RDWR|O_CREAT|O_EXCL, fh, flags ));
118 return( bin_open( file, O_RDWR|O_CREAT|O_EXCL, fh, flags ));
169 struct FHeader fh; local
194 memset( &fh,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv6/netfilter/
H A Dip6t_frag.c49 struct frag_hdr _frag, *fh; local
61 fh = skb_header_pointer(skb, ptr, sizeof(_frag), &_frag);
62 if (fh == NULL) {
67 DEBUGP("INFO %04X ", fh->frag_off);
68 DEBUGP("OFFSET %04X ", ntohs(fh->frag_off) & ~0x7);
69 DEBUGP("RES %02X %04X", fh->reserved, ntohs(fh->frag_off) & 0x6);
70 DEBUGP("MF %04X ", fh->frag_off & htons(IP6_MF));
71 DEBUGP("ID %u %08X\n", ntohl(fh->identification),
72 ntohl(fh
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/common/
H A Dsaa7146_video.c8 #define IS_CAPTURE_ACTIVE(fh) \
9 (((vv->video_status & STATUS_CAPTURE) != 0) && (vv->video_fh == fh))
11 #define IS_OVERLAY_ACTIVE(fh) \
12 (((vv->video_status & STATUS_OVERLAY) != 0) && (vv->video_fh == fh))
100 static int g_fmt(struct saa7146_fh *fh, struct v4l2_format *f) argument
102 struct saa7146_dev *dev = fh->dev;
103 DEB_EE(("dev:%p, fh:%p\n",dev,fh));
107 f->fmt.pix = fh->video_fmt;
110 f->fmt.win = fh
180 try_fmt(struct saa7146_fh *fh, struct v4l2_format *f) argument
262 saa7146_start_preview(struct saa7146_fh *fh) argument
323 saa7146_stop_preview(struct saa7146_fh *fh) argument
358 s_fmt(struct saa7146_fh *fh, struct v4l2_format *f) argument
466 get_control(struct saa7146_fh *fh, struct v4l2_control *c) argument
508 set_control(struct saa7146_fh *fh, struct v4l2_control *c) argument
711 video_begin(struct saa7146_fh *fh) argument
772 video_end(struct saa7146_fh *fh, struct file *file) argument
837 struct saa7146_fh *fh = file->private_data; local
1246 struct saa7146_fh *fh = file->private_data; local
1329 struct saa7146_fh *fh = file->private_data; local
1349 struct saa7146_fh *fh = file->private_data; local
1361 struct saa7146_fh *fh = file->private_data; local
1398 struct saa7146_fh *fh = (struct saa7146_fh *)file->private_data; local
1424 struct saa7146_fh *fh = (struct saa7146_fh *)file->private_data; local
1464 struct saa7146_fh *fh = file->private_data; local
[all...]
H A Dsaa7146_vbi.c211 struct saa7146_fh *fh = file->private_data; local
212 struct saa7146_dev *dev = fh->dev;
278 struct saa7146_fh *fh = file->private_data; local
279 struct saa7146_dev *dev = fh->dev;
290 struct saa7146_fh *fh = file->private_data; local
291 struct saa7146_dev *dev = fh->dev;
307 static void vbi_stop(struct saa7146_fh *fh, struct file *file) argument
309 struct saa7146_dev *dev = fh->dev;
312 DEB_VBI(("dev:%p, fh:%p\n",dev, fh));
342 struct saa7146_fh *fh = file->private_data; local
366 struct saa7146_fh *fh = (struct saa7146_fh *)file->private_data; local
428 struct saa7146_fh *fh = (struct saa7146_fh *)file->private_data; local
459 struct saa7146_fh *fh = file->private_data; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/
H A Dzoran_driver.c322 struct zoran_fh *fh = file->private_data; local
323 struct zoran *zr = fh->zr;
331 if (fh->v4l_buffers.ready_to_be_freed) {
335 for (i = 0; i < fh->v4l_buffers.num_buffers; i++) {
336 if (fh->v4l_buffers.buffer[i].fbuffer)
343 if (fh->v4l_buffers.buffer_size <= MAX_KMALLOC_MEM) {
347 (unsigned char *) kmalloc(fh->v4l_buffers.
358 fh->v4l_buffers.buffer[i].fbuffer = mem;
359 fh->v4l_buffers.buffer[i].fbuffer_phys =
361 fh
470 struct zoran_fh *fh = file->private_data; local
537 struct zoran_fh *fh = file->private_data; local
632 struct zoran_fh *fh = file->private_data; local
702 struct zoran_fh *fh = file->private_data; local
750 struct zoran_fh *fh = file->private_data; local
830 struct zoran_fh *fh = file->private_data; local
892 struct zoran_fh *fh = file->private_data; local
964 struct zoran_fh *fh = file->private_data; local
1062 struct zoran_fh *fh = file->private_data; local
1108 struct zoran_fh *fh = file->private_data; local
1178 struct zoran_fh *fh = file->private_data; local
1225 struct zoran_fh *fh = file->private_data; local
1276 struct zoran_fh *fh; local
1414 struct zoran_fh *fh = file->private_data; local
1507 struct zoran_fh *fh = file->private_data; local
1572 struct zoran_fh *fh = file->private_data; local
1692 struct zoran_fh *fh = file->private_data; local
1762 struct zoran_fh *fh = file->private_data; local
2004 struct zoran_fh *fh = file->private_data; local
4262 struct zoran_fh *fh = file->private_data; local
4355 struct zoran_fh *fh = file->private_data; local
4453 struct zoran_fh *fh = file->private_data; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/nfsd/
H A Dlockd.c29 struct svc_fh fh; local
32 fh_init(&fh,0);
33 fh.fh_handle.fh_size = f->size;
34 memcpy((char*)&fh.fh_handle.fh_base, f->data, f->size);
35 fh.fh_export = NULL;
38 nfserr = nfsd_open(rqstp, &fh, S_IFREG, MAY_LOCK, filp);
39 fh_put(&fh);
H A Dnfs2acl.c36 svc_fh *fh; local
40 dprintk("nfsd: GETACL(2acl) %s\n", SVCFH_fmt(&argp->fh));
42 fh = fh_copy(&resp->fh, &argp->fh);
43 if ((nfserr = fh_verify(rqstp, &resp->fh, 0, MAY_NOP)))
51 acl = nfsd_get_posix_acl(fh, ACL_TYPE_ACCESS);
65 struct inode *inode = fh->fh_dentry->d_inode;
74 acl = nfsd_get_posix_acl(fh, ACL_TYPE_DEFAULT);
104 svc_fh *fh; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/bt8xx/
H A Dbttv-vbi.c80 struct bttv_fh *fh = q->priv_data; local
81 struct bttv *btv = fh->btv;
86 *size = IMAGE_SIZE(&fh->vbi_fmt.fmt);
89 fh->vbi_fmt.fmt.samples_per_line,
90 fh->vbi_fmt.fmt.start[0],
91 fh->vbi_fmt.fmt.start[1],
92 fh->vbi_fmt.fmt.count[0],
93 fh->vbi_fmt.fmt.count[1]);
102 struct bttv_fh *fh = q->priv_data; local
103 struct bttv *btv = fh
207 struct bttv_fh *fh = q->priv_data; local
222 struct bttv_fh *fh = q->priv_data; local
309 bttv_vbi_try_fmt(struct bttv_fh * fh, struct v4l2_vbi_format * f) argument
327 bttv_vbi_set_fmt(struct bttv_fh * fh, struct v4l2_vbi_format * f) argument
374 bttv_vbi_get_fmt(struct bttv_fh * fh, struct v4l2_vbi_format * f) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/etc/afpd/
H A Dfce_util.c149 struct fce_history *fh = &fce_history_list[i]; local
152 if (fh->tv.tv_sec == 0)
161 if (get_ms_difftime( &fh->tv, &tv ) > MAX_COALESCE_TIME_MS)
164 fh->tv.tv_sec = 0;
173 if (coalesce_create() && fh->mode == FCE_DIR_CREATE)
176 if (!strncmp( fh->path, path, strlen( fh->path ) ) )
183 if (coalesce_delete() && fh->is_dir && (mode == FCE_FILE_DELETE || mode == FCE_DIR_DELETE))
186 if (!strncmp( fh->path, path, strlen( fh
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/afpd/
H A Dfce_util.c117 struct fce_history *fh = &fce_history_list[i]; local
120 if (fh->tv.tv_sec == 0) {
128 if (get_ms_difftime( &fh->tv, &tv ) > MAX_COALESCE_TIME_MS) {
130 fh->tv.tv_sec = 0;
138 if ((coalesce & FCE_COALESCE_CREATE) && (fh->mode == FCE_DIR_CREATE)) {
140 if (!strncmp(fh->path, path, strlen(fh->path)))
146 && fh->is_dir
149 if (!strncmp(fh->path, path, strlen(fh
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/smbd/
H A Dfake_file.c123 FAKE_FILE_HANDLE *fh = NULL; local
135 if ((fh =TALLOC_ZERO_P(mem_ctx, FAKE_FILE_HANDLE))==NULL) {
141 fh->type = type;
142 fh->mem_ctx = mem_ctx;
145 fh->pd = fake_files[i].init_pd(fh->mem_ctx);
147 fh->free_pd = fake_files[i].free_pd;
149 return fh;
156 void destroy_fake_file_handle(FAKE_FILE_HANDLE **fh) argument
158 if (!fh||!(*f
[all...]

Completed in 200 milliseconds

12345678