Home | History | Annotate | Download | only in calendar

Lines Matching refs:request

147             // Check if we are still the most recent request.
185 // Wait for the next request
186 LoadRequest request = mQueue.take();
189 // skip all but the most recent request.
191 // Let the request know that it was skipped
192 request.skipRequest(mEventLoader);
194 // Skip to the next request
195 request = mQueue.take();
198 if (request instanceof ShutdownRequest) {
201 request.processRequest(mEventLoader);
247 // Send the load request to the background thread
248 LoadEventsRequest request = new LoadEventsRequest(id, startDay, numDays,
252 mLoaderQueue.put(request);
262 * Sends a request for the days with events to be marked. Loads "numDays"
274 // Send load request to the background thread
275 LoadEventDaysRequest request = new LoadEventDaysRequest(startDay, numDays,
278 mLoaderQueue.put(request);