Commit 1b81f010 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] docs-next: stop abusing on the cpp domain

Now that we have an override for the c domain that will do
the right thing for the Kernel, stop abusing on the cpp
domain.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent b7ff94df
......@@ -39,55 +39,54 @@ nitpick_ignore = [
("c:func", "write"),
("c:type", "atomic_t"),
("c:type", "bool"),
("c:type", "boolean"),
("c:type", "buf_queue"),
("c:type", "device"),
("c:type", "device_driver"),
("c:type", "device_node"),
("c:type", "enum"),
("c:type", "fd"),
("c:type", "fd_set"),
("c:type", "file"),
("c:type", "i2c_adapter"),
("c:type", "i2c_board_info"),
("c:type", "i2c_client"),
("c:type", "int16_t"),
("c:type", "ktime_t"),
("c:type", "led_classdev_flash"),
("c:type", "list_head"),
("c:type", "lock_class_key"),
("c:type", "module"),
("c:type", "mutex"),
("c:type", "NULL"),
("c:type", "off_t"),
("c:type", "pci_dev"),
("c:type", "pdvbdev"),
("c:type", "pollfd"),
("c:type", "poll_table_struct"),
("c:type", "s32"),
("c:type", "s64"),
("c:type", "sd"),
("c:type", "size_t"),
("c:type", "spi_board_info"),
("c:type", "spi_device"),
("c:type", "spi_master"),
("c:type", "ssize_t"),
("c:type", "struct fb_fix_screeninfo"),
("c:type", "struct pollfd"),
("c:type", "struct timeval"),
("c:type", "struct video_capability"),
("c:type", "timeval"),
("c:type", "__u16"),
("c:type", "u16"),
("c:type", "__u32"),
("c:type", "u32"),
("c:type", "__u64"),
("c:type", "u64"),
("c:type", "u8"),
("c:type", "uint16_t"),
("c:type", "uint32_t"),
("c:type", "union"),
("c:type", "usb_device"),
("cpp:type", "boolean"),
("cpp:type", "fd"),
("cpp:type", "fd_set"),
("cpp:type", "int16_t"),
("cpp:type", "NULL"),
("cpp:type", "off_t"),
("cpp:type", "pollfd"),
("cpp:type", "size_t"),
("cpp:type", "ssize_t"),
("cpp:type", "timeval"),
("cpp:type", "__u16"),
("cpp:type", "__u32"),
("cpp:type", "__u64"),
("cpp:type", "uint16_t"),
("cpp:type", "uint32_t"),
("cpp:type", "video_system_t"),
("c:type", "video_system_t"),
]
......@@ -121,7 +121,7 @@ triggered by a hardware interrupt, it is recommended to use the Linux
bottom half mechanism or start a tasklet instead of making the callback
function call directly from a hardware interrupt.
This mechanism is implemented by :c:func:`dmx_ts_cb()` and :cpp:func:`dmx_section_cb()`
This mechanism is implemented by :c:func:`dmx_ts_cb()` and :c:func:`dmx_section_cb()`
callbacks.
.. kernel-doc:: drivers/media/dvb-core/demux.h
......
......@@ -166,7 +166,7 @@ something.
In the case of :ref:`videobuf2 <vb2_framework>` you will need to implement the
``wait_prepare()`` and ``wait_finish()`` callbacks to unlock/lock if applicable.
If you use the ``queue->lock`` pointer, then you can use the helper functions
:c:func:`vb2_ops_wait_prepare` and :cpp:func:`vb2_ops_wait_finish`.
:c:func:`vb2_ops_wait_prepare` and :c:func:`vb2_ops_wait_finish`.
The implementation of a hotplug disconnect should also take the lock from
:c:type:`video_device` before calling v4l2_device_disconnect. If you are also
......@@ -335,7 +335,7 @@ And this function:
returns the video_device belonging to the file struct.
The :c:func:`video_devdata` function combines :cpp:func:`video_get_drvdata`
The :c:func:`video_devdata` function combines :c:func:`video_get_drvdata`
with :c:func:`video_devdata`:
:c:func:`video_drvdata <video_drvdata>`
......
......@@ -21,8 +21,8 @@ function by the driver.
In many cases the struct :c:type:`v4l2_fh` will be embedded in a larger
structure. In that case you should call:
#) :c:func:`v4l2_fh_init` and :cpp:func:`v4l2_fh_add` in ``open()``
#) :c:func:`v4l2_fh_del` and :cpp:func:`v4l2_fh_exit` in ``release()``
#) :c:func:`v4l2_fh_init` and :c:func:`v4l2_fh_add` in ``open()``
#) :c:func:`v4l2_fh_del` and :c:func:`v4l2_fh_exit` in ``release()``
Drivers can extract their own file handle structure by using the container_of
macro.
......
......@@ -27,7 +27,7 @@ methods.
Bridges might also need to store per-subdev private data, such as a pointer to
bridge-specific per-subdev private data. The :c:type:`v4l2_subdev` structure
provides host private data for that purpose that can be accessed with
:c:func:`v4l2_get_subdev_hostdata` and :cpp:func:`v4l2_set_subdev_hostdata`.
:c:func:`v4l2_get_subdev_hostdata` and :c:func:`v4l2_set_subdev_hostdata`.
From the bridge driver perspective, you load the sub-device module and somehow
obtain the :c:type:`v4l2_subdev` pointer. For i2c devices this is easy: you call
......
......@@ -20,7 +20,7 @@ Synopsis
#include <unistd.h>
.. cpp:function:: int close( int fd )
.. c:function:: int close( int fd )
Arguments
=========
......
......@@ -19,7 +19,7 @@ Synopsis
#include <sys/ioctl.h>
.. cpp:function:: int ioctl( int fd, int request, void *argp )
.. c:function:: int ioctl( int fd, int request, void *argp )
Arguments
=========
......
......@@ -19,7 +19,7 @@ Synopsis
#include <fcntl.h>
.. cpp:function:: int open( const char *device_name, int flags )
.. c:function:: int open( const char *device_name, int flags )
Arguments
......
......@@ -20,7 +20,7 @@ Synopsis
#include <sys/poll.h>
.. cpp:function:: int poll( struct pollfd *ufds, unsigned int nfds, int timeout )
.. c:function:: int poll( struct pollfd *ufds, unsigned int nfds, int timeout )
Arguments
=========
......
......@@ -14,7 +14,7 @@ CEC_ADAP_G_CAPS - Query device capabilities
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct cec_caps *argp )
.. c:function:: int ioctl( int fd, int request, struct cec_caps *argp )
Arguments
=========
......
......@@ -17,7 +17,7 @@ CEC_ADAP_G_LOG_ADDRS, CEC_ADAP_S_LOG_ADDRS - Get or set the logical addresses
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct cec_log_addrs *argp )
.. c:function:: int ioctl( int fd, int request, struct cec_log_addrs *argp )
Arguments
......
......@@ -17,7 +17,7 @@ CEC_ADAP_G_PHYS_ADDR, CEC_ADAP_S_PHYS_ADDR - Get or set the physical address
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, __u16 *argp )
.. c:function:: int ioctl( int fd, int request, __u16 *argp )
Arguments
=========
......
......@@ -13,7 +13,7 @@ CEC_G_MODE, CEC_S_MODE - Get or set exclusive use of the CEC adapter
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, __u32 *argp )
.. c:function:: int ioctl( int fd, int request, __u32 *argp )
Arguments
=========
......
......@@ -16,7 +16,7 @@ CEC_RECEIVE, CEC_TRANSMIT - Receive or transmit a CEC message
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct cec_msg *argp )
.. c:function:: int ioctl( int fd, int request, struct cec_msg *argp )
Arguments
=========
......
......@@ -15,7 +15,7 @@ AUDIO_BILINGUAL_CHANNEL_SELECT
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_BILINGUAL_CHANNEL_SELECT, audio_channel_select_t)
.. c:function:: int ioctl(int fd, int request = AUDIO_BILINGUAL_CHANNEL_SELECT, audio_channel_select_t)
Arguments
......
......@@ -15,7 +15,7 @@ AUDIO_CHANNEL_SELECT
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_CHANNEL_SELECT, audio_channel_select_t)
.. c:function:: int ioctl(int fd, int request = AUDIO_CHANNEL_SELECT, audio_channel_select_t)
Arguments
......
......@@ -15,7 +15,7 @@ AUDIO_CLEAR_BUFFER
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_CLEAR_BUFFER)
.. c:function:: int ioctl(int fd, int request = AUDIO_CLEAR_BUFFER)
Arguments
......
......@@ -15,7 +15,7 @@ AUDIO_CONTINUE
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_CONTINUE)
.. c:function:: int ioctl(int fd, int request = AUDIO_CONTINUE)
Arguments
......
......@@ -15,7 +15,7 @@ DVB audio close()
Synopsis
--------
.. cpp:function:: int close(int fd)
.. c:function:: int close(int fd)
Arguments
......
......@@ -15,7 +15,7 @@ DVB audio open()
Synopsis
--------
.. cpp:function:: int open(const char *deviceName, int flags)
.. c:function:: int open(const char *deviceName, int flags)
Arguments
......
......@@ -15,7 +15,7 @@ DVB audio write()
Synopsis
--------
.. cpp:function:: size_t write(int fd, const void *buf, size_t count)
.. c:function:: size_t write(int fd, const void *buf, size_t count)
Arguments
......
......@@ -15,7 +15,7 @@ AUDIO_GET_CAPABILITIES
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_GET_CAPABILITIES, unsigned int *cap)
.. c:function:: int ioctl(int fd, int request = AUDIO_GET_CAPABILITIES, unsigned int *cap)
Arguments
......
......@@ -15,7 +15,7 @@ AUDIO_GET_PTS
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_GET_PTS, __u64 *pts)
.. c:function:: int ioctl(int fd, int request = AUDIO_GET_PTS, __u64 *pts)
Arguments
......
......@@ -15,7 +15,7 @@ AUDIO_GET_STATUS
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_GET_STATUS, struct audio_status *status)
.. c:function:: int ioctl(int fd, int request = AUDIO_GET_STATUS, struct audio_status *status)
Arguments
......
......@@ -15,7 +15,7 @@ AUDIO_PAUSE
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_PAUSE)
.. c:function:: int ioctl(int fd, int request = AUDIO_PAUSE)
Arguments
......
......@@ -15,7 +15,7 @@ AUDIO_PLAY
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_PLAY)
.. c:function:: int ioctl(int fd, int request = AUDIO_PLAY)
Arguments
......
......@@ -15,7 +15,7 @@ AUDIO_SELECT_SOURCE
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_SELECT_SOURCE, audio_stream_source_t source)
.. c:function:: int ioctl(int fd, int request = AUDIO_SELECT_SOURCE, audio_stream_source_t source)
Arguments
......
......@@ -15,7 +15,7 @@ AUDIO_SET_ATTRIBUTES
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = AUDIO_SET_ATTRIBUTES, audio_attributes_t attr )
.. c:function:: int ioctl(fd, int request = AUDIO_SET_ATTRIBUTES, audio_attributes_t attr )
Arguments
......
......@@ -15,7 +15,7 @@ AUDIO_SET_AV_SYNC
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_SET_AV_SYNC, boolean state)
.. c:function:: int ioctl(int fd, int request = AUDIO_SET_AV_SYNC, boolean state)
Arguments
......
......@@ -15,7 +15,7 @@ AUDIO_SET_BYPASS_MODE
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_SET_BYPASS_MODE, boolean mode)
.. c:function:: int ioctl(int fd, int request = AUDIO_SET_BYPASS_MODE, boolean mode)
Arguments
......
......@@ -15,7 +15,7 @@ AUDIO_SET_EXT_ID
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = AUDIO_SET_EXT_ID, int id)
.. c:function:: int ioctl(fd, int request = AUDIO_SET_EXT_ID, int id)
Arguments
......
......@@ -15,7 +15,7 @@ AUDIO_SET_ID
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_SET_ID, int id)
.. c:function:: int ioctl(int fd, int request = AUDIO_SET_ID, int id)
Arguments
......
......@@ -15,7 +15,7 @@ AUDIO_SET_KARAOKE
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = AUDIO_SET_KARAOKE, audio_karaoke_t *karaoke)
.. c:function:: int ioctl(fd, int request = AUDIO_SET_KARAOKE, audio_karaoke_t *karaoke)
Arguments
......
......@@ -15,7 +15,7 @@ AUDIO_SET_MIXER
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_SET_MIXER, audio_mixer_t *mix)
.. c:function:: int ioctl(int fd, int request = AUDIO_SET_MIXER, audio_mixer_t *mix)
Arguments
......
......@@ -15,7 +15,7 @@ AUDIO_SET_MUTE
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_SET_MUTE, boolean state)
.. c:function:: int ioctl(int fd, int request = AUDIO_SET_MUTE, boolean state)
Arguments
......
......@@ -15,7 +15,7 @@ AUDIO_SET_STREAMTYPE
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = AUDIO_SET_STREAMTYPE, int type)
.. c:function:: int ioctl(fd, int request = AUDIO_SET_STREAMTYPE, int type)
Arguments
......
......@@ -15,7 +15,7 @@ AUDIO_STOP
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_STOP)
.. c:function:: int ioctl(int fd, int request = AUDIO_STOP)
Arguments
......
......@@ -15,7 +15,7 @@ DVB CA close()
Synopsis
--------
.. cpp:function:: int close(int fd)
.. c:function:: int close(int fd)
Arguments
......
......@@ -15,7 +15,7 @@ DVB CA open()
Synopsis
--------
.. cpp:function:: int open(const char *deviceName, int flags)
.. c:function:: int open(const char *deviceName, int flags)
Arguments
......
......@@ -15,7 +15,7 @@ CA_GET_CAP
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = CA_GET_CAP, ca_caps_t *)
.. c:function:: int ioctl(fd, int request = CA_GET_CAP, ca_caps_t *)
Arguments
......
......@@ -15,7 +15,7 @@ CA_GET_DESCR_INFO
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = CA_GET_DESCR_INFO, ca_descr_info_t *)
.. c:function:: int ioctl(fd, int request = CA_GET_DESCR_INFO, ca_descr_info_t *)
Arguments
......
......@@ -15,7 +15,7 @@ CA_GET_MSG
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = CA_GET_MSG, ca_msg_t *)
.. c:function:: int ioctl(fd, int request = CA_GET_MSG, ca_msg_t *)
Arguments
......
......@@ -15,7 +15,7 @@ CA_GET_SLOT_INFO
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = CA_GET_SLOT_INFO, ca_slot_info_t *)
.. c:function:: int ioctl(fd, int request = CA_GET_SLOT_INFO, ca_slot_info_t *)
Arguments
......
......@@ -15,7 +15,7 @@ CA_RESET
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = CA_RESET)
.. c:function:: int ioctl(fd, int request = CA_RESET)
Arguments
......
......@@ -15,7 +15,7 @@ CA_SEND_MSG
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = CA_SEND_MSG, ca_msg_t *)
.. c:function:: int ioctl(fd, int request = CA_SEND_MSG, ca_msg_t *)
Arguments
......
......@@ -15,7 +15,7 @@ CA_SET_DESCR
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = CA_SET_DESCR, ca_descr_t *)
.. c:function:: int ioctl(fd, int request = CA_SET_DESCR, ca_descr_t *)
Arguments
......
......@@ -15,7 +15,7 @@ CA_SET_PID
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = CA_SET_PID, ca_pid_t *)
.. c:function:: int ioctl(fd, int request = CA_SET_PID, ca_pid_t *)
Arguments
......
......@@ -15,7 +15,7 @@ DMX_ADD_PID
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = DMX_ADD_PID, __u16 *)
.. c:function:: int ioctl(fd, int request = DMX_ADD_PID, __u16 *)
Arguments
......
......@@ -15,7 +15,7 @@ DVB demux close()
Synopsis
--------
.. cpp:function:: int close(int fd)
.. c:function:: int close(int fd)
Arguments
......
......@@ -15,7 +15,7 @@ DVB demux open()
Synopsis
--------
.. cpp:function:: int open(const char *deviceName, int flags)
.. c:function:: int open(const char *deviceName, int flags)
Arguments
......
......@@ -15,7 +15,7 @@ DVB demux read()
Synopsis
--------
.. cpp:function:: size_t read(int fd, void *buf, size_t count)
.. c:function:: size_t read(int fd, void *buf, size_t count)
Arguments
......
......@@ -15,7 +15,7 @@ DVB demux write()
Synopsis
--------
.. cpp:function:: ssize_t write(int fd, const void *buf, size_t count)
.. c:function:: ssize_t write(int fd, const void *buf, size_t count)
Arguments
......
......@@ -15,7 +15,7 @@ DMX_GET_CAPS
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = DMX_GET_CAPS, dmx_caps_t *)
.. c:function:: int ioctl(fd, int request = DMX_GET_CAPS, dmx_caps_t *)
Arguments
......
......@@ -15,7 +15,7 @@ DMX_GET_EVENT
Synopsis
--------
.. cpp:function:: int ioctl( int fd, int request = DMX_GET_EVENT, struct dmx_event *ev)
.. c:function:: int ioctl( int fd, int request = DMX_GET_EVENT, struct dmx_event *ev)
Arguments
......
......@@ -15,7 +15,7 @@ DMX_GET_PES_PIDS
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = DMX_GET_PES_PIDS, __u16[5])
.. c:function:: int ioctl(fd, int request = DMX_GET_PES_PIDS, __u16[5])
Arguments
......
......@@ -15,7 +15,7 @@ DMX_GET_STC
Synopsis
--------
.. cpp:function:: int ioctl( int fd, int request = DMX_GET_STC, struct dmx_stc *stc)
.. c:function:: int ioctl( int fd, int request = DMX_GET_STC, struct dmx_stc *stc)
Arguments
......
......@@ -15,7 +15,7 @@ DMX_REMOVE_PID
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = DMX_REMOVE_PID, __u16 *)
.. c:function:: int ioctl(fd, int request = DMX_REMOVE_PID, __u16 *)
Arguments
......
......@@ -15,7 +15,7 @@ DMX_SET_BUFFER_SIZE
Synopsis
--------
.. cpp:function:: int ioctl( int fd, int request = DMX_SET_BUFFER_SIZE, unsigned long size)
.. c:function:: int ioctl( int fd, int request = DMX_SET_BUFFER_SIZE, unsigned long size)
Arguments
......
......@@ -15,7 +15,7 @@ DMX_SET_FILTER
Synopsis
--------
.. cpp:function:: int ioctl( int fd, int request = DMX_SET_FILTER, struct dmx_sct_filter_params *params)
.. c:function:: int ioctl( int fd, int request = DMX_SET_FILTER, struct dmx_sct_filter_params *params)
Arguments
......
......@@ -15,7 +15,7 @@ DMX_SET_PES_FILTER
Synopsis
--------
.. cpp:function:: int ioctl( int fd, int request = DMX_SET_PES_FILTER, struct dmx_pes_filter_params *params)
.. c:function:: int ioctl( int fd, int request = DMX_SET_PES_FILTER, struct dmx_pes_filter_params *params)
Arguments
......
......@@ -15,7 +15,7 @@ DMX_SET_SOURCE
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = DMX_SET_SOURCE, dmx_source_t *)
.. c:function:: int ioctl(fd, int request = DMX_SET_SOURCE, dmx_source_t *)
Arguments
......
......@@ -15,7 +15,7 @@ DMX_START
Synopsis
--------
.. cpp:function:: int ioctl( int fd, int request = DMX_START)
.. c:function:: int ioctl( int fd, int request = DMX_START)
Arguments
......
......@@ -15,7 +15,7 @@ DMX_STOP
Synopsis
--------
.. cpp:function:: int ioctl( int fd, int request = DMX_STOP)
.. c:function:: int ioctl( int fd, int request = DMX_STOP)
Arguments
......
......@@ -15,7 +15,7 @@ FE_DISEQC_RECV_SLAVE_REPLY - Receives reply from a DiSEqC 2.0 command
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct dvb_diseqc_slave_reply *argp )
.. c:function:: int ioctl( int fd, int request, struct dvb_diseqc_slave_reply *argp )
Arguments
......
......@@ -15,7 +15,7 @@ FE_DISEQC_RESET_OVERLOAD - Restores the power to the antenna subsystem, if it wa
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, NULL )
.. c:function:: int ioctl( int fd, int request, NULL )
Arguments
......
......@@ -15,7 +15,7 @@ FE_DISEQC_SEND_BURST - Sends a 22KHz tone burst for 2x1 mini DiSEqC satellite se
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, enum fe_sec_mini_cmd *tone )
.. c:function:: int ioctl( int fd, int request, enum fe_sec_mini_cmd *tone )
Arguments
......
......@@ -15,7 +15,7 @@ FE_DISEQC_SEND_MASTER_CMD - Sends a DiSEqC command
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct dvb_diseqc_master_cmd *argp )
.. c:function:: int ioctl( int fd, int request, struct dvb_diseqc_master_cmd *argp )
Arguments
......
......@@ -15,7 +15,7 @@ FE_DISHNETWORK_SEND_LEGACY_CMD
Synopsis
========
.. cpp:function:: int ioctl(int fd, int request = FE_DISHNETWORK_SEND_LEGACY_CMD, unsigned long cmd)
.. c:function:: int ioctl(int fd, int request = FE_DISHNETWORK_SEND_LEGACY_CMD, unsigned long cmd)
Arguments
......
......@@ -15,7 +15,7 @@ FE_ENABLE_HIGH_LNB_VOLTAGE - Select output DC level between normal LNBf voltages
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, unsigned int high )
.. c:function:: int ioctl( int fd, int request, unsigned int high )
Arguments
......
......@@ -15,7 +15,7 @@ FE_GET_EVENT
Synopsis
========
.. cpp:function:: int ioctl(int fd, int request = QPSK_GET_EVENT, struct dvb_frontend_event *ev)
.. c:function:: int ioctl(int fd, int request = QPSK_GET_EVENT, struct dvb_frontend_event *ev)
Arguments
......
......@@ -15,7 +15,7 @@ FE_GET_FRONTEND
Synopsis
========
.. cpp:function:: int ioctl(int fd, int request = FE_GET_FRONTEND, struct dvb_frontend_parameters *p)
.. c:function:: int ioctl(int fd, int request = FE_GET_FRONTEND, struct dvb_frontend_parameters *p)
Arguments
......
......@@ -15,7 +15,7 @@ FE_GET_INFO - Query DVB frontend capabilities and returns information about the
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct dvb_frontend_info *argp )
.. c:function:: int ioctl( int fd, int request, struct dvb_frontend_info *argp )
Arguments
......
......@@ -15,7 +15,7 @@ FE_SET_PROPERTY - FE_GET_PROPERTY - FE_SET_PROPERTY sets one or more frontend pr
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct dtv_properties *argp )
.. c:function:: int ioctl( int fd, int request, struct dtv_properties *argp )
Arguments
......
......@@ -14,7 +14,7 @@ FE_READ_BER
Synopsis
========
.. cpp:function:: int ioctl(int fd, int request = FE_READ_BER, uint32_t *ber)
.. c:function:: int ioctl(int fd, int request = FE_READ_BER, uint32_t *ber)
Arguments
......
......@@ -15,7 +15,7 @@ FE_READ_SIGNAL_STRENGTH
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request = FE_READ_SIGNAL_STRENGTH, uint16_t *strength)
.. c:function:: int ioctl( int fd, int request = FE_READ_SIGNAL_STRENGTH, uint16_t *strength)
Arguments
......
......@@ -15,7 +15,7 @@ FE_READ_SNR
Synopsis
========
.. cpp:function:: int ioctl(int fd, int request = FE_READ_SNR, int16_t *snr)
.. c:function:: int ioctl(int fd, int request = FE_READ_SNR, int16_t *snr)
Arguments
......
......@@ -15,7 +15,7 @@ FE_READ_STATUS - Returns status information about the front-end. This call only
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, unsigned int *status )
.. c:function:: int ioctl( int fd, int request, unsigned int *status )
Arguments
......
......@@ -15,7 +15,7 @@ FE_READ_UNCORRECTED_BLOCKS
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request =FE_READ_UNCORRECTED_BLOCKS, uint32_t *ublocks)
.. c:function:: int ioctl( int fd, int request =FE_READ_UNCORRECTED_BLOCKS, uint32_t *ublocks)
Arguments
......
......@@ -15,7 +15,7 @@ FE_SET_FRONTEND_TUNE_MODE - Allow setting tuner mode flags to the frontend.
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, unsigned int flags )
.. c:function:: int ioctl( int fd, int request, unsigned int flags )
Arguments
......
......@@ -15,7 +15,7 @@ FE_SET_FRONTEND
Synopsis
========
.. cpp:function:: int ioctl(int fd, int request = FE_SET_FRONTEND, struct dvb_frontend_parameters *p)
.. c:function:: int ioctl(int fd, int request = FE_SET_FRONTEND, struct dvb_frontend_parameters *p)
Arguments
......
......@@ -15,7 +15,7 @@ FE_SET_TONE - Sets/resets the generation of the continuous 22kHz tone.
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, enum fe_sec_tone_mode *tone )
.. c:function:: int ioctl( int fd, int request, enum fe_sec_tone_mode *tone )
Arguments
......
......@@ -15,7 +15,7 @@ FE_SET_VOLTAGE - Allow setting the DC level sent to the antenna subsystem.
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, enum fe_sec_voltage *voltage )
.. c:function:: int ioctl( int fd, int request, enum fe_sec_voltage *voltage )
Arguments
......
......@@ -20,7 +20,7 @@ Synopsis
#include <unistd.h>
.. cpp:function:: int close( int fd )
.. c:function:: int close( int fd )
Arguments
......
......@@ -20,7 +20,7 @@ Synopsis
#include <fcntl.h>
.. cpp:function:: int open( const char *device_name, int flags )
.. c:function:: int open( const char *device_name, int flags )
Arguments
......
......@@ -15,7 +15,7 @@ NET_ADD_IF - Creates a new network interface for a given Packet ID.
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct dvb_net_if *net_if )
.. c:function:: int ioctl( int fd, int request, struct dvb_net_if *net_if )
Arguments
......
......@@ -15,7 +15,7 @@ NET_GET_IF - Read the configuration data of an interface created via - :ref:`NET
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct dvb_net_if *net_if )
.. c:function:: int ioctl( int fd, int request, struct dvb_net_if *net_if )
Arguments
......
......@@ -15,7 +15,7 @@ NET_REMOVE_IF - Removes a network interface.
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, int ifnum )
.. c:function:: int ioctl( int fd, int request, int ifnum )
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_CLEAR_BUFFER
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = VIDEO_CLEAR_BUFFER)
.. c:function:: int ioctl(fd, int request = VIDEO_CLEAR_BUFFER)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_COMMAND
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = VIDEO_COMMAND, struct video_command *cmd)
.. c:function:: int ioctl(int fd, int request = VIDEO_COMMAND, struct video_command *cmd)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_CONTINUE
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = VIDEO_CONTINUE)
.. c:function:: int ioctl(fd, int request = VIDEO_CONTINUE)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_FAST_FORWARD
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = VIDEO_FAST_FORWARD, int nFrames)
.. c:function:: int ioctl(fd, int request = VIDEO_FAST_FORWARD, int nFrames)
Arguments
......
......@@ -15,7 +15,7 @@ dvb video close()
Synopsis
--------
.. cpp:function:: int close(int fd)
.. c:function:: int close(int fd)
Arguments
......
......@@ -15,7 +15,7 @@ dvb video open()
Synopsis
--------
.. cpp:function:: int open(const char *deviceName, int flags)
.. c:function:: int open(const char *deviceName, int flags)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_FREEZE
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = VIDEO_FREEZE)
.. c:function:: int ioctl(fd, int request = VIDEO_FREEZE)
Arguments
......
......@@ -15,7 +15,7 @@ dvb video write()
Synopsis
--------
.. cpp:function:: size_t write(int fd, const void *buf, size_t count)
.. c:function:: size_t write(int fd, const void *buf, size_t count)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_GET_CAPABILITIES
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = VIDEO_GET_CAPABILITIES, unsigned int *cap)
.. c:function:: int ioctl(fd, int request = VIDEO_GET_CAPABILITIES, unsigned int *cap)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_GET_EVENT
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = VIDEO_GET_EVENT, struct video_event *ev)
.. c:function:: int ioctl(fd, int request = VIDEO_GET_EVENT, struct video_event *ev)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_GET_FRAME_COUNT
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = VIDEO_GET_FRAME_COUNT, __u64 *pts)
.. c:function:: int ioctl(int fd, int request = VIDEO_GET_FRAME_COUNT, __u64 *pts)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_GET_FRAME_RATE
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = VIDEO_GET_FRAME_RATE, unsigned int *rate)
.. c:function:: int ioctl(int fd, int request = VIDEO_GET_FRAME_RATE, unsigned int *rate)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_GET_NAVI
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = VIDEO_GET_NAVI , video_navi_pack_t *navipack)
.. c:function:: int ioctl(fd, int request = VIDEO_GET_NAVI , video_navi_pack_t *navipack)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_GET_PTS
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = VIDEO_GET_PTS, __u64 *pts)
.. c:function:: int ioctl(int fd, int request = VIDEO_GET_PTS, __u64 *pts)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_GET_SIZE
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = VIDEO_GET_SIZE, video_size_t *size)
.. c:function:: int ioctl(int fd, int request = VIDEO_GET_SIZE, video_size_t *size)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_GET_STATUS
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = VIDEO_GET_STATUS, struct video_status *status)
.. c:function:: int ioctl(fd, int request = VIDEO_GET_STATUS, struct video_status *status)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_PLAY
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = VIDEO_PLAY)
.. c:function:: int ioctl(fd, int request = VIDEO_PLAY)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_SELECT_SOURCE
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = VIDEO_SELECT_SOURCE, video_stream_source_t source)
.. c:function:: int ioctl(fd, int request = VIDEO_SELECT_SOURCE, video_stream_source_t source)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_SET_ATTRIBUTES
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = VIDEO_SET_ATTRIBUTE ,video_attributes_t vattr)
.. c:function:: int ioctl(fd, int request = VIDEO_SET_ATTRIBUTE ,video_attributes_t vattr)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_SET_BLANK
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = VIDEO_SET_BLANK, boolean mode)
.. c:function:: int ioctl(fd, int request = VIDEO_SET_BLANK, boolean mode)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_SET_DISPLAY_FORMAT
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = VIDEO_SET_DISPLAY_FORMAT, video_display_format_t format)
.. c:function:: int ioctl(fd, int request = VIDEO_SET_DISPLAY_FORMAT, video_display_format_t format)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_SET_FORMAT
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = VIDEO_SET_FORMAT, video_format_t format)
.. c:function:: int ioctl(fd, int request = VIDEO_SET_FORMAT, video_format_t format)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_SET_HIGHLIGHT
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = VIDEO_SET_HIGHLIGHT ,video_highlight_t *vhilite)
.. c:function:: int ioctl(fd, int request = VIDEO_SET_HIGHLIGHT ,video_highlight_t *vhilite)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_SET_ID
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = VIDEO_SET_ID, int id)
.. c:function:: int ioctl(int fd, int request = VIDEO_SET_ID, int id)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_SET_SPU_PALETTE
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = VIDEO_SET_SPU_PALETTE, video_spu_palette_t *palette )
.. c:function:: int ioctl(fd, int request = VIDEO_SET_SPU_PALETTE, video_spu_palette_t *palette )
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_SET_SPU
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = VIDEO_SET_SPU , video_spu_t *spu)
.. c:function:: int ioctl(fd, int request = VIDEO_SET_SPU , video_spu_t *spu)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_SET_STREAMTYPE
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = VIDEO_SET_STREAMTYPE, int type)
.. c:function:: int ioctl(fd, int request = VIDEO_SET_STREAMTYPE, int type)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_SET_SYSTEM
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = VIDEO_SET_SYSTEM , video_system_t system)
.. c:function:: int ioctl(fd, int request = VIDEO_SET_SYSTEM , video_system_t system)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_SLOWMOTION
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = VIDEO_SLOWMOTION, int nFrames)
.. c:function:: int ioctl(fd, int request = VIDEO_SLOWMOTION, int nFrames)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_STILLPICTURE
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = VIDEO_STILLPICTURE, struct video_still_picture *sp)
.. c:function:: int ioctl(fd, int request = VIDEO_STILLPICTURE, struct video_still_picture *sp)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_STOP
Synopsis
--------
.. cpp:function:: int ioctl(fd, int request = VIDEO_STOP, boolean mode)
.. c:function:: int ioctl(fd, int request = VIDEO_STOP, boolean mode)
Arguments
......
......@@ -15,7 +15,7 @@ VIDEO_TRY_COMMAND
Synopsis
--------
.. cpp:function:: int ioctl(int fd, int request = VIDEO_TRY_COMMAND, struct video_command *cmd)
.. c:function:: int ioctl(int fd, int request = VIDEO_TRY_COMMAND, struct video_command *cmd)
Arguments
......
......@@ -20,7 +20,7 @@ Synopsis
#include <unistd.h>
.. cpp:function:: int close( int fd )
.. c:function:: int close( int fd )
Arguments
......
......@@ -20,7 +20,7 @@ Synopsis
#include <sys/ioctl.h>
.. cpp:function:: int ioctl( int fd, int request, void *argp )
.. c:function:: int ioctl( int fd, int request, void *argp )
Arguments
......
......@@ -20,7 +20,7 @@ Synopsis
#include <fcntl.h>
.. cpp:function:: int open( const char *device_name, int flags )
.. c:function:: int open( const char *device_name, int flags )
Arguments
......
......@@ -15,7 +15,7 @@ MEDIA_IOC_DEVICE_INFO - Query device information
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct media_device_info *argp )
.. c:function:: int ioctl( int fd, int request, struct media_device_info *argp )
Arguments
......
......@@ -15,7 +15,7 @@ MEDIA_IOC_ENUM_ENTITIES - Enumerate entities and their properties
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct media_entity_desc *argp )
.. c:function:: int ioctl( int fd, int request, struct media_entity_desc *argp )
Arguments
......
......@@ -15,7 +15,7 @@ MEDIA_IOC_ENUM_LINKS - Enumerate all pads and links for a given entity
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct media_links_enum *argp )
.. c:function:: int ioctl( int fd, int request, struct media_links_enum *argp )
Arguments
......
......@@ -15,7 +15,7 @@ MEDIA_IOC_G_TOPOLOGY - Enumerate the graph topology and graph element properties
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct media_v2_topology *argp )
.. c:function:: int ioctl( int fd, int request, struct media_v2_topology *argp )
Arguments
......
......@@ -15,7 +15,7 @@ MEDIA_IOC_SETUP_LINK - Modify the properties of a link
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct media_link_desc *argp )
.. c:function:: int ioctl( int fd, int request, struct media_link_desc *argp )
Arguments
......
......@@ -14,7 +14,7 @@ LIRC_GET_FEATURES - Get the underlying hardware device's features
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, __u32 *features)
.. c:function:: int ioctl( int fd, int request, __u32 *features)
Arguments
=========
......
......@@ -14,7 +14,7 @@ LIRC_GET_LENGTH - Retrieves the code length in bits.
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, __u32 *length )
.. c:function:: int ioctl( int fd, int request, __u32 *length )
Arguments
=========
......
......@@ -15,7 +15,7 @@ LIRC_GET_REC_MODE/LIRC_GET_REC_MODE - Get/set supported receive modes.
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, __u32 rx_modes)
.. c:function:: int ioctl( int fd, int request, __u32 rx_modes)
Arguments
=========
......
......@@ -14,7 +14,7 @@ LIRC_GET_REC_RESOLUTION - Obtain the value of receive resolution, in microsecond
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, __u32 *microseconds)
.. c:function:: int ioctl( int fd, int request, __u32 *microseconds)
Arguments
=========
......
......@@ -15,7 +15,7 @@ LIRC_GET_SEND_MODE/LIRC_SET_SEND_MODE - Get/set supported transmit mode.
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, __u32 *tx_modes )
.. c:function:: int ioctl( int fd, int request, __u32 *tx_modes )
Arguments
=========
......
......@@ -16,7 +16,7 @@ range for IR receive.
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, __u32 *timeout)
.. c:function:: int ioctl( int fd, int request, __u32 *timeout)
Arguments
=========
......
......@@ -20,7 +20,7 @@ Synopsis
#include <unistd.h>
.. cpp:function:: ssize_t read( int fd, void *buf, size_t count )
.. c:function:: ssize_t read( int fd, void *buf, size_t count )
Arguments
......
......@@ -14,7 +14,7 @@ LIRC_SET_MEASURE_CARRIER_MODE - enable or disable measure mode
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, __u32 *enable )
.. c:function:: int ioctl( int fd, int request, __u32 *enable )
Arguments
=========
......
......@@ -15,7 +15,7 @@ IR receive.
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, __u32 *frequency )
.. c:function:: int ioctl( int fd, int request, __u32 *frequency )
Arguments
=========
......
......@@ -15,7 +15,7 @@ LIRC_SET_REC_CARRIER - Set carrier used to modulate IR receive.
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, __u32 *frequency )
.. c:function:: int ioctl( int fd, int request, __u32 *frequency )
Arguments
=========
......
......@@ -14,7 +14,7 @@ LIRC_SET_REC_TIMEOUT_REPORTS - enable or disable timeout reports for IR receive
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, __u32 *enable )
.. c:function:: int ioctl( int fd, int request, __u32 *enable )
Arguments
=========
......
......@@ -14,7 +14,7 @@ LIRC_SET_REC_TIMEOUT - sets the integer value for IR inactivity timeout.
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, __u32 *timeout )
.. c:function:: int ioctl( int fd, int request, __u32 *timeout )
Arguments
=========
......
......@@ -15,7 +15,7 @@ LIRC_SET_SEND_CARRIER - Set send carrier used to modulate IR TX.
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, __u32 *frequency )
.. c:function:: int ioctl( int fd, int request, __u32 *frequency )
Arguments
=========
......
......@@ -15,7 +15,7 @@ IR transmit.
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, __u32 *duty_cycle)
.. c:function:: int ioctl( int fd, int request, __u32 *duty_cycle)
Arguments
=========
......
......@@ -14,7 +14,7 @@ LIRC_SET_TRANSMITTER_MASK - Enables send codes on a given set of transmitters
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, __u32 *mask )
.. c:function:: int ioctl( int fd, int request, __u32 *mask )
Arguments
=========
......
......@@ -14,7 +14,7 @@ LIRC_SET_WIDEBAND_RECEIVER - enable wide band receiver.
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, __u32 *enable )
.. c:function:: int ioctl( int fd, int request, __u32 *enable )
Arguments
=========
......
......@@ -20,7 +20,7 @@ Synopsis
#include <unistd.h>
.. cpp:function:: ssize_t write( int fd, void *buf, size_t count )
.. c:function:: ssize_t write( int fd, void *buf, size_t count )
Arguments
......
......@@ -20,7 +20,7 @@ Synopsis
#include <unistd.h>
.. cpp:function:: int close( int fd )
.. c:function:: int close( int fd )
Arguments
......
......@@ -20,7 +20,7 @@ Synopsis
#include <sys/ioctl.h>
.. cpp:function:: int ioctl( int fd, int request, void *argp )
.. c:function:: int ioctl( int fd, int request, void *argp )
Arguments
......
......@@ -21,7 +21,7 @@ Synopsis
#include <sys/mman.h>
.. cpp:function:: void *mmap( void *start, size_t length, int prot, int flags, int fd, off_t offset )
.. c:function:: void *mmap( void *start, size_t length, int prot, int flags, int fd, off_t offset )
Arguments
......
......@@ -21,7 +21,7 @@ Synopsis
#include <sys/mman.h>
.. cpp:function:: int munmap( void *start, size_t length )
.. c:function:: int munmap( void *start, size_t length )
Arguments
......
......@@ -20,7 +20,7 @@ Synopsis
#include <fcntl.h>
.. cpp:function:: int open( const char *device_name, int flags )
.. c:function:: int open( const char *device_name, int flags )
Arguments
......
......@@ -20,7 +20,7 @@ Synopsis
#include <sys/poll.h>
.. cpp:function:: int poll( struct pollfd *ufds, unsigned int nfds, int timeout )
.. c:function:: int poll( struct pollfd *ufds, unsigned int nfds, int timeout )
Arguments
......
......@@ -20,7 +20,7 @@ Synopsis
#include <unistd.h>
.. cpp:function:: ssize_t read( int fd, void *buf, size_t count )
.. c:function:: ssize_t read( int fd, void *buf, size_t count )
Arguments
......
......@@ -22,7 +22,7 @@ Synopsis
#include <unistd.h>
.. cpp:function:: int select( int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout )
.. c:function:: int select( int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout )
Arguments
......
......@@ -20,7 +20,7 @@ Synopsis
#include <unistd.h>
.. cpp:function:: ssize_t write( int fd, void *buf, size_t count )
.. c:function:: ssize_t write( int fd, void *buf, size_t count )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_CREATE_BUFS - Create buffers for Memory Mapped or User Pointer or DMA Buf
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_create_buffers *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_create_buffers *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_CROPCAP - Information about the video cropping and scaling abilities
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_cropcap *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_cropcap *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_DBG_G_CHIP_INFO - Identify the chips on a TV card
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_dbg_chip_info *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_dbg_chip_info *argp )
Arguments
......
......@@ -15,9 +15,9 @@ VIDIOC_DBG_G_REGISTER - VIDIOC_DBG_S_REGISTER - Read or write hardware registers
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_dbg_register *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_dbg_register *argp )
.. cpp:function:: int ioctl( int fd, int request, const struct v4l2_dbg_register *argp )
.. c:function:: int ioctl( int fd, int request, const struct v4l2_dbg_register *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_DECODER_CMD - VIDIOC_TRY_DECODER_CMD - Execute an decoder command
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_decoder_cmd *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_decoder_cmd *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_DQEVENT - Dequeue event
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_event *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_event *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_DV_TIMINGS_CAP - VIDIOC_SUBDEV_DV_TIMINGS_CAP - The capabilities of the D
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_dv_timings_cap *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_dv_timings_cap *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_ENCODER_CMD - VIDIOC_TRY_ENCODER_CMD - Execute an encoder command
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_encoder_cmd *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_encoder_cmd *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_ENUM_DV_TIMINGS - VIDIOC_SUBDEV_ENUM_DV_TIMINGS - Enumerate supported Dig
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_enum_dv_timings *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_enum_dv_timings *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_ENUM_FMT - Enumerate image formats
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_fmtdesc *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_fmtdesc *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_ENUM_FRAMEINTERVALS - Enumerate frame intervals
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_frmivalenum *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_frmivalenum *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_ENUM_FRAMESIZES - Enumerate frame sizes
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_frmsizeenum *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_frmsizeenum *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_ENUM_FREQ_BANDS - Enumerate supported frequency bands
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_frequency_band *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_frequency_band *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_ENUMAUDIO - Enumerate audio inputs
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_audio *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_audio *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_ENUMAUDOUT - Enumerate audio outputs
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_audioout *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_audioout *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_ENUMINPUT - Enumerate video inputs
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_input *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_input *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_ENUMOUTPUT - Enumerate video outputs
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_output *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_output *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_ENUMSTD - Enumerate supported video standards
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_standard *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_standard *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_EXPBUF - Export a buffer as a DMABUF file descriptor.
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_exportbuffer *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_exportbuffer *argp )
Arguments
......
......@@ -15,9 +15,9 @@ VIDIOC_G_AUDIO - VIDIOC_S_AUDIO - Query or select the current audio input and it
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_audio *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_audio *argp )
.. cpp:function:: int ioctl( int fd, int request, const struct v4l2_audio *argp )
.. c:function:: int ioctl( int fd, int request, const struct v4l2_audio *argp )
Arguments
......
......@@ -15,9 +15,9 @@ VIDIOC_G_AUDOUT - VIDIOC_S_AUDOUT - Query or select the current audio output
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_audioout *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_audioout *argp )
.. cpp:function:: int ioctl( int fd, int request, const struct v4l2_audioout *argp )
.. c:function:: int ioctl( int fd, int request, const struct v4l2_audioout *argp )
Arguments
......
......@@ -15,9 +15,9 @@ VIDIOC_G_CROP - VIDIOC_S_CROP - Get or set the current cropping rectangle
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_crop *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_crop *argp )
.. cpp:function:: int ioctl( int fd, int request, const struct v4l2_crop *argp )
.. c:function:: int ioctl( int fd, int request, const struct v4l2_crop *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_G_CTRL - VIDIOC_S_CTRL - Get or set the value of a control
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_control *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_control *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_G_DV_TIMINGS - VIDIOC_S_DV_TIMINGS - VIDIOC_SUBDEV_G_DV_TIMINGS - VIDIOC_
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_dv_timings *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_dv_timings *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_G_EDID - VIDIOC_S_EDID - VIDIOC_SUBDEV_G_EDID - VIDIOC_SUBDEV_S_EDID - Ge
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_edid *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_edid *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_G_ENC_INDEX - Get meta data about a compressed video stream
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_enc_idx *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_enc_idx *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_G_EXT_CTRLS - VIDIOC_S_EXT_CTRLS - VIDIOC_TRY_EXT_CTRLS - Get or set the
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_ext_controls *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_ext_controls *argp )
Arguments
......
......@@ -15,9 +15,9 @@ VIDIOC_G_FBUF - VIDIOC_S_FBUF - Get or set frame buffer overlay parameters
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_framebuffer *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_framebuffer *argp )
.. cpp:function:: int ioctl( int fd, int request, const struct v4l2_framebuffer *argp )
.. c:function:: int ioctl( int fd, int request, const struct v4l2_framebuffer *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_G_FMT - VIDIOC_S_FMT - VIDIOC_TRY_FMT - Get or set the data format, try a
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_format *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_format *argp )
Arguments
......
......@@ -15,9 +15,9 @@ VIDIOC_G_FREQUENCY - VIDIOC_S_FREQUENCY - Get or set tuner or modulator radio fr
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_frequency *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_frequency *argp )
.. cpp:function:: int ioctl( int fd, int request, const struct v4l2_frequency *argp )
.. c:function:: int ioctl( int fd, int request, const struct v4l2_frequency *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_G_INPUT - VIDIOC_S_INPUT - Query or select the current video input
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, int *argp )
.. c:function:: int ioctl( int fd, int request, int *argp )
Arguments
......
......@@ -15,9 +15,9 @@ VIDIOC_G_JPEGCOMP - VIDIOC_S_JPEGCOMP
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, v4l2_jpegcompression *argp )
.. c:function:: int ioctl( int fd, int request, v4l2_jpegcompression *argp )
.. cpp:function:: int ioctl( int fd, int request, const v4l2_jpegcompression *argp )
.. c:function:: int ioctl( int fd, int request, const v4l2_jpegcompression *argp )
Arguments
......
......@@ -15,9 +15,9 @@ VIDIOC_G_MODULATOR - VIDIOC_S_MODULATOR - Get or set modulator attributes
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_modulator *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_modulator *argp )
.. cpp:function:: int ioctl( int fd, int request, const struct v4l2_modulator *argp )
.. c:function:: int ioctl( int fd, int request, const struct v4l2_modulator *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_G_OUTPUT - VIDIOC_S_OUTPUT - Query or select the current video output
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, int *argp )
.. c:function:: int ioctl( int fd, int request, int *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_G_PARM - VIDIOC_S_PARM - Get or set streaming parameters
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, v4l2_streamparm *argp )
.. c:function:: int ioctl( int fd, int request, v4l2_streamparm *argp )
Arguments
......
......@@ -15,9 +15,9 @@ VIDIOC_G_PRIORITY - VIDIOC_S_PRIORITY - Query or request the access priority ass
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, enum v4l2_priority *argp )
.. c:function:: int ioctl( int fd, int request, enum v4l2_priority *argp )
.. cpp:function:: int ioctl( int fd, int request, const enum v4l2_priority *argp )
.. c:function:: int ioctl( int fd, int request, const enum v4l2_priority *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_G_SELECTION - VIDIOC_S_SELECTION - Get or set one of the selection rectan
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_selection *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_selection *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_G_SLICED_VBI_CAP - Query sliced VBI capabilities
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_sliced_vbi_cap *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_sliced_vbi_cap *argp )
Arguments
......
......@@ -15,9 +15,9 @@ VIDIOC_G_STD - VIDIOC_S_STD - Query or select the video standard of the current
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, v4l2_std_id *argp )
.. c:function:: int ioctl( int fd, int request, v4l2_std_id *argp )
.. cpp:function:: int ioctl( int fd, int request, const v4l2_std_id *argp )
.. c:function:: int ioctl( int fd, int request, const v4l2_std_id *argp )
Arguments
......
......@@ -15,9 +15,9 @@ VIDIOC_G_TUNER - VIDIOC_S_TUNER - Get or set tuner attributes
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_tuner *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_tuner *argp )
.. cpp:function:: int ioctl( int fd, int request, const struct v4l2_tuner *argp )
.. c:function:: int ioctl( int fd, int request, const struct v4l2_tuner *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_LOG_STATUS - Log driver status information
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request )
.. c:function:: int ioctl( int fd, int request )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_OVERLAY - Start or stop video overlay
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, const int *argp )
.. c:function:: int ioctl( int fd, int request, const int *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_PREPARE_BUF - Prepare a buffer for I/O
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_buffer *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_buffer *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_QBUF - VIDIOC_DQBUF - Exchange a buffer with the driver
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_buffer *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_buffer *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_QUERY_DV_TIMINGS - VIDIOC_SUBDEV_QUERY_DV_TIMINGS - Sense the DV preset r
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_dv_timings *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_dv_timings *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_QUERYBUF - Query the status of a buffer
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_buffer *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_buffer *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_QUERYCAP - Query device capabilities
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_capability *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_capability *argp )
Arguments
......
......@@ -15,11 +15,11 @@ VIDIOC_QUERYCTRL - VIDIOC_QUERY_EXT_CTRL - VIDIOC_QUERYMENU - Enumerate controls
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_queryctrl *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_queryctrl *argp )
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_query_ext_ctrl *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_query_ext_ctrl *argp )
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_querymenu *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_querymenu *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_QUERYSTD - Sense the video standard received by the current input
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, v4l2_std_id *argp )
.. c:function:: int ioctl( int fd, int request, v4l2_std_id *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_REQBUFS - Initiate Memory Mapping, User Pointer I/O or DMA buffer I/O
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_requestbuffers *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_requestbuffers *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_S_HW_FREQ_SEEK - Perform a hardware frequency seek
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_hw_freq_seek *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_hw_freq_seek *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_STREAMON - VIDIOC_STREAMOFF - Start or stop streaming I/O
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, const int *argp )
.. c:function:: int ioctl( int fd, int request, const int *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_SUBDEV_ENUM_FRAME_INTERVAL - Enumerate frame intervals
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_subdev_frame_interval_enum * argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_subdev_frame_interval_enum * argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_SUBDEV_ENUM_FRAME_SIZE - Enumerate media bus frame sizes
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_subdev_frame_size_enum * argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_subdev_frame_size_enum * argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_SUBDEV_ENUM_MBUS_CODE - Enumerate media bus formats
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_subdev_mbus_code_enum * argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_subdev_mbus_code_enum * argp )
Arguments
......
......@@ -15,9 +15,9 @@ VIDIOC_SUBDEV_G_CROP - VIDIOC_SUBDEV_S_CROP - Get or set the crop rectangle on a
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_subdev_crop *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_subdev_crop *argp )
.. cpp:function:: int ioctl( int fd, int request, const struct v4l2_subdev_crop *argp )
.. c:function:: int ioctl( int fd, int request, const struct v4l2_subdev_crop *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_SUBDEV_G_FMT - VIDIOC_SUBDEV_S_FMT - Get or set the data format on a subd
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_subdev_format *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_subdev_format *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_SUBDEV_G_FRAME_INTERVAL - VIDIOC_SUBDEV_S_FRAME_INTERVAL - Get or set the
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_subdev_frame_interval *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_subdev_frame_interval *argp )
Arguments
......
......@@ -15,7 +15,7 @@ VIDIOC_SUBDEV_G_SELECTION - VIDIOC_SUBDEV_S_SELECTION - Get or set selection rec
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_subdev_selection *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_subdev_selection *argp )
Arguments
......
......@@ -16,7 +16,7 @@ VIDIOC_SUBSCRIBE_EVENT - VIDIOC_UNSUBSCRIBE_EVENT - Subscribe or unsubscribe eve
Synopsis
========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_event_subscription *argp )
.. c:function:: int ioctl( int fd, int request, struct v4l2_event_subscription *argp )
Arguments
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment