Searched refs:notification (Results 1 - 25 of 41) sorted by relevance

12

/linux-master/fs/notify/
H A DMakefile2 obj-$(CONFIG_FSNOTIFY) += fsnotify.o notification.o group.o mark.o \
/linux-master/include/media/
H A Dv4l2-mc.h176 * v4l2_pipeline_link_notify - Link management notification callback
179 * @notification: The link's state change notification type (MEDIA_DEV_NOTIFY_*)
191 unsigned int notification);
223 unsigned int notification)
222 v4l2_pipeline_link_notify(struct media_link *link, u32 flags, unsigned int notification) argument
H A Dv4l2-device.h52 unsigned int notification, void *arg);
230 * v4l2_subdev_notify - Sends a notification to v4l2_device.
233 * @notification: type of notification. Please notice that the notification
235 * @arg: arguments for the notification. Those are specific to each
236 * notification type.
239 unsigned int notification, void *arg)
242 sd->v4l2_dev->notify(sd, notification, arg);
238 v4l2_subdev_notify(struct v4l2_subdev *sd, unsigned int notification, void *arg) argument
H A Dmedia-device.h45 * @link_notify: Link state change notification callback. This callback is
68 unsigned int notification);
190 /* Supported link_notify @notification values. */
/linux-master/drivers/staging/media/imx/
H A Dimx-media-dev-common.c236 unsigned int notification)
247 ret = v4l2_pipeline_link_notify(link, flags, notification);
271 if (notification == MEDIA_DEV_NOTIFY_PRE_LINK_CH &&
283 } else if (notification == MEDIA_DEV_NOTIFY_POST_LINK_CH &&
302 static void imx_media_notify(struct v4l2_subdev *sd, unsigned int notification, argument
308 if (notification != V4L2_DEVICE_NOTIFY_EVENT)
235 imx_media_link_notify(struct media_link *link, u32 flags, unsigned int notification) argument
/linux-master/drivers/soc/qcom/
H A Dpmic_glink_altmode.c48 __le32 notification; member in struct:usbc_sc8180x_notify
263 u32 notification; local
278 notification = le32_to_cpu(msg->notification);
279 port = FIELD_GET(SC8180X_PORT_MASK, notification);
280 orientation = FIELD_GET(SC8180X_ORIENTATION_MASK, notification);
281 mux = FIELD_GET(SC8180X_MUX_MASK, notification);
282 mode = FIELD_GET(SC8180X_MODE_MASK, notification);
283 hpd_state = FIELD_GET(SC8180X_HPD_STATE_MASK, notification);
284 hpd_irq = FIELD_GET(SC8180X_HPD_IRQ_MASK, notification);
[all...]
/linux-master/drivers/staging/media/tegra-video/
H A Dvideo.c30 unsigned int notification, void *arg)
35 if (notification != V4L2_DEVICE_NOTIFY_EVENT)
29 tegra_v4l2_dev_notify(struct v4l2_subdev *sd, unsigned int notification, void *arg) argument
/linux-master/include/uapi/sound/
H A Dfirewire.h30 unsigned int notification; /* DICE-specific bits */ member in struct:snd_firewire_event_dice_notification
/linux-master/ipc/
H A Dmqueue.c631 * to read only queue size & notification info (the only values
785 /* notification
835 /* after notification unregisters process */
1313 * and he isn't currently owner of notification, will be silently discarded.
1316 static int do_mq_notify(mqd_t mqdes, const struct sigevent *notification) argument
1325 audit_mq_notify(mqdes, notification);
1329 if (notification != NULL) {
1330 if (unlikely(notification->sigev_notify != SIGEV_NONE &&
1331 notification->sigev_notify != SIGEV_SIGNAL &&
1332 notification
[all...]
/linux-master/drivers/pci/hotplug/
H A Dacpiphp_ibm.c74 /* struct notification - keeps info about the device
75 * that cause the ACPI notification event
77 struct notification { struct
95 static struct notification ibm_note;
237 * @context: passed context (our notification struct)
249 * has returned, thereby enforcing serial access for the notification struct.
255 struct notification *note = context;
257 pr_debug("%s: Received notification %02x\n", __func__, event);
452 pr_err("%s: Failed to register notification handler\n",
/linux-master/drivers/media/v4l2-core/
H A Dv4l2-mc.c446 * To react to link management on powered pipelines, the link setup notification
580 unsigned int notification)
592 if (notification == MEDIA_DEV_NOTIFY_POST_LINK_CH &&
600 if (notification == MEDIA_DEV_NOTIFY_PRE_LINK_CH &&
579 v4l2_pipeline_link_notify(struct media_link *link, u32 flags, unsigned int notification) argument
/linux-master/sound/firewire/dice/
H A Ddice-hwdep.c40 event.dice_notification.notification = dice->notification_bits;
H A Ddice-proc.c79 u32 notification; member in struct:__anon1276::__anon1277
132 snd_iprintf(buffer, " notification: %08x\n", buf.global.notification);
/linux-master/include/linux/
H A Daudit.h412 extern void __audit_mq_notify(mqd_t mqdes, const struct sigevent *notification);
483 static inline void audit_mq_notify(mqd_t mqdes, const struct sigevent *notification) argument
486 __audit_mq_notify(mqdes, notification);
661 const struct sigevent *notification)
660 audit_mq_notify(mqd_t mqdes, const struct sigevent *notification) argument
/linux-master/drivers/regulator/
H A Dda9121-regulator.c140 unsigned long notification; /* Notification for status inception */ member in struct:status_event_data
144 #define DA9121_STATUS(id, bank, name, notification, warning) \
149 notification, warning }
152 #define DA9xxx_STATUS(id, bank, name, notification, warning) \
157 notification, warning }
721 regulator_notifier_call_chain(rdev, item->notification, NULL);
/linux-master/drivers/power/supply/
H A Dqcom_battmgr.c211 __le32 notification; member in union:qcom_battmgr_message::__anon68
935 unsigned int notification; local
937 if (payload_len != sizeof(msg->notification)) {
938 dev_warn(battmgr->dev, "ignoring notification with invalid length\n");
942 notification = le32_to_cpu(msg->notification);
943 switch (notification) {
958 dev_err(battmgr->dev, "unknown notification: %#x\n", notification);
/linux-master/drivers/media/platform/renesas/rcar-vin/
H A Drcar-v4l2.c1059 unsigned int notification, void *arg)
1061 switch (notification) {
1071 unsigned int notification, void *arg)
1082 rvin_notify_video_device(vin, notification, arg);
1101 rvin_notify_video_device(vin, notification, arg);
1058 rvin_notify_video_device(struct rvin_dev *vin, unsigned int notification, void *arg) argument
1070 rvin_notify(struct v4l2_subdev *sd, unsigned int notification, void *arg) argument
H A Drcar-core.c767 unsigned int notification)
777 ret = v4l2_pipeline_link_notify(link, flags, notification);
766 rvin_csi2_link_notify(struct media_link *link, u32 flags, unsigned int notification) argument
/linux-master/drivers/net/usb/
H A Drndis_host.c94 struct usb_cdc_notification notification; local
133 &notification, sizeof(notification), &partial,
/linux-master/drivers/md/dm-vdo/
H A Dvdo.h28 /* A notification is in progress */
32 /* A notification has completed */
40 * @parent: The completion to notify in order to acknowledge the notification.
330 vdo_read_only_notification_fn notification,
/linux-master/net/sctp/
H A Dulpevent.c109 * provided by this notification.
128 * head room to use as notification.
140 /* Include the notification structure */
186 * This field is the total length of the notification data, including
187 * the notification header.
272 * This field is the total length of the notification data, including
273 * the notification header.
358 /* Create and initialize an SCTP_REMOTE_ERROR notification.
393 * notification with.
425 /* Create and initialize a SCTP_SEND_FAILED notification
976 union sctp_notification *notification; local
[all...]
/linux-master/drivers/media/platform/samsung/exynos4-is/
H A Dmedia-dev.c1206 unsigned int notification)
1215 if (notification == MEDIA_DEV_NOTIFY_PRE_LINK_CH) {
1227 } else if (notification == MEDIA_DEV_NOTIFY_POST_LINK_CH) {
1205 fimc_md_link_notify(struct media_link *link, unsigned int flags, unsigned int notification) argument
H A Dfimc-core.h659 void fimc_sensor_notify(struct v4l2_subdev *sd, unsigned int notification,
/linux-master/drivers/usb/typec/ucsi/
H A Ducsi_glink.c52 u32 notification; member in struct:ucsi_notify_ind_msg
257 dev_err(ucsi->dev, "failed to read CCI on notification\n");
/linux-master/drivers/media/pci/cobalt/
H A Dcobalt-driver.c137 unsigned int notification, void *arg)
147 switch (notification) {
136 cobalt_notify(struct v4l2_subdev *sd, unsigned int notification, void *arg) argument

Completed in 385 milliseconds

12