Home | History | Annotate | Download | only in linux

Lines Matching defs:cur_ie

67 	struct linux_inotify_event *cur_ie;
88 cur_ie = (struct linux_inotify_event *)cur_buf;
90 REQUIRE(cur_ie->wd == wd);
91 REQUIRE(cur_ie->mask == target_events[i].mask);
94 REQUIRE(cur_ie->cookie != 0);
96 REQUIRE(cur_ie->cookie == 0);
99 REQUIRE(cur_ie->len > strlen(target_events[i].name));
100 REQUIRE(strcmp(cur_ie->name, target_events[i].name) == 0);
102 REQUIRE(cur_ie->len == 0);
104 cur_buf += sizeof(struct linux_inotify_event) + cur_ie->len;