Home | History | Annotate | Download | only in files

Lines Matching refs:updates

144       // potentially rendering other events in |updates| invalid.
163 // potentially rendering other events in |updates| invalid.
208 EventVector updates(valid);
209 int count = HANDLE_EINTR(kevent(kqueue_, &events_[0], valid, &updates[0],
211 if (!AreKeventValuesValid(&updates[0], count)) {
237 // them in |updates|. |count| will contain the number of updates that have
239 EventVector updates(events_.size());
241 int count = HANDLE_EINTR(kevent(kqueue_, NULL, 0, &updates[0], updates.size(),
244 // Error values are stored within updates, so check to make sure that no
246 if (!AreKeventValuesValid(&updates[0], count)) {
255 // Iterate through each of the updates and react to them.
261 event->ident == updates[i].ident) {
280 if ((updates[i].fflags & NOTE_ATTRIB) && !target_file_affected) {
283 if (updates[i].fflags & (NOTE_DELETE | NOTE_REVOKE | NOTE_RENAME)) {
286 if ((updates[i].fflags & NOTE_WRITE) && !target_file_affected) {