Lines Matching refs:item

38 \item 
41 \item
44 \item
200 \item[$cdrom_device_ops$]
205 \item[$cdrom_device_info$]
350 \item[0] Open for reading data, as done by {\tt {mount()}} (2), or the
352 \item[1] Open for $ioctl$ commands, as done by audio-CD playing
403 \item[0] Close tray
404 \item[1] Open tray
416 \item[0] Unlock door, manual opening is allowed
417 \item[1] Lock door, tray cannot be ejected manually
676 \item If no other flags are set than $O_RDONLY$, the device is opened
680 \item If the option flag $O_NONBLOCK$ is set, opening will always be
722 \item[$CDO_AUTO_CLOSE \mathrel| CDO_USE_FFLAGS \mathrel| CDO_LOCK$] This
732 \item[$CDO_AUTO_CLOSE \mathrel| CDO_AUTO_EJECT \mathrel| CDO_LOCK$] This
824 \item[CDROMMULTISESSION] Requests the last session on a \cdrom.
825 \item[CDROMEJECT] Open tray.
826 \item[CDROMCLOSETRAY] Close tray.
827 \item[CDROMEJECT_SW] If $arg\not=0$, set behavior to auto-close (close
830 \item[CDROM_GET_MCN] Get the Media Catalog Number from a CD.
841 \item[CDROMSUBCHNL] Get sub-channel data in argument $arg$ of type $struct\
843 \item[CDROMREADTOCHDR] Read Table of Contents header, in $arg$ of type
845 \item[CDROMREADTOCENTRY] Read a Table of Contents entry in $arg$ and
847 \item[CDROMPLAYMSF] Play audio fragment specified in Minute, Second,
849 \item[CDROMPLAYTRKIND] Play audio fragment in track-index format
851 \item[CDROMVOLCTRL] Set volume specified by $arg$ of type $struct\
853 \item[CDROMVOLREAD] Read volume into by $arg$ of type $struct\
855 \item[CDROMSTART] Spin up disc.
856 \item[CDROMSTOP] Stop playback of audio fragment.
857 \item[CDROMPAUSE] Pause playback of audio fragment.
858 \item[CDROMRESUME] Resume playing.
867 \item[CDROM_SET_OPTIONS] Set options specified by $arg$. Returns the
870 \item[CDROM_CLEAR_OPTIONS] Clear options specified by $arg$. Returns
872 \item[CDROM_SELECT_SPEED] Select head-rate speed of disc specified as
878 \item[CDROM_SELECT_DISC] Select disc numbered $arg$ from a juke-box.
881 \item[CDROM_MEDIA_CHANGED] Returns 1 if a disc has been changed since
888 \item[CDROM_DRIVE_STATUS] Returns the status of the drive by a call to
896 \item[CDROM_DISC_STATUS] Returns the type of the disc currently in the
936 \item[CDROM_CHANGER_NSLOTS] Returns the number of slots in a
938 \item[CDROMRESET] Reset the drive.
939 \item[CDROM_GET_CAPABILITY] Returns the $capability$ flags for the
942 \item[CDROM_LOCKDOOR] Locks the door of the drive. $arg == \rm0$
944 \item[CDROM_DEBUG] Turns on debugging info. Only root is allowed
956 \item Make a backup of your current driver.
957 \item Get hold of the files \cdromc\ and \cdromh, they should be in
959 \item Make sure you include \cdromh.
960 \item Change the 3rd argument of $register_blkdev$ from
962 \item Just after that line, add the following to register with the \UCD:
965 \item Copy an example of the device-operations $struct$ to your
972 \item Copy the $cdrom_device_info$ declaration from the same example
976 \item Implement all functions in your $<device>_dops$ structure,
981 \item Rename your $<device>_ioctl()$ function to $audio_ioctl$ and
985 \item You may remove all remaining memory checking code in the
994 \item All remaining $ioctl$ cases must be moved to a separate
997 \item Change the prototypes of $<device>_open()$ and
1000 \item Try to recompile the drivers. We advise you to use modules, both