Searched refs:status (Results 26 - 50 of 328) sorted by relevance

1234567891011>>

/packages/apps/Bluetooth/jni/
H A Dcom_android_bluetooth_hid.cpp226 bt_status_t status = sBluetoothHidInterface->init(&sBluetoothHidCallbacks); local
227 if (status != BT_STATUS_SUCCESS) {
228 ALOGE("Failed to initialize Bluetooth HID, status: %d", status);
268 bt_status_t status = sBluetoothHidInterface->connect((RawAddress*)addr); local
269 if (status != BT_STATUS_SUCCESS) {
270 ALOGE("Failed HID channel connection, status: %d", status);
290 bt_status_t status = sBluetoothHidInterface->disconnect((RawAddress*)addr); local
291 if (status !
313 bt_status_t status = sBluetoothHidInterface->get_protocol( local
335 bt_status_t status = local
371 bt_status_t status = local
398 bt_status_t status = sBluetoothHidInterface->get_report( local
424 bt_status_t status = sBluetoothHidInterface->set_report( local
450 bt_status_t status = local
472 bt_status_t status = sBluetoothHidInterface->get_idle_time((RawAddress*)addr); local
491 bt_status_t status = local
[all...]
H A Dcom_android_bluetooth_hfp.cpp436 bt_status_t status = sBluetoothHfpInterface->init( local
438 if (status != BT_STATUS_SUCCESS) {
439 ALOGE("Failed to initialize Bluetooth HFP, status: %d", status);
482 bt_status_t status = sBluetoothHfpInterface->connect((RawAddress*)addr); local
483 if (status != BT_STATUS_SUCCESS) {
484 ALOGE("Failed HF connection, status: %d", status);
487 return (status == BT_STATUS_SUCCESS) ? JNI_TRUE : JNI_FALSE;
501 bt_status_t status local
520 bt_status_t status = sBluetoothHfpInterface->connect_audio((RawAddress*)addr); local
539 bt_status_t status = local
559 bt_status_t status = local
579 bt_status_t status = local
599 bt_status_t status = sBluetoothHfpInterface->volume_control( local
636 bt_status_t status = local
661 bt_status_t status = sBluetoothHfpInterface->cind_response( local
684 bt_status_t status = sBluetoothHfpInterface->bind_response( local
710 bt_status_t status = sBluetoothHfpInterface->formatted_at_response( local
732 bt_status_t status = sBluetoothHfpInterface->at_response( local
757 bt_status_t status = sBluetoothHfpInterface->clcc_response( local
779 bt_status_t status = sBluetoothHfpInterface->phone_state_change( local
800 bt_status_t status = sBluetoothHfpInterface->configure_wbs( local
[all...]
H A Dcom_android_bluetooth_hfpclient.cpp407 bt_status_t status = local
409 if (status != BT_STATUS_SUCCESS) {
410 ALOGE("Failed to initialize Bluetooth HFP Client, status: %d", status);
447 bt_status_t status = sBluetoothHfpClientInterface->connect((RawAddress*)addr); local
448 if (status != BT_STATUS_SUCCESS) {
449 ALOGE("Failed AG connection, status: %d", status);
452 return (status == BT_STATUS_SUCCESS) ? JNI_TRUE : JNI_FALSE;
465 bt_status_t status local
484 bt_status_t status = local
503 bt_status_t status = local
522 bt_status_t status = sBluetoothHfpClientInterface->start_voice_recognition( local
541 bt_status_t status = sBluetoothHfpClientInterface->stop_voice_recognition( local
560 bt_status_t status = sBluetoothHfpClientInterface->volume_control( local
584 bt_status_t status = local
606 bt_status_t status = sBluetoothHfpClientInterface->dial_memory( local
627 bt_status_t status = sBluetoothHfpClientInterface->handle_call_action( local
647 bt_status_t status = sBluetoothHfpClientInterface->query_current_calls( local
667 bt_status_t status = local
688 bt_status_t status = sBluetoothHfpClientInterface->retrieve_subscriber_info( local
708 bt_status_t status = sBluetoothHfpClientInterface->send_dtmf( local
728 bt_status_t status = local
756 bt_status_t status = sBluetoothHfpClientInterface->send_at_cmd( 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_btservice_AdapterService.cpp71 static void adapter_state_change_callback(bt_state_t status) { argument
74 ALOGV("%s: Status is: %d", __func__, status);
77 (jint)status);
98 static void adapter_properties_callback(bt_status_t status, int num_properties, argument
103 ALOGV("%s: Status is: %d, Properties: %d", __func__, status, num_properties);
105 if (status != BT_STATUS_SUCCESS) {
106 ALOGE("%s: Status %d is incorrect", __func__, status);
150 static void remote_device_properties_callback(bt_status_t status, argument
157 ALOGV("%s: Status is: %d, Properties: %d", __func__, status, num_properties);
159 if (status !
249 bond_state_changed_callback(bt_status_t status, RawAddress* bd_addr, bt_bond_state_t state) argument
272 acl_state_changed_callback(bt_status_t status, RawAddress* bd_addr, bt_acl_state_t state) argument
397 le_test_mode_recv_callback(bt_status_t status, uint16_t packet_count) argument
789 int status = BT_STATUS_FAIL; local
1093 bt_status_t status = sBluetoothSocketInterface->connect( local
1131 bt_status_t status = sBluetoothSocketInterface->listen( local
1258 int status; local
[all...]
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/
H A DInstallExistingPackageTask.java53 int status = pm.installExistingPackageAsUser(mPackageName, userId);
54 if (status == PackageManager.INSTALL_SUCCEEDED) {
57 ProvisionLogger.loge("Install failed, result code = " + status);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
H A DButtonSwitcher.java31 * A view that handles buttons inside it according to a status.
85 private Button getButton(final int status) { argument
86 switch(status) {
98 public void setStatusAndUpdateVisuals(final int status) { argument
100 setButtonPositionWithoutAnimation(status);
101 mStatus = status;
107 mAnimateToStatus = status;
109 animateButtonPosition(mStatus, status);
110 mStatus = status;
115 private void setButtonPositionWithoutAnimation(final int status) { argument
[all...]
/packages/services/Car/evs/sampleDriver/
H A Dservice.cpp50 status_t status = service->registerAsService(kEnumeratorServiceName); local
51 if (status == OK) {
55 ALOGE("Could not register service %s (%d).", kEnumeratorServiceName, status);
/packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/
H A DBatteryTestUtils.java40 public static Intent getCustomBatteryIntent(int plugged, int level, int scale, int status) { argument
45 intent.putExtra(BatteryManager.EXTRA_STATUS, status);
/packages/apps/Test/connectivity/PMC/src/com/android/pmc/
H A DGattClientListener.java184 public void onConnectionStateChange(BluetoothGatt gatt, int status, argument
186 Log.d(TAG, "onConnectionStateChange " + status);
189 + gatt.getDevice().getAddress() + " status " + status);
195 + gatt.getDevice().getAddress() + " status " + status);
205 + gatt.getDevice().getAddress() + " status " + status);
208 + gatt.getDevice().getAddress() + " status " + status);
213 onServicesDiscovered(BluetoothGatt gatt, int status) argument
219 onCharacteristicRead(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) argument
225 onCharacteristicWrite(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) argument
241 onDescriptorRead(BluetoothGatt gatt, BluetoothGattDescriptor descriptor, int status) argument
247 onDescriptorWrite(BluetoothGatt gatt, BluetoothGattDescriptor descriptor, int status) argument
253 onReliableWriteCompleted(BluetoothGatt gatt, int status) argument
258 onReadRemoteRssi(BluetoothGatt gatt, int rssi, int status) argument
263 onMtuChanged(BluetoothGatt gatt, int mtu, int status) argument
[all...]
/packages/apps/Settings/src/com/android/settings/deviceinfo/
H A DSELinuxStatusPreferenceController.java57 String status = mContext.getResources().getString(R.string.selinux_status_disabled);
58 pref.setSummary(status);
60 String status = mContext.getResources().getString(R.string.selinux_status_permissive);
61 pref.setSummary(status);
H A DStorageWizardMoveProgress.java55 // Register for updates and push through current status
68 public void onStatusChanged(int moveId, int status, long estMillis) {
71 if (PackageManager.isMoveStatusFinished(status)) {
72 Log.d(TAG, "Finished with status " + status);
73 if (status != PackageManager.MOVE_SUCCEEDED) {
74 Toast.makeText(StorageWizardMoveProgress.this, moveStatusToMessage(status),
80 setCurrentProgress(status);
/packages/apps/Dialer/java/com/android/dialer/app/voicemail/error/
H A DVoicemailStatusCorruptionHandler.java35 * This class will detect the corruption in the voicemail status and log it so we can track how many
64 VoicemailStatus status = new VoicemailStatus(context, statusCursor);
67 ComponentName.unflattenFromString(status.phoneAccountComponentName),
68 status.phoneAccountId);
79 + status.configurationState
87 if (Status.CONFIGURATION_STATE_NOT_CONFIGURED == status.configurationState
91 "VVM3 voicemail status corrupted");
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/
H A DDownloadMmsAction.java120 final int status = message.getStatus();
132 actionParameters.putBoolean(KEY_AUTO_DOWNLOAD, isAutoDownload(status));
139 final int downloadingStatus = getDownloadingStatus(status);
140 // Update message status to indicate downloading.
143 // Pre-compute the next status when failed so we don't have to load from db again
158 // Retries depleted and we failed. Update the message status so we won't retry again
162 if (status == MessageData.BUGLE_STATUS_INCOMING_RETRYING_AUTO_DOWNLOAD) {
176 * Find out the auto download state of this message based on its starting status
178 * @param status The starting status o
181 isAutoDownload(final int status) argument
199 getDownloadingStatus(final int status) argument
217 getFailureStatus(final int status) argument
301 updateMessageStatus(final Uri messageUri, final String messageId, final String conversationId, final int status, final int rawStatus) argument
[all...]
/packages/apps/Settings/src/com/android/settings/wifi/p2p/
H A DWifiP2pPeer.java49 setSummary(statusArray[device.status]);
72 // devices go in the order of the status
73 if (device.status != other.device.status) {
74 return device.status < other.device.status ? -1 : 1;
/packages/services/Telephony/src/com/android/phone/settings/
H A DCallForwardInfoUtil.java32 * @see CallForwardInfo#status
65 if (newInfo.status == CALL_FORWARD_INFO_INACTIVE_STATUS
66 && oldInfo.status == CALL_FORWARD_INFO_INACTIVE_STATUS) {
78 int commandInterfaceCfAction = info.status == CALL_FORWARD_INFO_ACTIVE_STATUS
106 info.status = CALL_FORWARD_INFO_INACTIVE_STATUS;
113 info.status = CALL_FORWARD_INFO_INACTIVE_STATUS;
/packages/apps/Nfc/nci/jni/
H A DNativeNfcManager.cpp52 extern void nativeNfcTag_doTransceiveStatus (tNFA_STATUS status, uint8_t * buf, uint32_t buflen);
55 extern void nativeNfcTag_doDeactivateStatus (int status);
57 extern void nativeNfcTag_doCheckNdefResult (tNFA_STATUS status, uint32_t max_size, uint32_t current_size, uint8_t flags);
58 extern void nativeNfcTag_doMakeReadonlyResult (tNFA_STATUS status);
59 extern void nativeNfcTag_doPresenceCheckResult (tNFA_STATUS status);
62 extern void nativeNfcTag_doReadCompleted (tNFA_STATUS status);
227 tNFA_STATUS status = NFA_STATUS_FAILED; local
234 ALOGV("%s: NFA_POLL_ENABLED_EVT: status = %u", __func__, eventData->status);
243 ALOGV("%s: NFA_POLL_DISABLED_EVT: status
788 tNFA_STATUS status = NFA_SendRawFrame (buf, bufLen, 0); local
1182 tNFA_STATUS status = NFA_STATUS_OK; local
1690 tNFA_STATUS status = NFA_STATUS_OK; local
1957 tNFA_STATUS status = NFA_STATUS_FAILED; local
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DAdvertiseManager.java137 void onAdvertisingSetStarted(int reg_id, int advertiser_id, int tx_power, int status) argument
141 + advertiser_id + ", status=" + status);
154 if (status == 0) {
163 callback.onAdvertisingSetStarted(advertiser_id, tx_power, status);
166 void onAdvertisingEnabled(int advertiser_id, boolean enable, int status) throws Exception { argument
169 + enable + ", status=" + status);
180 callback.onAdvertisingEnabled(advertiser_id, enable, status);
289 void onAdvertisingDataSet(int advertiser_id, int status) throw argument
305 onScanResponseDataSet(int advertiser_id, int status) argument
320 onAdvertisingParametersUpdated(int advertiser_id, int tx_power, int status) argument
337 onPeriodicAdvertisingParametersUpdated(int advertiser_id, int status) argument
354 onPeriodicAdvertisingDataSet(int advertiser_id, int status) argument
370 onPeriodicAdvertisingEnabled(int advertiser_id, boolean enable, int status) argument
[all...]
/packages/apps/PackageInstaller/src/com/android/packageinstaller/
H A DEventResultPersister.java60 /** Currently stored but not yet called back results (install id -> status, status message) */
93 void onResult(int status, int legacyStatus, @Nullable String message); argument
153 int status = readIntAttribute(parser, "status");
161 mResults.put(id, new EventResult(status, legacyStatus, statusMessage));
182 int status = intent.getIntExtra(PackageInstaller.EXTRA_STATUS, 0);
184 if (status == PackageInstaller.STATUS_PENDING_USER_ACTION) {
207 observerToCall.onResult(status, legacyStatus, statusMessage);
209 mResults.put(id, new EventResult(status, legacyStatu
341 public final int status; field in class:EventResultPersister.EventResult
345 EventResult(int status, int legacyStatus, @Nullable String message) argument
[all...]
/packages/apps/Car/libs/car-radio-service/src/com/android/car/radio/service/
H A DIRadioCallback.aidl57 * @param status One of the error states in {@link RadioManager}. For example,
60 void onError(int status);
/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/Launcher3/src/com/android/launcher3/
H A DPromiseAppInfo.java43 shortcut.status |= ShortcutInfo.FLAG_AUTOINSTALL_ICON;
45 shortcut.status |= ShortcutInfo.FLAG_RESTORE_STARTED;
/packages/apps/Messaging/src/android/support/v7/mms/pdu/
H A DNotifyRespInd.java29 * @param status the status value
36 int status) throws InvalidHeaderValueException {
41 setStatus(status);
34 NotifyRespInd(int mmsVersion, byte[] transactionId, int status) argument
/packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
H A DNotifyRespInd.java31 * @param status the status value
38 int status) throws InvalidHeaderValueException {
43 setStatus(status);
36 NotifyRespInd(int mmsVersion, byte[] transactionId, int status) argument
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
H A DSettingsHelper.java39 public String getStatusStringFromBoolean(boolean status) { argument
40 int descResId = status ? R.string.action_on_description : R.string.action_off_description;

Completed in 2017 milliseconds

1234567891011>>