Searched defs:notification (Results 1 - 8 of 8) sorted by relevance

/hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/
H A DTrustletSession.cpp65 void TrustletSession::queueNotification(notification_t *notification) argument
67 notifications.push(*notification);
79 // notification to the just established connection
H A DMobiCoreDevice.cpp103 Connection *MobiCoreDevice::getSessionConnection(uint32_t sessionId, notification_t *notification) argument
115 ts->queueNotification(notification);
206 // Wait 10 seconds for notification
352 LOG_I(" Registering notification socket with Service session %d.",
638 notification_t notification
641 notifications.push(notification);
/hardware/samsung_slsi/exynos5/mobicore/common/MobiCore/inc/Mci/
H A Dmcinq.h7 * The buffer is set up as a queue, which means that more than one notification can be written to the buffer
47 * Minimum and maximum count of elements in the notification queue.
49 #define MIN_NQ_ELEM 1 /**< Minimum notification queue elements. */
50 #define MAX_NQ_ELEM 64 /**< Maximum notification queue elements. */
54 * Minimum and maximum notification queue length.
56 #define MIN_NQ_LEN (MIN_NQ_ELEM * sizeof(notification_t)) /**< Minimum notification length (in bytes). */
57 #define MAX_NQ_LEN (MAX_NQ_ELEM * sizeof(notification_t)) /**< Maximum notification length (in bytes). */
70 int32_t payload; /**< Additional notification information. */
74 * 0 indicated a plain simple notification,
87 /** Declaration of the notification queu
103 notification_t notification[MIN_NQ_ELEM]; /**< Notification elements. */ member in struct:__anon2824
[all...]
/hardware/samsung_slsi/exynos5/mobicore/daemon/ClientLib/
H A DClientLib.cpp61 int32_t payload; /**< Additional notification information. */
553 LOG_I(" Waiting for notification of session %d.", session->sessionId);
564 // Read notification queue till it's empty
566 notification_t notification; local
568 &notification,
584 // After first notification the queue will be drained, Thus we set
592 LOG_E("read notification failed, %i bytes received", (int)numRead);
595 // Read of the n-th notification failed/timeout. We don't tell the
603 LOG_I(" Received notification %d for session %d, payload=%d",
604 count, notification
[all...]
/hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/Platforms/Generic/
H A DTrustZoneDevice.cpp252 LOG_I(" Sending notification for session %d to MobiCore", sessionId);
254 LOG_I(" Sending MCP notification to MobiCore");
259 notification_t notification = { local
264 nq->putNotification(&notification);
578 notification_t *notification = nq->getNotification(); local
579 if (NULL == notification) {
583 // check if the notification belongs to the MCP session
584 if (notification->sessionId == SID_MCP) {
585 LOG_I(" Found MCP notification, payload=%d",
586 notification
[all...]
/hardware/qcom/gps/loc_api/libloc_api_50001/
H A Dloc_eng_agps.cpp58 Notification* notification = (Notification*)fromCaller; local
61 return s1->forMe(*notification);
71 Notification* notification = (Notification*)fromCaller; local
75 // each subscriber decides if this notification is interesting.
76 return s1->notifyRsrcStatus(*notification) &&
80 notification->postNotifyDelete;
94 bool Subscriber::forMe(Notification &notification) argument
96 if (NULL != notification.rcver) {
97 return equals(notification.rcver);
99 return Notification::BROADCAST_ALL == notification
115 notifyRsrcStatus(Notification &notification) argument
146 notifyRsrcStatus(Notification &notification) argument
185 notifyRsrcStatus(Notification &notification) argument
216 notifyRsrcStatus(Notification &notification) argument
[all...]
/hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
H A Dloc_eng_agps.cpp58 Notification* notification = (Notification*)fromCaller; local
61 return s1->forMe(*notification);
71 Notification* notification = (Notification*)fromCaller; local
75 // each subscriber decides if this notification is interesting.
76 return s1->notifyRsrcStatus(*notification) &&
80 notification->postNotifyDelete;
94 bool Subscriber::forMe(Notification &notification) argument
96 if (NULL != notification.rcver) {
97 return equals(notification.rcver);
99 return Notification::BROADCAST_ALL == notification
115 notifyRsrcStatus(Notification &notification) argument
146 notifyRsrcStatus(Notification &notification) argument
185 notifyRsrcStatus(Notification &notification) argument
216 notifyRsrcStatus(Notification &notification) argument
[all...]
/hardware/ti/omap3/omx/system/src/openmax_il/lcml/src/
H A DLCML_DspCodec.c188 * The memory is allocated and the dsp node is created. Add notification object
413 struct DSP_NOTIFICATION* notification; local
416 LCML_MALLOC(notification,sizeof(struct DSP_NOTIFICATION),struct DSP_NOTIFICATION)
417 if(notification == NULL)
422 memset(notification, 0, sizeof(struct DSP_NOTIFICATION));
424 status = DSPNode_RegisterNotify(phandle->dspCodec->hNode, DSP_NODEMESSAGEREADY, DSP_SIGNALEVENT, notification);
426 phandle->g_aNotificationObjects[0] = notification;
512 * The memory is allocated and the dsp node is created. Add notification object
722 struct DSP_NOTIFICATION* notification; local
725 LCML_MALLOC(notification,sizeo
[all...]

Completed in 334 milliseconds