[go: nahoru, domu]

Searched refs:fd (Results 76 - 100 of 125) sorted by relevance

12345

/drivers/char/
H A Dhpet.c406 static int hpet_fasync(int fd, struct file *file, int on) argument
412 if (fasync_helper(fd, file, on, &devp->hd_async_queue) >= 0)
H A Drtc.c748 static int rtc_fasync(int fd, struct file *filp, int on) argument
750 return fasync_helper(fd, filp, on, &rtc_async_queue);
H A Drandom.c1501 static int random_fasync(int fd, struct file *filp, int on) argument
1503 return fasync_helper(fd, filp, on, &fasync);
H A Dsonypi.c887 static int sonypi_misc_fasync(int fd, struct file *filp, int on) argument
889 return fasync_helper(fd, filp, on, &sonypi_device.fifo_async);
H A Dvirtio_console.c1093 static int port_fops_fasync(int fd, struct file *filp, int mode) argument
1098 return fasync_helper(fd, filp, mode, &port->async_queue);
/drivers/char/ipmi/
H A Dipmi_devintf.c99 static int ipmi_fasync(int fd, struct file *file, int on) argument
105 result = fasync_helper(fd, file, on, &priv->fasync_queue);
H A Dipmi_watchdog.c897 static int ipmi_fasync(int fd, struct file *file, int on) argument
901 result = fasync_helper(fd, file, on, &fasync_q);
/drivers/hid/usbhid/
H A Dhiddev.c226 static int hiddev_fasync(int fd, struct file *file, int on) argument
230 return fasync_helper(fd, file, on, &list->fasync);
/drivers/input/
H A Djoydev.c159 static int joydev_fasync(int fd, struct file *file, int on) argument
163 return fasync_helper(fd, file, on, &client->fasync);
H A Dmousedev.c407 static int mousedev_fasync(int fd, struct file *file, int on) argument
411 return fasync_helper(fd, file, on, &client->fasync);
H A Devdev.c239 static int evdev_fasync(int fd, struct file *file, int on) argument
243 return fasync_helper(fd, file, on, &client->fasync);
/drivers/media/platform/
H A Dvino.c3095 struct v4l2_fmtdesc *fd)
3097 dprintk("format index = %d\n", fd->index);
3099 if (fd->index >= VINO_DATA_FMT_COUNT)
3101 dprintk("format name = %s\n", vino_data_formats[fd->index].description);
3103 fd->pixelformat = vino_data_formats[fd->index].pixelformat;
3104 strcpy(fd->description, vino_data_formats[fd->index].description);
3094 vino_enum_fmt_vid_cap(struct file *file, void *__fh, struct v4l2_fmtdesc *fd) argument
/drivers/message/i2o/
H A Di2o_config.c1090 static int cfg_fasync(int fd, struct file *fp, int on) argument
1102 ret = fasync_helper(fd, fp, on, &p->fasync);
/drivers/net/ethernet/sfc/
H A Dmcdi_port.c332 link_state->fd = !!(flags & (1 << MC_CMD_GET_LINK_OUT_FULL_DUPLEX_LBN));
516 ecmd->duplex = efx->link_state.fd;
/drivers/tty/vt/
H A Dcp437.uni140 0x79 U+0079 U+00fd
/drivers/uio/
H A Duio.c469 static int uio_fasync(int fd, struct file *filep, int on) argument
474 return fasync_helper(fd, filep, on, &idev->async_queue);
/drivers/infiniband/core/
H A Duverbs_cmd.c703 struct fd f = {NULL, 0};
720 if (cmd.fd != -1) {
722 f = fdget(cmd.fd);
1274 resp.fd = ret;
1278 put_unused_fd(resp.fd);
1284 put_unused_fd(resp.fd);
1289 fd_install(resp.fd, filp);
H A Ducma.c1401 struct fd f;
1408 /* Get current fd to protect against it being closed */
1409 f = fdget(cmd.fd);
1413 /* Validate current fd and prevent destruction of id. */
1427 * Migrate events between fd's, maintaining order, and avoiding new
/drivers/media/platform/exynos4-is/
H A Dfimc-is-param.h770 struct fd_param fd; member in struct:is_param_region
/drivers/video/fbdev/msm/
H A Dmdp.c260 struct fd f = fdget(img->memory_id);
/drivers/misc/genwqe/
H A Dcard_dev.c333 * @fd: file descriptor
346 static int genwqe_fasync(int fd, struct file *filp, int mode) argument
350 return fasync_helper(fd, filp, mode, &cdev->async_queue);
/drivers/misc/lis3lv02d/
H A Dlis3lv02d.c664 static int lis3lv02d_misc_fasync(int fd, struct file *file, int on) argument
669 return fasync_helper(fd, file, on, &lis3->async_queue);
/drivers/net/ethernet/ibm/emac/
H A Dcore.c2520 int speed = SPEED_10, fd = DUPLEX_HALF; local
2525 fd = DUPLEX_FULL;
2530 fd = DUPLEX_FULL;
2534 fd = DUPLEX_FULL;
2537 dev->phy.def->ops->setup_forced(&dev->phy, speed, fd);
/drivers/net/ethernet/sun/
H A Dcassini.c1617 if (val & BMCR_FULLDPLX) /* fd failed */
3542 static void cas_read_pcs_link_mode(struct cas *cp, int *fd, int *spd, argument
3546 *fd = (val & PCS_MII_LPA_FD) ? 1 : 0;
3554 static void cas_read_mii_link_mode(struct cas *cp, int *fd, int *spd, argument
3559 *fd = 0;
3572 *fd = 1;
3581 *fd = 1;
/drivers/block/
H A Dswim.c20 #include <linux/fd.h>
829 err = register_blkdev(FLOPPY_MAJOR, "fd");
856 sprintf(swd->unit[drive].disk->disk_name, "fd%d", drive);
870 unregister_blkdev(FLOPPY_MAJOR, "fd");
949 unregister_blkdev(FLOPPY_MAJOR, "fd");

Completed in 435 milliseconds

12345