Lines Matching refs:token
52 public int token; // Used for cancel
105 builder.append("OperationInfo [\n\t token= ");
106 builder.append(token);
149 return o.token == this.token && o.op == this.op;
190 op.token = info.token;
201 + " token:" + op.token);
212 * @param token The token representing the operation to be canceled. If
213 * multiple operations have the same token they will all be
216 static public int cancelOperation(int token) {
221 if (it.next().token == token) {
229 Log.d(TAG, "cancelOperation(" + token + ") -> " + canceled);
339 * passing the original token value back to the caller on top of the
342 Message reply = args.handler.obtainMessage(args.token);
347 Log.d(TAG, "onHandleIntent: op=" + Operation.opToChar(args.op) + ", token="