Searched defs:status (Results 26 - 50 of 178) sorted by relevance

12345678

/packages/apps/Dialer/java/com/android/voicemail/impl/sync/
H A DVvmNetworkRequest.java75 OmtpVvmCarrierConfigHelper config, PhoneAccountHandle handle, VoicemailStatus.Editor status)
78 new FutureNetworkRequestCallback(config, handle, status);
100 VoicemailStatus.Editor status) {
101 super(config, phoneAccount, status);
74 getNetwork( OmtpVvmCarrierConfigHelper config, PhoneAccountHandle handle, VoicemailStatus.Editor status) argument
97 FutureNetworkRequestCallback( OmtpVvmCarrierConfigHelper config, PhoneAccountHandle phoneAccount, VoicemailStatus.Editor status) argument
H A DVvmNetworkRequestCallback.java61 Context context, PhoneAccountHandle phoneAccount, VoicemailStatus.Editor status) {
64 mStatus = status;
72 VoicemailStatus.Editor status) {
75 mStatus = status;
60 VvmNetworkRequestCallback( Context context, PhoneAccountHandle phoneAccount, VoicemailStatus.Editor status) argument
69 VvmNetworkRequestCallback( OmtpVvmCarrierConfigHelper config, PhoneAccountHandle phoneAccount, VoicemailStatus.Editor status) argument
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/
H A DBugleActionToasts.java43 * @param status the message sending status
51 final int status,
57 if (!success && status == MmsUtils.MMS_REQUEST_MANUAL_RETRY) {
48 onSendMessageOrManualDownloadActionCompleted( final String conversationId, final boolean success, final int status, final boolean isSms, final int subId, final boolean isSend) argument
/packages/apps/Nfc/nci/jni/
H A DNativeLlcpConnectionlessSocket.cpp79 tNFA_STATUS status = NFA_P2pSendUI((tNFA_HANDLE) handle, nsap, byte_count, raw_ptr); local
81 ALOGV("%s: NFA_P2pSendUI done, status = %d", __func__, status);
82 if (status != NFA_STATUS_OK)
84 ALOGE("%s: NFA_P2pSendUI failed, status = %d", __func__, status);
203 // Wait for sConnlessRecvSem completion status
270 tNFA_STATUS status = NFA_P2pDisconnect((tNFA_HANDLE) handle, FALSE); local
271 if (status != NFA_STATUS_OK)
273 ALOGE("%s: disconnect failed, status
[all...]
/packages/apps/PackageInstaller/src/com/android/packageinstaller/
H A DUninstallUninstalling.java127 public void onResult(int status, int legacyStatus, @Nullable String message) { argument
141 setResult(status == PackageInstaller.STATUS_SUCCESS ? Activity.RESULT_OK
146 if (status != PackageInstaller.STATUS_SUCCESS) {
/packages/services/Car/evs/app/
H A DEvsStateControl.cpp256 StatusCode status = StatusCode::TRY_AGAIN; local
260 [pRequestedPropValue, &status]
262 status = s;
269 return status;
/packages/services/Car/libvehiclemonitor/native/
H A DIVehicleMonitor.cpp51 status_t status = remote()->transact(SET_APP_PRIORITY, data, &reply); local
52 if (status == NO_ERROR) {
63 return status;
71 status_t status = remote()->transact(SET_MONITOR_LISTENER, data, &reply); local
72 return status;
/packages/services/Car/tests/obd2_app/src/com/google/android/car/obd2app/
H A DMainActivity.java91 public void notify(String status) { argument
92 Log.i(TAG, status);
93 runOnUiThread(() -> ((TextView) findViewById(R.id.statusBar)).setText(status));
/packages/services/Telecomm/src/com/android/server/telecom/
H A DBluetoothHeadsetProxy.java39 public void clccResponse(int index, int direction, int status, int mode, boolean mpty, argument
42 mBluetoothHeadset.clccResponse(index, direction, status, mode, mpty, number, type);
/packages/apps/Bluetooth/jni/
H A Dcom_android_bluetooth_a2dp_sink.cpp140 bt_status_t status = sBluetoothA2dpInterface->init(&sBluetoothA2dpCallbacks); local
141 if (status != BT_STATUS_SUCCESS) {
142 ALOGE("Failed to initialize Bluetooth A2DP Sink, status: %d", status);
180 bt_status_t status = sBluetoothA2dpInterface->connect((RawAddress*)addr); local
181 if (status != BT_STATUS_SUCCESS) {
182 ALOGE("Failed HF connection, status: %d", status);
185 return (status == BT_STATUS_SUCCESS) ? JNI_TRUE : JNI_FALSE;
198 bt_status_t status local
[all...]
H A Dcom_android_bluetooth_hdp.cpp114 bt_status_t status = sBluetoothHdpInterface->init(&sBluetoothHdpCallbacks); local
115 if (status != BT_STATUS_SUCCESS) {
116 ALOGE("Failed to initialize Bluetooth HDP, status: %d", status);
171 bt_status_t status = local
173 if (status != BT_STATUS_SUCCESS) {
174 ALOGE("Failed register health app, status: %d", status);
187 bt_status_t status = sBluetoothHdpInterface->unregister_application(app_id);
188 if (status !
205 bt_status_t status = sBluetoothHdpInterface->connect_channel( local
[all...]
H A Dcom_android_bluetooth_pan.cpp145 bt_status_t status = sPanIf->init(&sBluetoothPanCallbacks); local
146 if (status != BT_STATUS_SUCCESS) {
147 error("Failed to initialize Bluetooth PAN, status: %d", status);
176 bt_status_t status = BT_STATUS_FAIL; local
178 if (sPanIf) status = sPanIf->enable(local_role);
180 return status == BT_STATUS_SUCCESS ? JNI_TRUE : JNI_FALSE;
203 bt_status_t status = sPanIf->connect((RawAddress*)addr, src_role, dest_role); local
204 if (status != BT_STATUS_SUCCESS) {
205 error("Failed PAN channel connection, status
224 bt_status_t status = sPanIf->disconnect((RawAddress*)addr); local
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
H A DJniCallbacks.java65 void bondStateChangeCallback(int status, byte[] address, int newState) { argument
66 mBondStateMachine.bondStateChangeCallback(status, address, newState);
69 void aclStateChangeCallback(int status, byte[] address, int newState) { argument
70 mRemoteDevices.aclStateChangeCallback(status, address, newState);
73 void stateChangeCallback(int status) { argument
74 mAdapterStateMachine.stateChangeCallback(status);
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppShareInfo.java72 int direction, String destination, int visibility, int confirm, int status,
83 mStatus = status;
92 * For outbound 1. status is pending.
93 * For inbound share 1. status is pending
71 BluetoothOppShareInfo(int id, Uri uri, String hint, String filename, String mimetype, int direction, String destination, int visibility, int confirm, int status, long totalBytes, long currentBytes, long timestamp, boolean mediaScanned) argument
/packages/apps/Camera2/src/com/android/camera/app/
H A DLegacyLocationProvider.java164 String provider, int status, Bundle extras) {
165 switch(status) {
163 onStatusChanged( String provider, int status, Bundle extras) argument
/packages/apps/Dialer/java/com/android/dialer/app/voicemail/
H A DVoicemailErrorManager.java44 * Fetches voicemail status and generate {@link VoicemailStatus} for {@link VoicemailErrorAlert} to
88 VoicemailStatus status = new VoicemailStatus(context, statusCursor);
89 if (status.isActive()) {
90 statuses.add(status);
91 addServiceStateListener(status);
100 private void addServiceStateListener(VoicemailStatus status) { argument
106 if (!status.sourcePackage.equals(context.getPackageName())) {
113 .createForPhoneAccountHandle(status.getPhoneAccountHandle());
118 PhoneAccountHandle phoneAccountHandle = status.getPhoneAccountHandle();
171 * Fetch the status whe
[all...]
/packages/apps/Dialer/java/com/android/dialer/app/voicemail/error/
H A DOmtpVoicemailMessageCreator.java36 * default behavior if other message creator does not handle the status.
49 Context context, VoicemailStatus status, final VoicemailStatusReader statusReader) {
51 new VoicemailTosMessageCreator(context, status, statusReader).maybeCreateTosMessage();
56 if (Status.CONFIGURATION_STATE_OK == status.configurationState
57 && Status.DATA_CHANNEL_STATE_OK == status.dataChannelState
58 && Status.NOTIFICATION_CHANNEL_STATE_OK == status.notificationChannelState) {
59 return checkQuota(context, status, statusReader);
63 if (Status.CONFIGURATION_STATE_CONFIGURING == status.configurationState
64 && Status.DATA_CHANNEL_STATE_OK == status.dataChannelState
65 && Status.NOTIFICATION_CHANNEL_STATE_OK == status
48 create( Context context, VoicemailStatus status, final VoicemailStatusReader statusReader) argument
140 checkQuota( Context context, VoicemailStatus status, VoicemailStatusReader statusReader) argument
151 createInboxErrorMessage( Context context, VoicemailStatus status, VoicemailStatusReader statusReader) argument
237 createVMQuotaPromo( Context context, PhoneAccountHandle phoneAccountHandle, VoicemailStatus status, VoicemailStatusReader statusReader, VoicemailClient voicemailClient, PerAccountSharedPreferences sharedPreferenceForAccount, String title, CharSequence message, DialerImpression.Type impressionToLogOnEnable, DialerImpression.Type impressionToLogOnDismiss, String preferenceKeyToUpdate) argument
268 createNoSignalMessage( Context context, VoicemailStatus status) argument
[all...]
H A DVoicemailTosMessageCreator.java62 private final VoicemailStatus status; field in class:VoicemailTosMessageCreator
68 final VoicemailStatus status,
71 this.status = status;
100 ComponentName.unflattenFromString(status.phoneAccountComponentName),
101 status.phoneAccountId);
142 if (isVvm3() && Vvm3VoicemailMessageCreator.PIN_NOT_SET == status.configurationState) {
150 "showing decline ToS dialog, status=" + status);
162 voicemailClient.setVoicemailEnabled(context, status
66 VoicemailTosMessageCreator( final Context context, final VoicemailStatus status, final VoicemailStatusReader statusReader) argument
[all...]
/packages/apps/Dialer/java/com/android/incallui/videotech/ims/
H A DImsVideoCallCallback.java77 * @param status Status of the session modify request. Valid values are {@link
85 int status, VideoProfile requestedProfile, VideoProfile responseProfile) {
88 "status: %d, requestedProfile: %s, responseProfile: %s, session modification state: %d",
89 status,
98 final int newSessionModificationState = getSessionModificationStateFromTelecomStatus(status);
99 if (status == VideoProvider.SESSION_MODIFY_REQUEST_SUCCESS) {
130 videoTech.setSessionModificationState(getSessionModificationStateFromTelecomStatus(status));
158 "unknown status: %d",
84 onSessionModifyResponseReceived( int status, VideoProfile requestedProfile, VideoProfile responseProfile) argument
/packages/apps/Dialer/java/com/android/voicemail/impl/fetch/
H A DFetchVoicemailReceiver.java199 private void fetchVoicemail(final Network network, final VoicemailStatus.Editor status) { argument
209 new ImapHelper(mContext, mPhoneAccount, network, status)) {
/packages/apps/Dialer/java/com/android/voicemail/impl/protocol/
H A DVisualVoicemailProtocol.java92 VoicemailStatus.Editor status,
94 DefaultOmtpEventHandler.handleEvent(context, config, status, event);
89 handleEvent( Context context, OmtpVvmCarrierConfigHelper config, VoicemailStatus.Editor status, OmtpEvents event) argument
/packages/apps/Dialer/java/com/android/voicemail/impl/transcribe/
H A DTranscriptionTask.java110 if (responseWrapper.status != null) {
111 VvmLog.i(TAG, "transcribeVoicemail, status: " + responseWrapper.status.getCode());
112 if (shouldRetryRequest(responseWrapper.status)) {
144 private static boolean shouldRetryRequest(Status status) { argument
145 return status.getCode() == Status.Code.UNAVAILABLE;
/packages/apps/DocumentsUI/src/com/android/documentsui/prefs/
H A DLocalPreferences.java97 @Nullable String uuid, String directory, @PermissionStatus int status) {
99 getPrefs(context).edit().putInt(key, status).apply();
96 setScopedAccessPermissionStatus(Context context, String packageName, @Nullable String uuid, String directory, @PermissionStatus int status) argument
/packages/apps/DocumentsUI/src/com/android/documentsui/services/
H A DFileOperations.java137 * @param status {@link Status} of this operation.
141 void onOperationResult(@Status int status, @OpType int opType, int docCount); argument
/packages/apps/DocumentsUI/src/com/android/documentsui/ui/
H A DDialogController.java44 void showFileOperationStatus(int status, int opType, int docCount); argument
111 public void showFileOperationStatus(@Status int status, @OpType int opType, argument
113 if (status == FileOperations.Callback.STATUS_REJECTED) {
117 if (status == FileOperations.Callback.STATUS_FAILED) {

Completed in 708 milliseconds

12345678