Searched refs:hid (Results 1 - 25 of 32) sorted by relevance

12

/freebsd-11-stable/usr.sbin/bluetooth/bthidd/
H A DMakefile7 SRCS= bthidd.c client.c hid.c kbd.c lexer.l parser.y server.c \
/freebsd-11-stable/sys/powerpc/aim/
H A Dmp_cpudep.c40 #include <machine/hid.h>
179 register_t hid; local
181 hid = mfspr(SPR_HID0);
182 if (hid & HID0_DCE)
183 return (hid);
186 hid |= HID0_DCE;
188 mtspr(SPR_HID0, hid | HID0_DCFI);
191 return (hid);
197 register_t hid; local
199 hid
[all...]
H A Daim_machdep.c115 #include <machine/hid.h>
/freebsd-11-stable/usr.sbin/bluetooth/bthidcontrol/
H A DMakefile8 SRCS= bthidcontrol.c hid.c lexer.l parser.y sdp.c
/freebsd-11-stable/sys/opencrypto/
H A Dcrypto.c338 crypto_checkdriver(u_int32_t hid) argument
342 return (hid >= crypto_drivers_num ? NULL : &crypto_drivers[hid]);
376 int match, hid; local
389 for (hid = 0; hid < crypto_drivers_num; hid++) {
390 cap = &crypto_drivers[hid];
427 u_int32_t hid, lid; local
451 hid
487 u_int32_t hid; local
614 crypto_find_device_byhid(int hid) argument
624 crypto_getcaps(int hid) argument
822 u_int32_t hid; local
907 int match, hid; local
1237 int hid, kalg, feat = 0; local
1283 u_int32_t hid; local
1492 int hid; local
[all...]
H A Dcryptodev.h482 extern device_t crypto_find_device_byhid(int hid);
483 extern int crypto_getcaps(int hid);
/freebsd-11-stable/sys/dev/ichiic/
H A Dig4_acpi.c72 char *hid; local
79 hid = ACPI_ID_PROBE(device_get_parent(dev), dev, ig4iic_ids);
80 if (hid == NULL)
83 if (strcmp("AMDI0010", hid) == 0)
/freebsd-11-stable/sys/dev/sdhci/
H A Dsdhci_acpi.c58 const char* hid; member in struct:sdhci_acpi_device
218 if (strcmp(acpi_dev->hid, "AMDI0040") == 0 && acpi_dev->uid == 0) {
244 const char *hid; local
249 hid = ACPI_ID_PROBE(device_get_parent(dev), dev, sdhci_ids);
250 if (hid == NULL)
258 for (i = 0; sdhci_acpi_devices[i].hid != NULL; i++) {
259 if (strcmp(sdhci_acpi_devices[i].hid, hid) != 0)
322 if (strcmp(acpi_dev->hid, "80860F14") == 0 && acpi_dev->uid == 1 &&
/freebsd-11-stable/usr.sbin/bhyve/
H A Dusb_mouse.c249 } hid; member in struct:umouse_softc
306 sc->hid.protocol = 1; /* REPORT protocol */
527 if (sc->hid.feature == UF_DEVICE_REMOTE_WAKEUP)
566 sc->hid.feature = 0;
572 sc->hid.feature = UF_DEVICE_REMOTE_WAKEUP;
627 *udata = sc->hid.idle;
636 *udata = sc->hid.protocol;
648 sc->hid.idle = UGETW(xfer->ureq->wValue) >> 8;
650 sc->hid.idle));
654 sc->hid
[all...]
/freebsd-11-stable/sys/powerpc/powerpc/
H A Dgdb_machdep.c41 #include <machine/hid.h>
H A Dcpu.c72 #include <machine/hid.h>
478 register_t hid; local
480 hid = mfspr(SPR_HID0);
482 printf("L1 I-cache %sabled, ", (hid & HID0_ICE) ? "en" : "dis");
483 printf("L1 D-cache %sabled\n", (hid & HID0_DCE) ? "en" : "dis");
H A Dmachdep.c115 #include <machine/hid.h>
/freebsd-11-stable/sys/dev/hyperv/pcib/
H A Dvmbus_pcib.c489 hv_int_desc_free(struct hv_pci_dev *hpdev, struct hv_irq_desc *hid) argument
501 int_pkt->int_desc = hid->desc;
506 free(hid, M_DEVBUF);
513 struct hv_irq_desc *hid, *tmp_hid; local
532 TAILQ_FOREACH_SAFE(hid, &hpdev->irq_desc_list, link, tmp_hid)
533 hv_int_desc_free(hpdev, hid);
1680 struct hv_irq_desc *hid, *tmp_hid; local
1704 TAILQ_FOREACH_SAFE(hid, &hpdev->irq_desc_list, link, tmp_hid) {
1705 if (hid->irq == irq) {
1706 TAILQ_REMOVE(&hpdev->irq_desc_list, hid, lin
[all...]
/freebsd-11-stable/contrib/sendmail/libmilter/
H A Dlistener.c339 unsigned long hid = INADDR_NONE; local
348 (hid = inet_addr(&at[1])) != INADDR_NONE)
350 addr.sin.sin_addr.s_addr = hid;
/freebsd-11-stable/usr.bin/usbhidaction/
H A Dusbhidaction.c466 docmd(struct command *cmd, int value, const char *hid, int argc, char **argv) argument
492 strncpy(q, hid, len);
/freebsd-11-stable/sys/powerpc/booke/
H A Dbooke_machdep.c128 #include <machine/hid.h>
H A Dlocore.S34 #include <machine/hid.h>
/freebsd-11-stable/sys/powerpc/ps3/
H A Dplatform_ps3.c44 #include <machine/hid.h>
/freebsd-11-stable/contrib/netbsd-tests/dev/usb/
H A Dt_hid.c50 #include <hid.h>
79 atf_tc_set_md_var(tc, "descr", "check kernel hid.c");
237 atf_tc_set_md_var(tc, "descr", "check kernel hid.c for "
/freebsd-11-stable/sys/dev/usb/
H A Dusb_hid.c2 /* $NetBSD: hid.c,v 1.17 2001/11/13 06:24:53 lukem Exp $ */
813 struct usb_hid_descriptor *hid; local
819 hid = hid_get_descriptor_from_usb
822 if (hid == NULL) {
825 *sizep = UGETW(hid->descrs[0].wDescriptorLength);
858 * hid unit scaling table according to HID Usage Table Review
/freebsd-11-stable/sys/powerpc/powermac/
H A Dplatform_powermac.c45 #include <machine/hid.h>
/freebsd-11-stable/sys/powerpc/pseries/
H A Dplatform_chrp.c43 #include <machine/hid.h>
/freebsd-11-stable/sys/powerpc/mpc85xx/
H A Dplatform_mpc85xx.c41 #include <machine/hid.h>
/freebsd-11-stable/sys/dev/acpica/
H A Dacpivar.h356 BOOLEAN acpi_MatchHid(ACPI_HANDLE h, const char *hid);
/freebsd-11-stable/sys/kern/
H A Dkern_jail.c504 unsigned long hid; local
751 hid = hid32;
754 error = vfs_copyopt(opts, "host.hostid", &hid, sizeof(hid));
1709 pr->pr_hostid = hid;
1727 tpr->pr_hostid = hid;

Completed in 174 milliseconds

12