Searched defs:mevent (Results 1 - 2 of 2) sorted by relevance
/dovecot/src/plugins/push-notification/ |
H A D | push-notification-txn-mbox.c | 44 struct push_notification_txn_event **mevent; local 47 array_foreach_modifiable(&mbox->eventdata, mevent) { 48 if (strcmp((*mevent)->event->event->name, event_name) == 0) { 49 return (*mevent)->data; 63 struct push_notification_txn_event *mevent; local 69 mevent = p_new(txn->pool, struct push_notification_txn_event, 1); 70 mevent->data = data; 71 mevent->event = event; 73 array_append(&mbox->eventdata, &mevent, 1); 80 struct push_notification_txn_event **mevent; local [all...] |
H A D | push-notification-txn-msg.c | 91 struct push_notification_txn_event **mevent; local 94 array_foreach_modifiable(&msg->eventdata, mevent) { 95 if (strcmp((*mevent)->event->event->name, event_name) == 0) { 96 return (*mevent)->data; 110 struct push_notification_txn_event *mevent; local 116 mevent = p_new(txn->pool, struct push_notification_txn_event, 1); 117 mevent->data = data; 118 mevent->event = event; 120 array_append(&msg->eventdata, &mevent, 1); 126 struct push_notification_txn_event **mevent; local [all...] |
Completed in 1011 milliseconds