Searched refs:auto_attach (Results 1 - 25 of 71) sorted by last modified time

123

/linux-master/tools/bpf/bpftool/
H A Dprog.c1526 bool auto_attach = false; local
1675 auto_attach = true;
1795 if (auto_attach)
1805 if (auto_attach)
/linux-master/drivers/comedi/drivers/
H A Dvmk80xx.c833 .auto_attach = vmk80xx_auto_attach,
H A Dcomedi_test.c803 .auto_attach = waveform_auto_attach,
H A Drtd520.c1337 .auto_attach = rtd_auto_attach,
H A Dni_daq_dio24.c54 .auto_attach = dio24_auto_attach,
H A Dme4000.c1238 .auto_attach = me4000_auto_attach,
H A Ddaqboard2000.c757 .auto_attach = db2k_auto_attach,
H A Dcb_pcimdda.c163 .auto_attach = cb_pcimdda_auto_attach,
H A Dcb_pcimdas.c446 .auto_attach = cb_pcimdas_auto_attach,
H A Dcb_pcidda.c387 .auto_attach = cb_pcidda_auto_attach,
H A Dcb_pcidas64.c3966 static int auto_attach(struct comedi_device *dev, function
4070 .auto_attach = auto_attach,
H A Dcb_pcidas.c1465 .auto_attach = cb_pcidas_auto_attach,
H A Damplc_pci230.c2545 .auto_attach = pci230_auto_attach,
H A Dcb_das16_cs.c427 .auto_attach = das16cs_auto_attach,
H A Damplc_pci224.c1111 .auto_attach = pci224_auto_attach,
H A Damplc_dio200_pci.c391 .auto_attach = dio200_pci_auto_attach,
H A Dadv_pci1710.c882 .auto_attach = pci1710_auto_attach,
H A Dadv_pci_dio.c725 .auto_attach = pci_dio_auto_attach,
H A Dadl_pci9118.c1702 .auto_attach = pci9118_auto_attach,
H A D8255_pci.c258 .auto_attach = pci_8255_auto_attach,
H A Dadl_pci9111.c718 .auto_attach = pci9111_auto_attach,
H A Dadv_pci1760.c397 .auto_attach = pci1760_auto_attach,
/linux-master/include/linux/comedi/
H A Dcomedidev.h143 * "auto_attach" handlers but parts of it are initialized by
401 * @auto_attach: The optional "auto_attach" handler for automatically
425 * configured by the @attach or @auto_attach handler, it is called when the
428 * the @attach or @auto_attach handler returns an error. Therefore, the
429 * @attach or @auto_attach handlers can defer clean-up on error until the
430 * @detach handler is called. If the @attach or @auto_attach handlers free
433 * resources requested by the @attach or @auto_attach handler were
444 int (*auto_attach)(struct comedi_device *dev, unsigned long context); member in struct:comedi_driver
476 * When the low-lever driver's "auto_attach" handle
[all...]
/linux-master/drivers/comedi/
H A Ddrivers.c1013 * @context: Driver context for the auto_attach handler.
1016 * low-level driver's 'auto_attach' handler to set-up the hardware and
1018 * up is performed on successful return from the 'auto_attach' handler.
1019 * If the 'auto_attach' handler fails, the low-level driver's 'detach'
1030 * the driver's 'auto_attach' handler.
1048 if (!driver->auto_attach) {
1050 "BUG! comedi driver '%s' has no auto_attach handler\n",
1067 ret = driver->auto_attach(dev, context);
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dusdt.c335 static void subtest_urandom_usdt(bool auto_attach) argument
354 if (auto_attach) {
417 subtest_urandom_usdt(true /* auto_attach */);
419 subtest_urandom_usdt(false /* auto_attach */);

Completed in 298 milliseconds

123