Home | History | Annotate | Download | only in calendar

Lines Matching refs:Operation

19 import com.android.calendar.AsyncQueryService.Operation;
108 builder.append(Operation.opToChar(op));
142 * Compares an user-visible operation to this private OperationInfo
145 * @param o operation to be compared
148 public boolean equivalent(Operation o) {
154 * Queues the operation for execution
157 * @param args OperationInfo object describing the operation
172 * Gets the last delayed operation. It is typically used for canceling.
174 * @return Operation object which contains of the last cancelable operation
176 static public Operation getLastCancelableOperation() {
178 Operation op = null;
187 op = new Operation();
200 Log.d(TAG, "getLastCancelableOperation -> Operation:" + Operation.opToChar(op.op)
207 * Attempts to cancel operation that has not already started. Note that
208 * there is no guarantee that the operation will be canceled. They still may
212 * @param token The token representing the operation to be canceled. If
284 case Operation.EVENT_ARG_QUERY:
305 case Operation.EVENT_ARG_INSERT:
309 case Operation.EVENT_ARG_UPDATE:
314 case Operation.EVENT_ARG_DELETE:
318 case Operation.EVENT_ARG_BATCH:
340 Log.d(TAG, "onHandleIntent: op=" + Operation.opToChar(args.op) + ", token="