Searched refs:devs (Results 1 - 25 of 74) sorted by relevance

123

/netbsd-current/crypto/external/bsd/openssh/dist/
H A Dauth2-kbdint.c51 char *lang, *devs; local
54 (r = sshpkt_get_cstring(ssh, &devs, NULL)) != 0 ||
58 debug("keyboard-interactive devs %s", devs);
61 authenticated = auth2_challenge(ssh, devs);
63 free(devs);
/netbsd-current/sys/arch/hpcmips/pci/
H A Dpci_machdep.c13 pci_bus_devorder(pci_chipset_tag_t pc, int bus, uint8_t *devs, int maxdevs) argument
15 return (*pc->pc_bus_devorder)(pc, bus, devs, maxdevs);
/netbsd-current/sys/gdbscripts/
H A DMakefile.inc3 SYS_GDBINIT= bdump cpus devs kernhist lwps module msgbuf pgrpdump procs vchain vdump
/netbsd-current/external/bsd/pam-u2f/dist/fuzz/
H A Dfuzz_format_parsers.c16 static void cleanup(device_t *devs, unsigned int n_devs) { argument
18 free(devs[i].keyHandle);
19 free(devs[i].publicKey);
20 free(devs[i].coseType);
21 free(devs[i].attributes);
22 devs[i].keyHandle = NULL;
23 devs[i].publicKey = NULL;
24 devs[i].coseType = NULL;
25 devs[i].attributes = NULL;
34 device_t devs[1 local
[all...]
/netbsd-current/sys/arch/macppc/dev/
H A Dsmuiic.c77 int devs, devc; local
95 devs = OF_child(sc->sc_node);
96 while (devs != 0) {
97 if (OF_getprop(devs, "name", name, 256) <= 0)
99 if (OF_getprop(devs, "compatible",
102 if (OF_getprop(devs, "reg", &addr, 4) <= 0)
111 prop_dictionary_set_uint64(dev, "cookie", devs);
112 devc = OF_child(devs);
127 devs = OF_peer(devs);
[all...]
/netbsd-current/sys/dev/fdt/
H A Dfdt_spi.c88 prop_dictionary_t devs; local
92 devs = prop_dictionary_create();
95 of_enter_spi_devs(devs, phandle, address_cells * 4);
102 sba.sba_child_devices = prop_dictionary_get(devs, "spi-child-devices");
105 prop_object_release(devs);
H A Dfdt_i2c.c105 prop_dictionary_t devs, props; local
109 devs = prop_dictionary_create();
113 of_enter_i2c_devs(devs, phandle, address_cells * 4, 0);
117 iba.iba_child_devices = prop_dictionary_get(devs, "i2c-child-devices");
120 prop_object_release(devs);
/netbsd-current/external/gpl2/lvm2/dist/test/
H A Dt-fsadm.sh18 vgcreate -cn $vg $devs
H A Dt-vgsplit-stacked.sh6 pvcreate $devs
H A Dt-lvcreate-operation.sh26 aux vgcreate $vg $devs
H A Dt-lvcreate-pvtags.sh17 vgcreate $vg $devs
18 pvchange --addtag fast $devs
H A Dt-metadata.sh21 vgcreate -c n "$vg" $devs
33 pvcreate --metadatacopies $mdacp $devs
35 vgcreate $vg $devs
H A Dt-listings.sh41 vgcreate -c n $vg $devs
44 pvs -o +pv_mda_count,pv_mda_free $devs
80 pvdisplay $devs >out
81 pvdisplay --maps $devs >out2
H A Dtest-utils.sh119 devs="$devs $dev"
172 pvcreate $devs
177 vgcreate $vg $devs
/netbsd-current/sys/arch/mips/sibyte/dev/
H A Dsbobio.c203 const struct sbobio_attach_locs *devs; local
214 devs = sb112x_sbobio_devs;
221 devs = sb1250_sbobio_devs;
225 devs = sb1250_rev1_sbobio_devs;
238 sa.sa_locs = devs[i];
240 locs[SBOBIOCF_OFFSET] = devs[i].sa_offset;
241 locs[SBOBIOCF_INTR + 0] = devs[i].sa_intr[0];
242 locs[SBOBIOCF_INTR + 1] = devs[i].sa_intr[1];
/netbsd-current/sys/arch/luna68k/luna68k/
H A Dmainbus.c78 const struct mainbus_attach_args *devs; local
81 devs = luna_devs;
86 ma = devs[i];
/netbsd-current/usr.sbin/wsmuxctl/
H A Dwsmuxctl.c84 struct wsmux_device_list devs; local
87 if (ioctl(fd, WSMUXIO_LIST_DEVICES, &devs) < 0)
89 for (i = 0; i < devs.ndevices; i++) {
90 switch (devs.devices[i].type) {
97 printf("%*s%s%d\n", ind, "", name, devs.devices[i].idx);
98 if (rec && devs.devices[i].type == WSMUX_MUX) {
100 devs.devices[i].idx);
/netbsd-current/sys/arch/news68k/stand/bootxx/
H A Dbootxx.c80 char *devs[] = { "hd", "fh", "fd", NULL, NULL, "rd", "st" }; variable
111 if (devs[type] == NULL) {
117 devs[type], ctlr, unit, part);
/netbsd-current/external/bsd/wpa/dist/wpa_supplicant/
H A Dwin_if_list.c146 pcap_if_t *devs, *dev; local
149 if (pcap_findalldevs(&devs, err) < 0) {
154 for (dev = devs; dev; dev = dev->next) {
158 pcap_freealldevs(devs);
/netbsd-current/sys/arch/sparc64/dev/
H A Djbus-i2c.c140 int devs, regs[2], addr; local
152 devs = OF_child(sc->sc_node);
156 while (devs != 0) {
157 if (OF_getprop(devs, "name", name, 256) <= 0)
160 if (OF_getprop(devs, "compatible",
163 if (OF_getprop(devs, "reg", regs, 8) <= 0)
173 prop_dictionary_set_uint64(dev, "cookie", devs);
177 devs = OF_peer(devs);
/netbsd-current/sys/arch/amiga/dev/
H A Dgayle_pcmcia.c43 struct pccard_slot devs[1]; member in struct:pccard_softc
163 sc->devs[0].sc = sc;
164 sc->devs[0].intr_func = NULL;
165 sc->devs[0].intr_arg = NULL;
166 sc->devs[0].flags = 0;
175 paa.pch = &sc->devs[0];
176 sc->devs[0].card = config_found(self, &paa, simple_devprint,
178 if (sc->devs[0].card == NULL) {
224 pccard_attach_slot(&sc->devs[0]);
235 sc->devs[
[all...]
/netbsd-current/sys/arch/amigappc/amigappc/
H A Dautoconf.c244 device_t*devs; local
269 devs = sd_cd.cd_devs;
270 if ((dkp = disk_find(device_xname(devs[unit]))) == NULL)
297 booted_device = devs[unit];
318 devs = genericconf[i]->cd_devs;
319 if ((dkp = disk_find(device_xname(devs[unit]))) == NULL)
358 booted_device = devs[unit];
/netbsd-current/sys/arch/news68k/stand/boot/
H A Dboot.c67 char *devs[] = { "hd", "fh", "fd", NULL, NULL, "rd", "st" }; variable
112 if (devs[type] == NULL) {
118 "%s(%d,%d,%d)", devs[type], ctlr, unit, part);
/netbsd-current/sys/arch/newsmips/stand/bootxx/
H A Dbootxx.c57 char *devs[] = { "sd", "fh", "fd", NULL, NULL, "rd", "st" }; variable
107 if (devs[type] == NULL) {
112 devs[type], ctlr, unit, part);
/netbsd-current/sys/dev/raidframe/
H A Drf_compat32.c51 dev_t devs[RF_MAXROW][RF_MAXCOL]; /* device numbers for disks member in struct:RF_Config_s32
106 memcpy(k_cfg->devs, k_cfg32->devs, sizeof(k_cfg->devs));

Completed in 425 milliseconds

123