Home | History | Annotate | Download | only in cpp

Lines Matching refs:Record

154                         struct WorkerQueue::Record *r = wq->delayed_q_.top();
165 struct WorkerQueue::Record *r = wq->delayed_q_.top();
179 struct WorkerQueue::Record *r = wq->q_.front();
204 Record *r;
233 * Obtain a record from free_list if it is not empty, fill in the record with provided
236 struct WorkerQueue::Record *WorkerQueue::obtain_record(void *p, int delay_in_ms) {
237 struct Record *r;
239 r = new Record();
256 * release a record and insert into the front of the free_list
258 void WorkerQueue::release_record(struct Record *r) {
264 * Add a record to processing queue q_
269 struct Record *r = obtain_record(p, 0);
284 struct Record *r = obtain_record(p, delay_in_ms);
295 // q_ is empty and the new record is at delayed_q_.top