Home | History | Annotate | Download | only in http

Lines Matching refs:operation

127 // The type of operation represented by a work item.
139 WorkItem(WorkItemOperation operation, Transaction* trans, ActiveEntry** entry)
140 : operation_(operation), trans_(trans), entry_(entry), callback_(NULL),
142 WorkItem(WorkItemOperation operation, Transaction* trans,
144 : operation_(operation), trans_(trans), entry_(NULL), callback_(cb),
148 // Calls back the transaction with the result of the operation.
157 // Notifies the caller about the operation completion. Returns true if the
169 WorkItemOperation operation() { return operation_; }
399 // The callback will delete the pending operation.
505 // This is the only operation that we can do that is not related to any given
696 PendingOp* operation = new PendingOp();
697 pending_ops_[key] = operation;
698 return operation;
842 // This is a successful operation in the sense that we want to keep the
1021 WorkItemOperation op = pending_op->writer->operation();
1070 if (item->operation() == WI_DOOM_ENTRY) {
1084 if (item->operation() == WI_CREATE_ENTRY) {
1111 WorkItemOperation op = item->operation();
1130 DCHECK_EQ(WI_CREATE_BACKEND, pending_item->operation());