Searched refs:fh (Results 101 - 125 of 320) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/tlg2300/
H A Dpd-video.c142 static int vidioc_querycap(struct file *file, void *fh, argument
145 struct front_face *front = fh;
704 static int vidioc_enum_fmt(struct file *file, void *fh, argument
716 static int vidioc_g_fmt(struct file *file, void *fh, struct v4l2_format *f) argument
718 struct front_face *front = fh;
726 static int vidioc_try_fmt(struct file *file, void *fh, argument
787 static int vidioc_s_fmt(struct file *file, void *fh, struct v4l2_format *f) argument
789 struct front_face *front = fh;
810 static int vidioc_g_fmt_vbi(struct file *file, void *fh, argument
813 struct front_face *front = fh;
882 vidioc_s_std(struct file *file, void *fh, v4l2_std_id *norm) argument
889 vidioc_enum_input(struct file *file, void *fh, struct v4l2_input *in) argument
910 vidioc_g_input(struct file *file, void *fh, unsigned int *i) argument
922 vidioc_s_input(struct file *file, void *fh, unsigned int i) argument
950 vidioc_queryctrl(struct file *file, void *fh, struct v4l2_queryctrl *a) argument
963 vidioc_g_ctrl(struct file *file, void *fh, struct v4l2_control *ctrl) argument
987 vidioc_s_ctrl(struct file *file, void *fh, struct v4l2_control *a) argument
1014 vidioc_enumaudio(struct file *file, void *fh, struct v4l2_audio *a) argument
1025 vidioc_g_audio(struct file *file, void *fh, struct v4l2_audio *a) argument
1034 vidioc_s_audio(struct file *file, void *fh, struct v4l2_audio *a) argument
1040 vidioc_g_tuner(struct file *file, void *fh, struct v4l2_tuner *tuner) argument
1104 vidioc_s_tuner(struct file *file, void *fh, struct v4l2_tuner *a) argument
1119 vidioc_g_frequency(struct file *file, void *fh, struct v4l2_frequency *freq) argument
1152 vidioc_s_frequency(struct file *file, void *fh, struct v4l2_frequency *freq) argument
1166 vidioc_reqbufs(struct file *file, void *fh, struct v4l2_requestbuffers *b) argument
1174 vidioc_querybuf(struct file *file, void *fh, struct v4l2_buffer *b) argument
1181 vidioc_qbuf(struct file *file, void *fh, struct v4l2_buffer *b) argument
1187 vidioc_dqbuf(struct file *file, void *fh, struct v4l2_buffer *b) argument
1261 vidioc_streamon(struct file *file, void *fh, enum v4l2_buf_type type) argument
1272 vidioc_streamoff(struct file *file, void *fh, enum v4l2_buf_type type) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/nfs/
H A Dnfs3xdr.c107 xdr_encode_fhandle(__be32 *p, const struct nfs_fh *fh) argument
109 return xdr_encode_array(p, fh->data, fh->size);
113 xdr_decode_fhandle(__be32 *p, struct nfs_fh *fh) argument
115 if ((fh->size = ntohl(*p++)) <= NFS3_FHSIZE) {
116 memcpy(fh->data, p, fh->size);
117 return p + XDR_QUADLEN(fh->size);
267 nfs3_xdr_fhandle(struct rpc_rqst *req, __be32 *p, struct nfs_fh *fh) argument
269 p = xdr_encode_fhandle(p, fh);
[all...]
H A Dnfsroot.c500 request.fh = nfs_alloc_fhandle();
501 if (!request.fh)
509 nfs_data.root.size = request.fh->size;
510 memcpy(&nfs_data.root.data, request.fh->data, request.fh->size);
512 nfs_free_fhandle(request.fh);
H A Dcallback.h53 struct nfs_fh fh; member in struct:cb_getattrargs
68 struct nfs_fh fh; member in struct:cb_recallargs
H A Dproc.c155 .fh = NFS_FH(inode),
184 .fh = NFS_FH(dir),
189 .fh = fhandle,
210 .fh = NFS_FH(inode),
242 data->arg.fh = NFS_FH(dir);
248 data->res.fh = &data->fhandle;
278 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr);
325 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr);
336 .fh = NFS_FH(dir),
421 struct nfs_fh *fh; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/smbd/
H A Dopen.c61 fsp->fh->fd = SMB_VFS_OPEN(conn,fname,fsp,flags,mode);
62 if (fsp->fh->fd == -1) {
67 fname, flags, (int)mode, fsp->fh->fd,
68 (fsp->fh->fd == -1) ? strerror(errno) : "" ));
81 DEBUG(10, ("read only: %d\n", fsp->fh->fd));
85 if(fsp->fh->fd >= 0 && !fcntl(fsp->fh->fd, F_GETLK, &my_lock))
90 DEBUG(10, ("This file is locked, %d\n", fsp->fh->fd));
92 DEBUG(10, ("This file unlocked, %d\n", fsp->fh->fd));
94 if(fcntl(fsp->fh
[all...]
H A Dvfs.c355 ssize_t ret = SMB_VFS_READ(fsp, fsp->fh->fd, buf + total,
377 ssize_t ret = SMB_VFS_PREAD(fsp, fsp->fh->fd, buf + total,
402 ret = SMB_VFS_WRITE(fsp,fsp->fh->fd,buffer + total,N - total);
435 ret = SMB_VFS_PWRITE(fsp, fsp->fh->fd, buffer + total,
482 ret = SMB_VFS_FSTAT(fsp,fsp->fh->fd,&st);
496 if ((ret = SMB_VFS_FTRUNCATE(fsp, fsp->fh->fd, (SMB_OFF_T)len)) != -1) {
539 if ((ret = SMB_VFS_FTRUNCATE(fsp, fsp->fh->fd, len)) != -1) {
572 ret = SMB_VFS_FSTAT(fsp,fsp->fh->fd,&st);
601 pwrite_ret = SMB_VFS_PWRITE(fsp, fsp->fh->fd, sparse_buf, curr_write_size, offset + total);
640 return transfer_file_internal(in_fsp->fh
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/scsi/
H A Dfc_encode.h56 struct fc_frame_header *fh; local
58 fh = fc_frame_header_get(fp);
60 fh->fh_r_ctl = r_ctl;
61 hton24(fh->fh_d_id, did);
62 hton24(fh->fh_s_id, sid);
63 fh->fh_type = type;
64 hton24(fh->fh_f_ctl, f_ctl);
65 fh->fh_cs_ctl = 0;
66 fh->fh_df_ctl = 0;
67 fh
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/
H A Dhexium_gemini.c221 static int vidioc_enum_input(struct file *file, void *fh, struct v4l2_input *i) argument
234 static int vidioc_g_input(struct file *file, void *fh, unsigned int *input) argument
236 struct saa7146_dev *dev = ((struct saa7146_fh *)fh)->dev;
245 static int vidioc_s_input(struct file *file, void *fh, unsigned int input) argument
247 struct saa7146_dev *dev = ((struct saa7146_fh *)fh)->dev;
263 static int vidioc_queryctrl(struct file *file, void *fh, struct v4l2_queryctrl *qc) argument
265 struct saa7146_dev *dev = ((struct saa7146_fh *)fh)->dev;
275 return dev->ext_vv_data->core_ops->vidioc_queryctrl(file, fh, qc);
278 static int vidioc_g_ctrl(struct file *file, void *fh, struct v4l2_control *vc) argument
280 struct saa7146_dev *dev = ((struct saa7146_fh *)fh)
300 vidioc_s_ctrl(struct file *file, void *fh, struct v4l2_control *vc) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/nfsd/
H A Dnfsxdr.c214 if (!(p = decode_fh(p, &args->fh)))
223 p = decode_fh(p, &args->fh);
235 if (!(p = decode_fh(p, &args->fh))
248 if (!(p = decode_fh(p, &args->fh)))
280 if (!(p = decode_fh(p, &args->fh)))
330 if ( !(p = decode_fh(p, &args->fh))
354 if (!(p = decode_fh(p, &args->fh)))
390 if (!(p = decode_fh(p, &args->fh)))
415 p = encode_fattr(rqstp, p, &resp->fh, &resp->stat);
423 p = encode_fh(p, &resp->fh);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/cpia2/
H A Dcpia2_v4l.c276 struct cpia2_fh *fh = kmalloc(sizeof(*fh),GFP_KERNEL); local
277 if(!fh) {
281 file->private_data = fh;
282 fh->prio = V4L2_PRIORITY_UNSET;
283 v4l2_prio_open(&cam->prio, &fh->prio);
284 fh->mmapped = 0;
305 struct cpia2_fh *fh = file->private_data; local
311 || fh->prio == V4L2_PRIORITY_RECORD
325 if(fh
358 struct cpia2_fh *fh = file->private_data; local
380 struct cpia2_fh *fh = filp->private_data; local
532 ioctl_set_window_size(void *arg, struct camera_data *cam, struct cpia2_fh *fh) argument
604 ioctl_mcapture(void *arg, struct camera_data *cam, struct cpia2_fh *fh) argument
873 ioctl_set_fmt(void *arg,struct camera_data *cam, struct cpia2_fh *fh) argument
1594 struct cpia2_fh *fh = file->private_data; local
1605 struct cpia2_fh *fh = file->private_data; local
1728 struct cpia2_fh *fh = file->private_data; local
1734 struct cpia2_fh *fh = file->private_data; local
1857 struct cpia2_fh *fh = file->private_data; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/common/
H A Dsaa7146_hlp.c337 static void calculate_clipping_registers_rect(struct saa7146_dev *dev, struct saa7146_fh *fh, argument
343 int width = fh->ov.win.w.width;
344 int height = fh->ov.win.w.height;
345 int clipcount = fh->ov.nclips;
365 x[i] = fh->ov.clips[i].c.left;
366 y[i] = fh->ov.clips[i].c.top;
367 w[i] = fh->ov.clips[i].c.width;
368 h[i] = fh->ov.clips[i].c.height;
482 static void saa7146_set_clipping_rect(struct saa7146_fh *fh) argument
484 struct saa7146_dev *dev = fh
638 saa7146_enable_overlay(struct saa7146_fh *fh) argument
653 saa7146_disable_overlay(struct saa7146_fh *fh) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/modules/
H A Dgpfs.c46 if ((fsp == NULL) || (fsp->fh == NULL) || (fsp->fh->fd < 0)) {
68 result = gpfs_set_share_fn(fsp->fh->fd, allow, deny);
H A Dvfs_commit.c61 fdatasync(fsp->fh->fd);
85 fdatasync(fsp->fh->fd);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/xfs/linux-2.6/
H A Dxfs_export.c57 __u32 *fh,
61 struct fid *fid = (struct fid *)fh;
62 struct xfs_fid64 *fid64 = (struct xfs_fid64 *)fh;
55 xfs_fs_encode_fh( struct dentry *dentry, __u32 *fh, int *max_len, int connectable) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ntfs-3g-2009.3.8/libfuse-lite/
H A Dfuse_lowlevel.c299 arg->fh = f->fh;
468 fi->fh = arg->fh;
469 fi->fh_old = fi->fh;
606 fi.fh = arg->fh;
607 fi.fh_old = fi.fh;
619 fi.fh = arg->fh;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/cx88/
H A Dcx88-vbi.c25 struct cx8800_fh *fh = priv; local
26 struct cx8800_dev *dev = fh->dev;
160 struct cx8800_fh *fh = q->priv_data; local
161 struct cx8800_dev *dev = fh->dev;
198 struct cx8800_fh *fh = vq->priv_data; local
199 struct cx8800_dev *dev = fh->dev;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/tools/
H A Dplotframes126 open($stats{$type}->{fh}, ">", $fn) or die "Can't open $fn";
129 print { $stats{$type}->{fh} }
132 foreach (keys %stats) { close $stats{$_}->{fh}; }
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Dfile.c89 HANDLE mh, fh = (HANDLE)_get_osfhandle(fd); local
91 mh = CreateFileMapping(fh, NULL, PAGE_READONLY, 0, 0, NULL);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/omap/
H A Domap_vout.c1353 static int vidioc_querycap(struct file *file, void *fh, argument
1356 struct omap_vout_device *vout = fh;
1366 static int vidioc_enum_fmt_vid_out(struct file *file, void *fh, argument
1385 static int vidioc_g_fmt_vid_out(struct file *file, void *fh, argument
1388 struct omap_vout_device *vout = fh;
1395 static int vidioc_try_fmt_vid_out(struct file *file, void *fh, argument
1401 struct omap_vout_device *vout = fh;
1418 static int vidioc_s_fmt_vid_out(struct file *file, void *fh, argument
1425 struct omap_vout_device *vout = fh;
1492 static int vidioc_try_fmt_vid_overlay(struct file *file, void *fh, argument
1511 vidioc_s_fmt_vid_overlay(struct file *file, void *fh, struct v4l2_format *f) argument
1538 vidioc_enum_fmt_vid_overlay(struct file *file, void *fh, struct v4l2_fmtdesc *fmt) argument
1556 vidioc_g_fmt_vid_overlay(struct file *file, void *fh, struct v4l2_format *f) argument
1581 vidioc_cropcap(struct file *file, void *fh, struct v4l2_cropcap *cropcap) argument
1600 vidioc_g_crop(struct file *file, void *fh, struct v4l2_crop *crop) argument
1610 vidioc_s_crop(struct file *file, void *fh, struct v4l2_crop *crop) argument
1649 vidioc_queryctrl(struct file *file, void *fh, struct v4l2_queryctrl *ctrl) argument
1671 vidioc_g_ctrl(struct file *file, void *fh, struct v4l2_control *ctrl) argument
1704 vidioc_s_ctrl(struct file *file, void *fh, struct v4l2_control *a) argument
1787 vidioc_reqbufs(struct file *file, void *fh, struct v4l2_requestbuffers *req) argument
1854 vidioc_querybuf(struct file *file, void *fh, struct v4l2_buffer *b) argument
1862 vidioc_qbuf(struct file *file, void *fh, struct v4l2_buffer *buffer) argument
1890 vidioc_dqbuf(struct file *file, void *fh, struct v4l2_buffer *b) argument
1906 vidioc_streamon(struct file *file, void *fh, enum v4l2_buf_type i) argument
1991 vidioc_streamoff(struct file *file, void *fh, enum v4l2_buf_type i) argument
2033 vidioc_s_fbuf(struct file *file, void *fh, struct v4l2_framebuffer *a) argument
2103 vidioc_g_fbuf(struct file *file, void *fh, struct v4l2_framebuffer *a) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/davinci/
H A Dvpfe_capture.c495 struct vpfe_fh *fh; local
505 fh = kmalloc(sizeof(struct vpfe_fh), GFP_KERNEL);
506 if (NULL == fh) {
511 /* store pointer to fh in private_data member of file */
512 file->private_data = fh;
513 fh->vpfe_dev = vpfe_dev;
525 fh->io_allowed = 0;
527 fh->prio = V4L2_PRIORITY_UNSET;
528 v4l2_prio_open(&vpfe_dev->prio, &fh->prio);
710 struct vpfe_fh *fh local
1239 struct vpfe_fh *fh = vq->priv_data; local
1259 struct vpfe_fh *fh = vq->priv_data; local
1291 struct vpfe_fh *fh = vq->priv_data; local
1309 struct vpfe_fh *fh = vq->priv_data; local
1341 struct vpfe_fh *fh = file->private_data; local
1404 struct vpfe_fh *fh = file->private_data; local
1506 struct vpfe_fh *fh = file->private_data; local
1590 struct vpfe_fh *fh = file->private_data; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/bf/
H A Dbfs.cpp26 __asm _emit 0fh
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/rc4/
H A Drc4s.cpp26 __asm _emit 0fh
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/rc5/
H A Drc5s.cpp26 __asm _emit 0fh
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/ripemd/asm/
H A Drips.cpp26 __asm _emit 0fh

Completed in 212 milliseconds

1234567891011>>