summaryrefslogtreecommitdiff
path: root/include/linux
ModeNameSize
-rw-r--r--README134logplain
-rw-r--r--bcm2835-isp.h10367logplain
-rw-r--r--dma-buf.h3779logplain
-rw-r--r--dma-heap.h1394logplain
-rw-r--r--drm_fourcc.h66879logplain
-rw-r--r--intel-ipu3.h92429logplain
-rw-r--r--media-bus-format.h6909logplain
-rw-r--r--media.h12754logplain
-rw-r--r--rkisp1-config.h34196logplain
-rw-r--r--v4l2-common.h4177logplain
-rw-r--r--v4l2-controls.h98864logplain
-rw-r--r--v4l2-mediabus.h5418logplain
-rw-r--r--v4l2-subdev.h10018logplain
-rw-r--r--videodev2.h96973logplain
ynchronous method invocation across threads * \var Message::ThreadMoveMessage * \brief Object is being moved to a different thread * \var Message::UserMessage * \brief First value available for user-defined messages */ /** * \brief Construct a message object of type \a type * \param[in] type The message type */ Message::Message(Message::Type type) : type_(type) { } Message::~Message() { } /** * \fn Message::type() * \brief Retrieve the message type * \return The message type */ /** * \fn Message::receiver() * \brief Retrieve the message receiver * \return The message receiver */ /** * \brief Reserve and register a custom user-defined message type * * Custom message types use values starting at Message::UserMessage. Assigning * custom types manually may lead to accidental duplicated types. To avoid this * problem, this method reserves and returns the next available user-defined