Searched defs:reason (Results 1 - 16 of 16) sorted by relevance

/packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
H A DTokenMgrError.java46 * Indicates the reason why the exception is thrown. It will have
140 public TokenMgrError(String message, int reason) { argument
142 errorCode = reason;
145 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) { argument
146 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
/packages/apps/Email/src/org/apache/james/mime4j/field/contenttype/parser/
H A DTokenMgrError.java46 * Indicates the reason why the exception is thrown. It will have
140 public TokenMgrError(String message, int reason) { argument
142 errorCode = reason;
145 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) { argument
146 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
/packages/apps/Email/src/org/apache/james/mime4j/field/datetime/parser/
H A DTokenMgrError.java46 * Indicates the reason why the exception is thrown. It will have
140 public TokenMgrError(String message, int reason) { argument
142 errorCode = reason;
145 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) { argument
146 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
/packages/apps/Phone/src/com/android/phone/
H A DCallForwardEditPreference.java38 int reason; field in class:CallForwardEditPreference
53 reason = a.getInt(R.styleable.CallForwardEditPreference_reason,
57 if (DBG) Log.d(LOG_TAG, "mServiceClass=" + mServiceClass + ", reason=" + reason);
67 phone.getCallForwardingOption(reason,
103 int time = (reason != CommandsInterface.CF_REASON_NO_REPLY) ? 0 : 20;
116 if (DBG) Log.d(LOG_TAG, "reason=" + reason + ", action=" + action
124 // should be action, reason...
126 reason,
[all...]
H A DCallFeaturesSetting.java315 fi.reason = FORWARDING_SETTINGS_REASONS[i];
316 fi.status = (fi.reason == CommandsInterface.CF_REASON_UNCONDITIONAL) ? 0 : 1;
354 i1.reason != i2.reason ||
699 AsyncResult result = results.get(fi.reason);
701 mExpectedChangeResultReasons.add(fi.reason);
706 fi.reason,
975 // In case we go nothing it means we need this reason disabled
980 fi.reason = FORWARDING_SETTINGS_REASONS[idx];
1015 private CallForwardInfo infoForReason(CallForwardInfo[] infos, int reason) { argument
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
H A DBondStateMachine.java173 int reason = getUnbondReasonFromHALCode(msg.arg2);
174 sendIntent(dev, newState, reason);
253 private void sendIntent(BluetoothDevice device, int newState, int reason) { argument
267 intent.putExtra(BluetoothDevice.EXTRA_REASON, reason);
343 private int getUnbondReasonFromHALCode (int reason) { argument
344 if (reason == AbstractionLayer.BT_STATUS_SUCCESS)
346 else if (reason == AbstractionLayer.BT_STATUS_RMT_DEV_DOWN)
348 else if (reason == AbstractionLayer.BT_STATUS_AUTH_FAILURE)
/packages/apps/Contacts/src/com/android/contacts/vcard/
H A DNotificationImportExportListener.java272 * @param reason The reason why the import has failed. Shown in description field.
275 Context context, String reason) {
280 .setContentText(reason)
274 constructImportFailureNotification( Context context, String reason) argument
/packages/apps/Email/src/com/android/email/
H A DGroupMessagingListener.java150 Exception reason) {
152 l.sendPendingMessagesFailed(accountId, messageId, reason);
149 sendPendingMessagesFailed(long accountId, long messageId, Exception reason) argument
H A DMessagingListener.java87 public void sendPendingMessagesFailed(long accountId, long messageId, Exception reason) { argument
H A DController.java1564 Exception reason) {
1566 if (reason instanceof MessagingException) {
1567 me = (MessagingException) reason;
1569 me = new MessagingException(reason.toString());
1563 sendPendingMessagesFailed(long accountId, long messageId, Exception reason) argument
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DBluetoothEventManager.java291 int reason = intent.getIntExtra(BluetoothDevice.EXTRA_REASON,
294 showUnbondMessage(context, cachedDevice.getName(), reason);
301 * @param reason one of the error reasons from
304 private void showUnbondMessage(Context context, String name, int reason) { argument
307 switch(reason) {
324 Log.w(TAG, "showUnbondMessage: Not displaying any message for reason: " + reason);
/packages/apps/Exchange/exchange2/src/com/android/exchange/
H A DAbstractSyncService.java152 String reason = null; field in class:AbstractSyncService.ValidationResult
158 reason = _reason;
176 return reason;
H A DExchangeService.java232 // The reason for ExchangeService's next wakeup call
1107 int reason; field in class:ExchangeService.SyncError
1113 reason = _reason;
1139 log("Mailbox " + m.mDisplayName + ", error = " + error.reason
1163 * Release a specific type of hold (the reason) for the specified Account; if the account
1165 * @param reason the reason for the SyncError (AbstractSyncService.EXIT_XXX)
1169 /*package*/ boolean releaseSyncHolds(Context context, int reason, Account account) { argument
1170 boolean holdWasReleased = releaseSyncHoldsImpl(context, reason, account);
1175 private boolean releaseSyncHoldsImpl(Context context, int reason, Accoun argument
1684 requestSync(Mailbox m, int reason, Request req) argument
2385 serviceRequest(long mailboxId, int reason) argument
2398 serviceRequest(long mailboxId, long ms, int reason) argument
2490 startManualSync(long mailboxId, int reason, Request req) argument
2529 kick(String reason) argument
[all...]
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
H A DParser.java140 EasParserException(String reason) { argument
141 super(reason);
H A DCalendarSyncAdapter.java745 private void logEventColumns(ContentValues cv, String reason) { argument
748 new StringBuilder("Event invalid, " + reason + ", skipping: Columns = ");
/packages/apps/Settings/src/com/android/settings/
H A DAccessibilitySettings.java648 public void onPackageAppeared(String packageName, int reason) { argument
654 public void onPackageDisappeared(String packageName, int reason) { argument

Completed in 1098 milliseconds