Searched defs:reason (Results 76 - 100 of 131) sorted by relevance

123456

/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecLocalDevice.java181 protected abstract void onAddressAllocated(int logicalAddress, int reason); argument
598 final void handleAddressAllocated(int logicalAddress, int reason) { argument
601 onAddressAllocated(logicalAddress, reason);
H A DHdmiCecLocalDeviceTv.java197 protected void onAddressAllocated(int logicalAddress, int reason) { argument
206 mSkipRoutingControl = (reason == HdmiControlService.INITIATED_BY_WAKE_UP_MESSAGE);
207 launchRoutingControl(reason != HdmiControlService.INITIATED_BY_ENABLE_CEC &&
208 reason != HdmiControlService.INITIATED_BY_BOOT_UP);
1151 int reason = startOneTouchRecord(recorderAddress, recordSource);
1152 if (reason != Constants.ABORT_NO_ERROR) {
1153 mService.maySendFeatureAbortCommand(message, reason);
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiScanner.java92 public void onFailure(int reason, String description); argument
718 public int reason; field in class:WifiScanner.OperationResult
721 public OperationResult(int reason, String description) { argument
722 this.reason = reason;
733 dest.writeInt(reason);
741 int reason = in.readInt();
743 return new OperationResult(reason, description);
797 ((ActionListener) listener).onFailure(result.reason, result.description);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiScanningServiceImpl.java115 if (DBG) Slog.d(TAG, "Client connection lost with reason: " + msg.arg1);
724 void replyFailed(Message msg, int reason, String description) { argument
729 reply.obj = new WifiScanner.OperationResult(reason, description);
H A DWifiMonitor.java90 /* Format: WPS-FAIL msg=%d [config_error=%d] [reason=%d (%s)] */
93 "WPS-FAIL msg=\\d+(?: config_error=(\\d+))?(?: reason=(\\d+))?";
99 /* reason code values for reason=%d */
230 * CTRL-EVENT-DISCONNECTED - bssid=ac:22:0b:24:70:74 reason=3 locally_generated=1
234 "reason=([0-9]+) +locally_generated=([0-1])");
319 /* P2P-GROUP-REMOVED p2p-wlan0-0 [client|GO] reason=REQUESTED */
993 int reason = 0;
1010 reason = reasonInt;
1026 if (reason
1337 notifyNetworkStateChange(NetworkInfo.DetailedState newState, String BSSID, int netId, int reason) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccCardProxy.java461 private void broadcastIccStateChangedIntent(String value, String reason) { argument
472 + " value=" + value + " reason=" + reason);
484 intent.putExtra(IccCardConstants.INTENT_KEY_LOCKED_REASON, reason);
487 + " reason=" + reason + " for mPhoneId=" + mPhoneId);
493 private void broadcastInternalIccStateChangedIntent(String value, String reason) { argument
505 intent.putExtra(IccCardConstants.INTENT_KEY_LOCKED_REASON, reason);
601 * Locked state have a reason (PIN, PUK, NETWORK, PERM_DISABLED, CARD_IO_ERROR)
602 * @return reason
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayer.cpp890 int32_t reason; local
891 CHECK(msg->findInt32("reason", &reason));
903 if (reason == Renderer::kDueToError) {
/frameworks/base/media/java/android/media/tv/
H A DTvInputManager.java57 * A generic reason. Video is not available due to an unspecified error.
275 * @param reason The reason why the TV input stopped the playback:
283 public void onVideoUnavailable(Session session, int reason) { argument
408 void postVideoUnavailable(final int reason) { argument
412 mSessionCallback.onVideoUnavailable(mSession, reason);
663 public void onVideoUnavailable(int reason, int seq) {
670 record.postVideoUnavailable(reason);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DRemotePrintDocument.java307 public void kill(String reason) { argument
313 mPrintDocumentAdapter.kill(reason);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DBaseStatusBar.java1081 static void sendCloseSystemWindows(Context context, String reason) { argument
1084 ActivityManagerNative.getDefault().closeSystemDialogs(reason);
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityRecord.java342 @Override public boolean keyDispatchingTimedOut(String reason) { argument
344 return activity != null && activity.keyDispatchingTimedOut(reason);
1005 public boolean keyDispatchingTimedOut(String reason) { argument
1012 return service.inputDispatchingTimedOut(anrApp, r, this, false, reason);
H A DActivityStack.java249 ScheduleDestroyArgs(ProcessRecord owner, String reason) { argument
251 mReason = reason;
476 final void moveToFront(String reason) { argument
479 mStackSupervisor.moveHomeStack(isHomeStack(), reason);
2468 private void adjustFocusedActivityLocked(ActivityRecord r, String reason) { argument
2475 reason + " adjustFocus");
2480 mService.setFocusedActivityLocked(top, reason + " adjustTopFocus");
2540 * some reason it is being left as-is.
2543 Intent resultData, String reason, boolean oomAdj) {
2548 + ", reason
2542 requestFinishActivityLocked(IBinder token, int resultCode, Intent resultData, String reason, boolean oomAdj) argument
2681 finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData, String reason, boolean oomAdj) argument
3011 removeActivityFromHistoryLocked(ActivityRecord r, String reason) argument
3059 scheduleDestroyActivities(ProcessRecord owner, String reason) argument
3065 destroyActivitiesLocked(ProcessRecord owner, String reason) argument
3099 safelyDestroyActivityLocked(ActivityRecord r, String reason) argument
3109 releaseSomeActivitiesLocked(ProcessRecord app, ArraySet<TaskRecord> tasks, String reason) argument
3159 destroyActivityLocked(ActivityRecord r, boolean removeFromApp, String reason) argument
3252 activityDestroyedLocked(IBinder token, String reason) argument
3469 moveTaskToFrontLocked(TaskRecord tr, ActivityRecord source, Bundle options, String reason) argument
4035 removeTask(TaskRecord task, String reason) argument
[all...]
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncManager.java381 public void onSyncRequest(SyncStorageEngine.EndPoint info, int reason, Bundle extras) {
383 scheduleSync(info.account, info.userId, reason, info.provider, extras,
388 scheduleSync(info.service, info.userId, reason, extras,
633 * @param reason for sync request. If this is a positive integer, it is the Linux uid
652 public void scheduleSync(Account requestedAccount, int userId, int reason, argument
782 new SyncOperation(account.account, account.userId, reason, source,
798 new SyncOperation(account.account, account.userId, reason, source,
810 public void scheduleLocalSync(Account account, int userId, int reason, String authority) { argument
813 scheduleSync(account, userId, reason, authority, extras,
1731 SyncOperation.reasonToString(pm, item.reason));
[all...]
H A DSyncStorageEngine.java163 final int reason; field in class:SyncStorageEngine.PendingOperation
173 PendingOperation(AuthorityInfo authority, int reason, int source, argument
177 this.reason = reason;
184 this.reason = other.reason;
385 int reason; field in class:SyncStorageEngine.SyncHistoryItem
403 public void onSyncRequest(EndPoint info, int reason, Bundle extras); argument
1085 pop = new PendingOperation(authority, op.reason, op.syncSource, op.extras,
1294 item.reason
2680 requestSync(AuthorityInfo authorityInfo, int reason, Bundle extras) argument
2701 requestSync(Account account, int userId, int reason, String authority, Bundle extras) argument
[all...]
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaRouterService.java924 private void updateConnectionTimeout(int reason) { argument
925 if (reason != mConnectionTimeoutReason) {
929 mConnectionTimeoutReason = reason;
931 switch (reason) {
953 Log.wtf(TAG, "Handled connection timeout for no reason.");
/frameworks/base/services/core/java/com/android/server/tv/
H A DTvInputManagerService.java2062 public void onVideoUnavailable(int reason) { argument
2065 Slog.d(TAG, "onVideoUnavailable(" + reason + ")");
2071 mSessionState.client.onVideoUnavailable(reason, mSessionState.seq);
2152 // 2. The session is released for some reason.
/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp214 const String8& reason);
576 const sp<InputWindowHandle>& inputWindowHandle, const String8& reason) {
587 jstring reasonObj = env->NewStringUTF(reason.string());
575 notifyANR(const sp<InputApplicationHandle>& inputApplicationHandle, const sp<InputWindowHandle>& inputWindowHandle, const String8& reason) argument
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pManager.java59 * Upon failure, the reason of failure can be one of {@link #ERROR}, {@link #P2P_UNSUPPORTED}
526 * @param reason The reason for failure could be one of {@link #P2P_UNSUPPORTED},
529 public void onFailure(int reason); argument
/frameworks/native/services/inputflinger/
H A DInputDispatcher.h206 const String8& reason) = 0;
598 String8 reason; member in struct:android::InputDispatcher::CommandEntry
678 // Descriptive reason for the cancelation.
679 const char* reason; member in struct:android::InputDispatcher::CancelationOptions
687 CancelationOptions(Mode mode, const char* reason) : argument
688 mode(mode), reason(reason), keyCode(-1), deviceId(-1) { }
1020 nsecs_t* nextWakeupTime, const char* reason);
1078 void resetAndDropEverythingLocked(const char* reason);
1100 nsecs_t eventTime, nsecs_t waitStartTime, const char* reason);
[all...]
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsCall.java88 * @param reasonInfo detailed reason of the call setup failure
99 * @param reasonInfo detailed reason of the call termination
102 // Store the call termination reason
122 * @param reasonInfo detailed reason of the call hold failure
153 * @param reasonInfo detailed reason of the call resume failure
186 * @param reasonInfo detailed reason of the call merge failure
207 * @param reasonInfo detailed reason of the call update failure
238 * @param reasonInfo detailed reason of the conference extension failure
269 * @param reasonInfo detailed reason of the conference invitation failure
290 * @param reasonInfo detailed reason o
966 reject(int reason) argument
997 terminate(int reason) argument
1872 notifyError(int reason, int statusCode, String message) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataConnection.java158 DisconnectParams(ApnContext apnContext, String reason, Message onCompletedMsg) { argument
160 mReason = reason;
595 private void notifyAllWithEvent(ApnContext alreadySent, int event, String reason) { argument
596 mNetworkInfo.setDetailedState(mNetworkInfo.getDetailedState(), reason,
600 if (reason != null) apnContext.setReason(reason);
607 private void notifyAllOfConnected(String reason) { argument
608 notifyAllWithEvent(null, DctConstants.EVENT_DATA_SETUP_COMPLETE, reason);
611 private void notifyAllOfDisconnectDcRetrying(String reason) { argument
612 notifyAllWithEvent(null, DctConstants.EVENT_DISCONNECT_DC_RETRYING, reason);
[all...]
H A DDcTracker.java749 String reason = "";
751 reason += " - Attached= " + attachedState;
753 if (!recordsLoaded) reason += " - SIM not loaded";
756 reason += " - PhoneState= " + state;
757 reason += " - Concurrent voice and data not allowed";
759 if (!internalDataEnabled) reason += " - mInternalDataEnabled= false";
760 if (!defaultDataSelected) reason += " - defaultDataSelected= false";
762 reason += " - Roaming and data roaming not enabled";
764 if (mIsPsRestricted) reason += " - mIsPsRestricted= true";
765 if (!desiredPowerState) reason
781 setupDataOnConnectableApns(String reason) argument
785 setupDataOnConnectableApns(String reason, RetryFailures retryFailures) argument
897 notifyOffApnsOfAvailability(String reason) argument
924 cleanUpAllConnections(boolean tearDown, String reason) argument
1388 gotoIdleAndNotifyDataConnection(String reason) argument
1707 onTrySetupData(String reason) argument
2198 onCleanUpConnection(boolean tearDown, int apnId, String reason) argument
2232 notifyDataConnection(String reason) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhone.java140 // mIsCfu (true if reason is call forward unconditional)
602 private int getConditionFromCFReason(int reason) { argument
603 switch(reason) {
648 if (DBG) Rlog.d(LOG_TAG, "getCallForwardingOption reason=" + commandInterfaceCFReason);
672 + ", reason=" + commandInterfaceCFReason);
978 cfInfo.reason = getCFReasonFromCondition(info.mCondition);
H A DImsPhoneCommandInterface.java264 public void deactivateDataCall(int cid, int reason, Message result) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java265 public void deactivateDataCall(int cid, int reason, Message result) { argument

Completed in 571 milliseconds

123456