Searched refs:status (Results 76 - 100 of 181) sorted by relevance

12345678

/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DCachedBluetoothDevice.java425 int status = getProfileConnectionState(profile);
426 if (status == BluetoothProfile.STATE_CONNECTED) {
435 int status = getProfileConnectionState(profile);
436 return status == BluetoothProfile.STATE_CONNECTED;
442 int status = getProfileConnectionState(profile);
443 if (status == BluetoothProfile.STATE_CONNECTING
444 || status == BluetoothProfile.STATE_DISCONNECTING) {
/packages/apps/Settings/src/com/android/settings/accounts/
H A DAccountSyncSettings.java369 // Refresh the sync status checkboxes - some syncs may have become active.
382 SyncStatusInfo status = ContentResolver.getSyncStatus(account, authority);
384 boolean authorityIsPending = status == null ? false : status.pending;
385 boolean initialSync = status == null ? false : status.initialize;
388 boolean lastSyncFailed = status != null
389 && status.lastFailureTime != 0
390 && status.getLastFailureMesgAsInt(0)
397 Log.d(TAG, "Update sync status
[all...]
/packages/apps/Contacts/src/com/android/contacts/socialwidget/
H A DSocialWidgetProvider.java205 CharSequence status = HtmlUtils.fromHtml(context, streamItem.getText());
206 if (status == null) {
207 status = "";
209 if (status.length() <= SHORT_SNIPPET_LENGTH) {
214 sb.append(status);
/packages/apps/Nfc/nci/jni/
H A DSecureElement.cpp762 if (mHciCfg.status == NFA_STATUS_OK)
1102 ALOGD ("%s: Status: %u Num EE: %u", fn, info.status, info.num_ee);
1594 ALOGD ("%s: NFA_EE_REGISTER_EVT; status=%u", fn, eventData->ee_register);
1601 ALOGD ("%s: NFA_EE_MODE_SET_EVT; status: 0x%04X handle: 0x%04X mActiveEeHandle: 0x%04X", fn,
1602 eventData->mode_set.status, eventData->mode_set.ee_handle, sSecElem.mActiveEeHandle);
1604 if (eventData->mode_set.status == NFA_STATUS_OK)
1622 ALOGD ("%s: NFA_EE_SET_TECH_CFG_EVT; status=0x%X", fn, eventData->status);
1630 ALOGD ("%s: NFA_EE_SET_PROTO_CFG_EVT; status=0x%X", fn, eventData->status);
2012 eeStatusToString(UINT8 status) argument
[all...]
H A DHostAidRouter.cpp264 ALOGD("%s: NFA_CE_REGISTERED_EVT; status=0x%X; h=0x%X", fn, ce_registered.status, ce_registered.handle);
266 if (ce_registered.status == NFA_STATUS_OK)
H A DPowerSwitch.cpp414 ALOGD ("%s: NFA_DM_PWR_MODE_CHANGE_EVT; status=%u; device mgt power mode=%s (%u)", fn,
415 power_mode.status, sPowerSwitch.deviceMgtPowerStateToString (power_mode.power_mode), power_mode.power_mode);
417 if (power_mode.status == NFA_STATUS_OK)
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
H A DFolderSyncParser.java113 // If true, we only care about status (this is true when validating an account) and ignore
137 int status;
152 status = getValueInt();
153 if (status != Eas.FOLDER_STATUS_OK) {
154 mService.errorLog("FolderSync failed: " + CommandStatus.toString(status));
157 if (CommandStatus.isDeniedAccess(status) ||
158 CommandStatus.isNeedsProvisioning(status) ||
160 throw new CommandStatusException(status);
162 // and EAS 14 style command status
163 } else if (status
[all...]
H A DProvisionParser.java107 int status = dpm.getStorageEncryptionStatus();
108 return status != DevicePolicyManager.ENCRYPTION_STATUS_UNSUPPORTED;
550 mService.userLog("Policy status: ", getValue());
580 mService.userLog("DeviceInformation status: " + getValue());
596 int status = getValueInt();
597 mService.userLog("Provision status: ", status);
598 res = (status == 1);
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
H A Dndldic.c171 loctset->loct.status = NJ_ST_SEARCH_END_EXT;
182 loctset->loct.status = NJ_ST_SEARCH_END_EXT;
193 loctset->loct.status = NJ_ST_SEARCH_END_EXT;
215 loctset->loct.status = NJ_ST_SEARCH_END;
239 loctset->loct.status = NJ_ST_SEARCH_END_EXT;
244 loctset->loct.status = NJ_ST_SEARCH_END_EXT;
257 loctset->loct.status = NJ_ST_SEARCH_END_EXT;
937 if (GET_LOCATION_STATUS(loctset->loct.status) == NJ_ST_SEARCH_NO_INIT) {
946 loctset->loct.status = NJ_ST_SEARCH_END;
948 loctset->loct.status
[all...]
H A Dndapi.c79 loctset->loct.status = NJ_ST_SEARCH_NO_INIT;
171 if ((GET_LOCATION_STATUS(loctset->loct.status) == NJ_ST_SEARCH_END)
176 loctset->loct.status = NJ_ST_SEARCH_END;
210 (GET_LOCATION_STATUS(loctset->loct.status) == NJ_ST_SEARCH_END) ||
211 (GET_LOCATION_STATUS(loctset->loct.status) == NJ_ST_SEARCH_END_EXT)) {
233 loctset->loct.status |= SET_LOCATION_OPERATION(cursor->cond.operation);
378 if (GET_LOCATION_STATUS(loctset->loct.status) == NJ_ST_SEARCH_END) {
499 if (GET_LOCATION_OPERATION(result->word.stem.loc.status) != NJ_CUR_OP_COMP) {
880 loctset->loct.status = NJ_ST_SEARCH_NO_INIT;
903 word->stem.loc.status
[all...]
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
H A DContactFragment.java407 // When Email rows have status, create additional Im row
408 final DataStatus status = mStatuses.get(entry.id);
409 if (status != null) {
416 imEntry.applyStatus(status, false);
431 // Apply presence and status details when available
432 final DataStatus status = mStatuses.get(entry.id);
433 if (status != null) {
434 entry.applyStatus(status, false);
491 final DataStatus status = mStatuses.get(entry.id);
492 final boolean hasSocial = kind.actionBodySocial && status !
579 applyStatus(DataStatus status, boolean fillData) argument
[all...]
/packages/apps/Exchange/exchange2/src/com/android/exchange/
H A DEasOutboxService.java207 * The only useful info in the SendMail response is the status; we capture and save it
241 private void sendCallback(long msgId, String subject, int status) { argument
243 ExchangeService.callback().sendMessageStatus(msgId, subject, status, 0);
419 // The parser holds the status
420 int status = p.getStatus();
421 userLog("SendMail error, status: " + status);
422 if (CommandStatus.isNeedsProvisioning(status)) {
424 } else if (status == CommandStatus.ITEM_NOT_FOUND && smartSend) {
524 userLog("Outbox exited with status ", mExitStatu
[all...]
/packages/apps/Camera/src/com/android/camera/
H A DLocationManager.java139 // If GPS is available before start camera, we won't get status
163 String provider, int status, Bundle extras) {
164 switch(status) {
162 onStatusChanged( String provider, int status, Bundle extras) argument
/packages/apps/Contacts/src/com/android/contacts/list/
H A DContactTileView.java105 if (entry.status == null) {
108 mStatus.setText(entry.status);
/packages/apps/LegacyCamera/src/com/android/camera/
H A DLocationManager.java139 // If GPS is available before start camera, we won't get status
163 String provider, int status, Bundle extras) {
164 switch(status) {
162 onStatusChanged( String provider, int status, Bundle extras) argument
/packages/apps/Tag/src/com/android/apps/tag/record/
H A DTextRecord.java143 char status = (char) (utfBit + langBytes.length);
146 new byte[] { (byte) status },
/packages/apps/Settings/src/com/android/settings/
H A DDeviceInfoSettings.java90 String status = getResources().getString(R.string.selinux_status_disabled);
91 setStringSummary(KEY_SELINUX_STATUS, status);
93 String status = getResources().getString(R.string.selinux_status_permissive);
94 setStringSummary(KEY_SELINUX_STATUS, status);
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
H A DAdapterState.java331 void stateChangeCallback(int status) { argument
332 if (status == AbstractionLayer.BT_STATE_OFF) {
334 } else if (status == AbstractionLayer.BT_STATE_ON) {
338 errorLog("Incorrect status in stateChangeCallback");
/packages/apps/Browser/src/com/android/browser/
H A DDownloadHandler.java150 String status = Environment.getExternalStorageState();
151 if (!status.equals(Environment.MEDIA_MOUNTED)) {
156 if (status.equals(Environment.MEDIA_SHARED)) {
/packages/apps/Phone/src/com/android/phone/
H A DCallForwardEditPreference.java110 && callForwardInfo.status == 1
144 setToggled(callForwardInfo.status == 1);
223 info.status == 1) {
/packages/apps/SpeechRecorder/src/com/android/speechrecorder/
H A DSpeechRecorderActivity.java150 final String status = "item " + (index + 1) + "/" + utterances.length;
172 mStatus.setText(status + " Recording... " + remain);
175 mStatus.setText(status);
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadReceiver.java133 final int status;
140 status = getInt(cursor, Downloads.Impl.COLUMN_STATUS);
150 if (Downloads.Impl.isStatusCompleted(status) &&
/packages/apps/Bluetooth/src/com/android/bluetooth/hid/
H A DHidService.java267 int status = msg.arg1;
268 broadcastVirtualUnplugStatus(device, status);
548 private void onVirtualUnplug(byte[] address, int status) { argument
551 msg.arg1 = status;
596 private void broadcastVirtualUnplugStatus(BluetoothDevice device, int status) { argument
599 intent.putExtra(BluetoothInputDevice.EXTRA_VIRTUAL_UNPLUG_STATUS, status);
606 //check if it is inbound connection in Quiet mode, priority and Bond status
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppNotification.java59 static final String status = "(" + BluetoothShare.STATUS + " == '192'" + ")"; field in class:BluetoothOppNotification
74 static final String WHERE_RUNNING = status + " AND " + visible + " AND " + confirm;
385 int status = cursor.getInt(statusIndex);
387 if (BluetoothShare.isStatusError(status)) {
432 int status = cursor.getInt(statusIndex);
434 if (BluetoothShare.isStatusError(status)) {
/packages/apps/Settings/src/com/android/settings/deviceinfo/
H A DStatus.java67 * # XMPP/buzz/tickle status : TODO
149 Status status = mStatus.get();
150 if (status == null) {
156 status.updateSignalStrength();
160 ServiceState serviceState = status.mPhoneStateReceiver.getServiceState();
161 status.updateServiceState(serviceState);
165 status.updateTimes();

Completed in 623 milliseconds

12345678