Searched refs:open (Results 51 - 75 of 2525) sorted by relevance

1234567891011>>

/linux-master/drivers/usb/core/
H A Dfile.c45 /* Curiouser and curiouser... NULL ->open() as "no device" ? */
46 if (file->f_op->open)
47 err = file->f_op->open(inode, file);
55 .open = usb_open,
/linux-master/scripts/
H A Dstackdelta21 open(my $fh, '<', $f)
22 or die "cannot open $f: $!";
/linux-master/tools/leds/
H A Duledmon.c37 fd = open("/dev/uleds", O_RDWR);
39 perror("Failed to open /dev/uleds");
/linux-master/tools/testing/selftests/media_tests/
H A Dmedia_device_open.c69 /* Open Media device and keep it open */
70 fd = open(media_device, O_RDWR);
72 printf("Media Device open errno %s\n", strerror(errno));
/linux-master/tools/usb/usbip/libsrc/
H A Dusbip_host_driver.c45 .open = usbip_host_driver_open,
/linux-master/drivers/media/pci/cx23885/
H A Dcimax2.h29 int slot, int open);
/linux-master/include/linux/
H A Dhiddev.h26 int open; member in struct:hiddev
H A Dhidraw.h14 int open; member in struct:hidraw
/linux-master/include/sound/
H A Dseq_oss.h23 /* following must be initialized in open callback */
39 int (*open)(struct snd_seq_oss_arg *p, void *closure); member in struct:snd_seq_oss_callback
/linux-master/drivers/char/tpm/
H A Dtpm-dev.c63 .open = tpm_open,
/linux-master/drivers/net/ethernet/qualcomm/emac/
H A Demac-sgmii.h13 * @open called when the driver is opened
19 int (*open)(struct emac_adapter *adpt); member in struct:sgmii_ops
/linux-master/arch/um/os-Linux/
H A Dtty.c32 fd = open("/dev/ptmx", O_RDWR);
35 printk(UM_KERN_ERR "get_pty : Couldn't open /dev/ptmx - "
/linux-master/sound/soc/sprd/
H A Dsprd-pcm-dma.h43 int (*open)(int str_id, struct sprd_compr_callback *cb); member in struct:sprd_compr_ops
/linux-master/tools/testing/selftests/splice/
H A Dsplice_read.c23 fd = open(argv[1], O_RDONLY);
/linux-master/tools/testing/selftests/proc/
H A Dproc-self-syscall.c37 fd = open("/proc/self/syscall", O_RDONLY);
H A Dproc-loadavg-001.c44 fd = open("/proc/loadavg" , O_RDONLY);
/linux-master/Documentation/trace/postprocess/
H A Ddecode_msr.py9 with open(sys.argv[1] if len(sys.argv) > 1 else "msr-index.h", "r") as f:
/linux-master/tools/perf/python/
H A Dtwatch.py28 evsel.open(cpus = cpus, threads = threads);
/linux-master/sound/soc/pxa/
H A Dpxa2xx-pcm.c22 .open = pxa2xx_soc_pcm_open,
/linux-master/arch/um/include/shared/
H A Dnet_user.h18 int (*open)(void *); member in struct:net_user_info
/linux-master/tools/testing/selftests/gpio/
H A Dgpio-chip-info.c32 fd = open(argv[1], O_RDWR);
34 perror("unable to open the GPIO chip");
H A Dgpio-line-name.c33 fd = open(argv[1], O_RDWR);
35 perror("unable to open the GPIO chip");
/linux-master/scripts/gdb/linux/
H A Dconfig.py38 with open(filename, 'wb') as f:
/linux-master/tools/testing/selftests/damon/
H A Dhuge_count_read_write.c20 int filedesc = open(file, O_RDWR);
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dd_path.c57 procfd = open("/proc/self/comm", O_RDONLY);
58 if (CHECK(procfd < 0, "trigger", "open /proc/self/comm failed\n"))
60 devfd = open("/dev/urandom", O_RDONLY);
61 if (CHECK(devfd < 0, "trigger", "open /dev/urandom failed\n"))
63 localfd = open("/tmp/d_path_loadgen.txt", O_CREAT | O_RDONLY, 0644);
64 if (CHECK(localfd < 0, "trigger", "open /tmp/d_path_loadgen.txt failed\n"))
68 indicatorfd = open("/tmp/", O_PATH);
69 if (CHECK(indicatorfd < 0, "trigger", "open /tmp/ failed\n"))

Completed in 269 milliseconds

1234567891011>>