Home | History | Annotate | Download | only in files

Lines Matching refs:updates

250       // potentially rendering other events in |updates| invalid.
269 // potentially rendering other events in |updates| invalid.
315 EventVector updates(valid);
316 int count = HANDLE_EINTR(kevent(kqueue_, &events_[0], valid, &updates[0],
318 if (!AreKeventValuesValid(&updates[0], count)) {
344 // them in |updates|. |count| will contain the number of updates that have
346 EventVector updates(events_.size());
348 int count = HANDLE_EINTR(kevent(kqueue_, NULL, 0, &updates[0], updates.size(),
351 // Error values are stored within updates, so check to make sure that no
353 if (!AreKeventValuesValid(&updates[0], count)) {
362 // Iterate through each of the updates and react to them.
368 event->ident == updates[i].ident) {
387 if ((updates[i].fflags & NOTE_ATTRIB) && !target_file_affected) {
390 if (updates[i].fflags & (NOTE_DELETE | NOTE_REVOKE | NOTE_RENAME)) {
393 if ((updates[i].fflags & NOTE_WRITE) && !target_file_affected) {