The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/dev/adb/files.adb

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 # 
    2 #       $NetBSD: files.adb,v 1.10 2020/08/31 17:54:18 macallan Exp $
    3 #
    4 # Apple Desktop Bus protocol and drivers
    5 
    6 defflag adbdebug.h      ADB_DEBUG
    7 defflag adbdebug.h      ADBKBD_DEBUG
    8 defflag adbdebug.h      ADBMS_DEBUG
    9 defflag adbdebug.h      ADBBT_DEBUG
   10 defflag adbdebug.h      ADBKBD_POWER_DDB
   11 defflag adbdebug.h      KTM_DEBUG
   12 
   13 define adb_bus {}
   14 
   15 device nadb {}
   16 attach nadb at adb_bus
   17 file dev/adb/adb_bus.c          nadb needs-flag
   18 
   19 device adbkbd : wskbddev, wsmousedev, sysmon_power, sysmon_taskq
   20 attach adbkbd at nadb
   21 file dev/adb/adb_kbd.c          adbkbd needs-flag
   22 file dev/adb/adb_usb_map.c      adbkbd
   23 defflag opt_adbkbd.h    ADBKBD_EMUL_USB
   24 defparam opt_adbkbd.h   ADBKBD_LAYOUT
   25 
   26 device adbbt : wskbddev
   27 attach adbbt at nadb
   28 file dev/adb/adb_bt.c           adbbt
   29 
   30 device adbms : wsmousedev
   31 attach adbms at nadb
   32 file dev/adb/adb_ms.c           adbms needs-flag
   33 
   34 device ktm : wsmousedev
   35 attach ktm at nadb
   36 file dev/adb/adb_ktm.c          ktm needs-flag

Cache object: a8c2a0b26deebdde9539ec534f14aa3a


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.