Lines Matching refs:e
13 #define _FOREACH_INOTIFY_EVENT(e, buffer, sz, log_level, start, end) \ argument
17 *e = start; \
18 (size_t) ((uint8_t*) end - (uint8_t*) e) >= sizeof(struct inotify_event) && \
19 ((size_t) ((uint8_t*) end - (uint8_t*) e) >= sizeof(struct inotify_event) + e->len || \
21 e = (struct inotify_event*) ((uint8_t*) e + sizeof(struct inotify_event) + e->len))
23 #define _FOREACH_INOTIFY_EVENT_FULL(e, buffer, sz, log_level) \ argument
24 _FOREACH_INOTIFY_EVENT(e, buffer, sz, log_level, UNIQ_T(start, UNIQ), UNIQ_T(end, UNIQ))
26 #define FOREACH_INOTIFY_EVENT(e, buffer, sz) \ argument
27 _FOREACH_INOTIFY_EVENT_FULL(e, buffer, sz, LOG_DEBUG)
29 #define FOREACH_INOTIFY_EVENT_WARN(e, buffer, sz) \ argument
30 _FOREACH_INOTIFY_EVENT_FULL(e, buffer, sz, LOG_WARNING)