Home | History | Annotate | Download | only in common

Lines Matching defs:Requests

58 // WatcherBackend is responsible for managing the requests and interacting with
152 // to be ready. All requests are handled by WatcherBackend.
191 typedef std::vector<RequestData> Requests;
200 // Processes requests added to |requests_|. This is invoked on the backend
214 // |lock_|). When the background thread wakes up it processes the requests.
215 Requests requests_;
252 for (Requests::iterator i = requests_.begin(); i != requests_.end(); ++i) {
291 Requests requests;
294 requests_.swap(requests);
296 for (size_t i = 0; i < requests.size(); ++i) {
297 if (requests[i].type == REQUEST_START) {
298 backend_.StartWatching(requests[i].start_data);
300 backend_.StopWatching(requests[i].stop_id);
301 requests[i].stop_event->Signal();