Searched defs:token (Results 1 - 25 of 66) sorted by relevance

123

/packages/apps/Mms/src/com/android/mms/transaction/
H A DMessageSender.java27 * @param token The token to identify the sending progress.
33 boolean sendMessage(long token) throws MmsException; argument
H A DProgressCallbackEntity.java40 public ProgressCallbackEntity(Context context, long token, byte[] b) { argument
45 mToken = token;
85 intent.putExtra("token", mToken);
H A DSmsSingleRecipientSender.java36 public boolean sendMessage(long token) throws MmsException { argument
38 Log.v(TAG, "sendMessage token: " + token);
H A DMmsMessageSender.java64 public boolean sendMessage(long token) throws MmsException { argument
92 SendingProgressTokenManager.put(ContentUris.parseId(mMessageUri), token);
H A DSmsMessageSender.java72 public boolean sendMessage(long token) throws MmsException { argument
75 return queueMessage(token);
78 private boolean queueMessage(long token) throws MmsException { argument
H A DHttpUtils.java84 * @param token The token to identify the sending progress.
94 protected static byte[] httpConnection(Context context, long token, argument
103 Log.v(TAG, "\ttoken\t\t= " + token);
129 context, token, pdu);
H A DTransaction.java145 * @param token The token to identify the sending progress.
153 protected byte[] sendPdu(long token, byte[] pdu) throws IOException, MmsException { argument
154 return sendPdu(token, pdu, mTransactionSettings.getMmscUrl());
160 * @param token The token to identify the sending progress.
169 protected byte[] sendPdu(long token, byte[] pdu, argument
177 mContext, token,
/packages/apps/Contacts/src/com/android/contacts/util/
H A DNotifyingAsyncQueryHandler.java40 void onQueryComplete(int token, Object cookie, Cursor cursor); argument
58 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
61 listener.onQueryComplete(token, cookie, cursor);
/packages/apps/Mms/src/com/android/mms/util/
H A DSendingProgressTokenManager.java37 Long token = TOKEN_POOL.get(key);
39 Log.v(TAG, "TokenManager.get(" + key + ") -> " + token);
41 return token != null ? token : NO_TOKEN;
44 synchronized public static void put(Object key, long token) { argument
46 Log.v(TAG, "TokenManager.put(" + key + ", " + token + ")");
48 TOKEN_POOL.put(key, token);
/packages/apps/Contacts/src/com/android/contacts/
H A DCallDetailActivityQueryHandler.java66 protected synchronized void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
68 if (token == QUERY_VOICEMAIL_CONTENT_TOKEN) {
78 } else if (token == QUERY_VOICEMAIL_STATUS_TOKEN) {
81 Log.w(TAG, "Unknown query completed: ignoring: " + token);
H A DSpecialCharSequenceMgr.java261 public SimContactQueryCookie(int number, QueryHandler handler, int token) { argument
264 mToken = token;
316 protected void onQueryComplete(int token, Object cookie, Cursor c) { argument
/packages/apps/Calendar/src/com/android/calendar/
H A DContactsAsyncHelper.java54 public void onImageLoadComplete(int token, Object cookie, ImageView iView, argument
104 " token: " + msg.what + " image URI: " + args.uri);
108 " token: " + msg.what + " image URI: " + args.uri +
H A DAsyncQueryService.java69 public int token; field in class:AsyncQueryService.Operation
103 builder.append(", token=");
104 builder.append(token);
117 * returns a practically unique token for db operations
138 * @param token The token representing the operation to be canceled. If
139 * multiple operations have the same token they will all be
142 public final int cancelOperation(int token) { argument
143 return AsyncQueryServiceHelper.cancelOperation(token);
150 * @param token
169 startQuery(int token, Object cookie, Uri uri, String[] projection, String selection, String[] selectionArgs, String orderBy) argument
201 startInsert(int token, Object cookie, Uri uri, ContentValues initialValues, long delayMillis) argument
237 startUpdate(int token, Object cookie, Uri uri, ContentValues values, String selection, String[] selectionArgs, long delayMillis) argument
274 startDelete(int token, Object cookie, Uri uri, String selection, String[] selectionArgs, long delayMillis) argument
305 startBatch(int token, Object cookie, String authority, ArrayList<ContentProviderOperation> cpo, long delayMillis) argument
329 onQueryComplete(int token, Object cookie, Cursor cursor) argument
344 onInsertComplete(int token, Object cookie, Uri uri) argument
359 onUpdateComplete(int token, Object cookie, int result) argument
374 onDeleteComplete(int token, Object cookie, int result) argument
391 onBatchComplete(int token, Object cookie, ContentProviderResult[] results) argument
[all...]
H A DAsyncQueryServiceHelper.java52 public int token; // Used for cancel field in class:AsyncQueryServiceHelper.OperationInfo
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 Th
216 cancelOperation(int token) argument
[all...]
H A DCalendarUtils.java93 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
/packages/apps/Contacts/src/com/android/contacts/activities/
H A DShowOrCreateActivity.java152 public void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
H A DInputMethodManagerCompatWrapper.java208 IBinder token, String id, InputMethodSubtypeCompatWrapper subtype) {
212 token, id, subtype.getOriginalObject());
214 mImm.setInputMethod(token, id);
218 public boolean switchToLastInputMethod(IBinder token) { argument
222 return (Boolean)CompatUtils.invoke(mImm, false, METHOD_switchToLastInputMethod, token);
296 final IBinder token = service.getWindow().getWindow().getAttributes().token;
308 setInputMethodAndSubtype(token, imi.getId(), null);
207 setInputMethodAndSubtype( IBinder token, String id, InputMethodSubtypeCompatWrapper subtype) argument
/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DAlertActivity.java124 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
140 protected void onInsertComplete(int token, Object cookie, Uri uri) { argument
156 protected void onUpdateComplete(int token, Object cookie, int result) { argument
/packages/apps/Camera/jni/feature_stab/src/dbregtest/
H A Ddbregtest.cpp320 string token; local
322 while (cmdline >> token)
326 int pos = token.find("-");
330 switch (token[1])
333 --c; cmdline >> token; local
334 if (token.compare("rt") == 0)
338 else if (token.compare("a") == 0)
342 else if (token.compare("p") == 0)
371 cerr << progname << "illegal option " << token << endl;
388 image_list_file_name = token;
[all...]
/packages/apps/Contacts/src/com/android/contacts/calllog/
H A DCallLogQueryHandler.java52 /** The token for the query to fetch the new entries from the call log. */
54 /** The token for the query to fetch the old entries from the call log. */
56 /** The token for the query to mark all missed calls as old after seeing the call log. */
58 /** The token for the query to mark all new voicemails as old. */
60 /** The token for the query to mark all missed calls as read after seeing the call log. */
63 /** The token for the query to fetch voicemail status messages. */
168 private void fetchCalls(int token, boolean isNew, boolean voicemailOnly) { argument
185 startQuery(token, null, Calls.CONTENT_URI_WITH_VOICEMAIL,
254 protected synchronized void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
255 if (token
[all...]
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/contenttype/parser/
H A DContentTypeParser.java117 public Token token, jj_nt; field in class:ContentTypeParser
135 token = new Token();
147 token = new Token();
156 token = new Token();
165 token = new Token();
173 token = new Token();
181 token = new Token();
189 if ((oldToken = token).next != null) token = token
[all...]
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/datetime/parser/
H A DDateTimeParser.java38 private static int parseDigits(Token token) { argument
39 return Integer.parseInt(token.image, 10);
198 {if (true) return token.image;}
411 public Token token, jj_nt; field in class:DateTimeParser
434 token = new Token();
446 token = new Token();
455 token = new Token();
464 token = new Token();
472 token = new Token();
480 token
[all...]
/packages/apps/Mms/src/com/android/mms/ui/
H A DManageSimMessages.java125 int token, Object cookie, Cursor cursor) {
124 onQueryComplete( int token, Object cookie, Cursor cursor) argument
/packages/apps/Phone/src/com/android/phone/
H A DADNList.java185 protected void onQueryComplete(int token, Object cookie, Cursor c) { argument
193 protected void onInsertComplete(int token, Object cookie, argument
200 protected void onUpdateComplete(int token, Object cookie, int result) { argument
206 protected void onDeleteComplete(int token, Object cookie, int result) { argument
H A DDeleteFdnContactScreen.java166 protected void onQueryComplete(int token, Object cookie, Cursor c) { argument
169 protected void onInsertComplete(int token, Object cookie, argument
173 protected void onUpdateComplete(int token, Object cookie, int result) { argument
176 protected void onDeleteComplete(int token, Object cookie, int result) { argument

Completed in 411 milliseconds

123