Home | History | Annotate | Download | only in files

Lines Matching refs:updates

146       // potentially rendering other events in |updates| invalid.
165 // potentially rendering other events in |updates| invalid.
210 EventVector updates(valid);
211 int count = HANDLE_EINTR(kevent(kqueue_, &events_[0], valid, &updates[0],
213 if (!AreKeventValuesValid(&updates[0], count)) {
239 // them in |updates|. |count| will contain the number of updates that have
241 EventVector updates(events_.size());
243 int count = HANDLE_EINTR(kevent(kqueue_, NULL, 0, &updates[0], updates.size(),
246 // Error values are stored within updates, so check to make sure that no
248 if (!AreKeventValuesValid(&updates[0], count)) {
257 // Iterate through each of the updates and react to them.
263 event->ident == updates[i].ident) {
282 if ((updates[i].fflags & NOTE_ATTRIB) && !target_file_affected) {
285 if (updates[i].fflags & (NOTE_DELETE | NOTE_REVOKE | NOTE_RENAME)) {
288 if ((updates[i].fflags & NOTE_WRITE) && !target_file_affected) {