Searched refs:status (Results 101 - 125 of 181) sorted by relevance

12345678

/packages/experimental/LoaderApp/src/com/android/loaderapp/
H A DContactHeaderWidget.java182 mStatusView = (TextView)findViewById(R.id.status);
419 * Manually set the status attribution text to display in the header.
443 * Manually set all the status values to display in the header.
446 * @param status The status of the contact. If this is either null or empty,
447 * the status is cleared and the other parameters are ignored.
449 * {@link System#currentTimeMillis()}) of the last status update.
452 * status. This value can be null if no Label should be used.
456 public void setStatus(final String status, final Long statusTimestamp, argument
458 if (TextUtils.isEmpty(status)) {
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
H A DBondStateMachine.java274 void bondStateChangeCallback(int status, byte[] address, int newState) { argument
284 infoLog("bondStateChangeCallback: Status: " + status + " Address: " + device
296 msg.arg2 = status;
/packages/apps/Contacts/src/com/android/contacts/model/
H A DContact.java99 private Contact(Uri requestedUri, Contact.Status status, Exception exception) { argument
100 if (status == Status.ERROR && exception == null) {
103 mStatus = status;
473 ",uri=" + mUri + ",status=" + mStatus + "}";
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
H A DSearch.java77 // Set the status of this mailbox to indicate query
135 // Set the status of this mailbox to indicate query over
174 String status = getValue();
176 Log.d(Logging.LOG_TAG, "Search status: " + status);
207 String status = getValue();
/packages/apps/Mms/src/com/android/mms/transaction/
H A DHttpUtils.java203 StatusLine status = response.getStatusLine();
204 if (status.getStatusCode() != 200) { // HTTP 200 is success.
205 throw new IOException("HTTP error: " + status.getReasonPhrase());
H A DMmsMessageSender.java151 public static void sendReadRec(Context context, String to, String messageId, int status) { argument
160 status,
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
H A DHeadsetService.java266 public void clccResponse(int index, int direction, int status, int mode, boolean mpty, argument
270 service.clccResponse(index, direction, status, mode, mpty, number, type);
486 private void clccResponse(int index, int direction, int status, int mode, boolean mpty, argument
490 new HeadsetClccResponse(index, direction, status, mode, mpty, number, type));
H A DHeadsetPhoneState.java199 * bluetooth devices. Scale is similar to status bar policy
213 * The scale is similar to the one used in status bar policy.
310 public HeadsetClccResponse(int index, int direction, int status, int mode, boolean mpty, argument
314 mStatus = status;
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DManageCachePage.java366 TextView status = (TextView) mFooterContent.findViewById(R.id.status);
380 status.setText(label);
387 status.setText(label);
/packages/apps/Mms/src/com/android/mms/ui/
H A DMessageItem.java123 long status = cursor.getLong(columnsMap.mColumnSmsStatus);
124 if (status == Sms.STATUS_NONE) {
127 } else if (status >= Sms.STATUS_FAILED) {
130 } else if (status >= Sms.STATUS_PENDING) {
298 " delivery status: " + mDeliveryStatus;
/packages/apps/Settings/src/com/android/settings/wifi/
H A DWifiStatusTest.java48 * Show the current status details of Wifi related fields
351 * enable quick access on the wifi status screen
358 int status = p.waitFor();
359 if (status == 0) {
375 int status = p.waitFor();
376 if (status == 0) {
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadThread.java290 int status = Downloads.Impl.STATUS_WAITING_FOR_NETWORK;
292 status = Downloads.Impl.STATUS_QUEUED_FOR_WIFI;
295 status = Downloads.Impl.STATUS_QUEUED_FOR_WIFI;
298 throw new StopRequestException(status,
344 * Called just before the thread finishes, regardless of status, to take any necessary action on
707 * Check the HTTP response status and handle anything unusual (e.g. not 200/206).
730 * Handle a status that we don't know how to deal with properly.
754 * Handle a 3xx redirect status.
794 * Handle a 503 Service Unavailable status by processing the Retry-After header.
967 int status, boolea
966 notifyDownloadCompleted( int status, boolean countRetry, int retryAfter, boolean gotData, String filename, String uri, String mimeType, String errorMsg) argument
977 notifyThroughDatabase( int status, boolean countRetry, int retryAfter, boolean gotData, String filename, String uri, String mimeType, String errorMsg) argument
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppTransferHistory.java232 int status = mTransferCursor.getInt(statusColumnId);
233 if (BluetoothShare.isStatusCompleted(status)) {
/packages/apps/Contacts/src/com/android/contacts/list/
H A DContactsUnavailableFragment.java34 * Fragment shown when contacts are unavailable. It contains provider status
96 switch (providerStatus.status) {
182 (mProviderStatus.status == ProviderStatus.STATUS_NO_ACCOUNTS_NO_CONTACTS)) {
/packages/apps/Phone/src/com/android/phone/
H A DGsmUmtsCallForwardOptions.java31 private static final String KEY_STATUS = "status";
98 cf.status = bundle.getInt(KEY_STATUS);
117 bundle.putInt(KEY_STATUS, pref.callForwardInfo.status);
H A DEnableFdnScreen.java90 mStatusField = (TextView) findViewById(R.id.status);
/packages/apps/Settings/src/com/android/settings/
H A DCryptKeeperSettings.java74 // Update UI elements based on power/battery status
145 int status = dpm.getStorageEncryptionStatus();
146 if (status != DevicePolicyManager.ENCRYPTION_STATUS_INACTIVE) {
H A DUtils.java394 int status = intent.getIntExtra("status", BatteryManager.BATTERY_STATUS_UNKNOWN);
396 if (status == BatteryManager.BATTERY_STATUS_CHARGING) {
409 } else if (status == BatteryManager.BATTERY_STATUS_DISCHARGING) {
411 } else if (status == BatteryManager.BATTERY_STATUS_NOT_CHARGING) {
413 } else if (status == BatteryManager.BATTERY_STATUS_FULL) {
/packages/apps/Tag/canon/src/com/android/apps/tagcanon/
H A DTagCanon.java62 char status = (char) (utfBit + langBytes.length);
65 new byte[] { (byte) status },
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DContactLoader.java88 final DataStatus status = new DataStatus(cursor);
90 statuses.put(dataId, status);
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
H A DDownloadProviderFunctionalTest.java112 private void runUntilStatus(Uri downloadUri, int status) throws Exception { argument
118 Log.i(TAG, "status is: " + rslt + ", for: " + downloadUri);
125 assertEquals(status, getDownloadStatus(downloadUri));
/packages/apps/Camera/jni/
H A Dmosaic_renderer_jni.cpp177 GLenum status = glCheckFramebufferStatus(GL_FRAMEBUFFER); local
178 if (status == 0) {
181 } else if (status != GL_FRAMEBUFFER_COMPLETE) {
183 switch (status) {
189 LOGE("Framebuffer: %s is INCOMPLETE: %s, %x", name, msg, status);
/packages/apps/Exchange/exchange2/src/com/android/exchange/
H A DEasAccountService.java220 // Initialize exit status to success
396 int status = e.mStatus;
397 if (CommandStatus.isNeedsProvisioning(status)) {
399 // Set the appropriate failure status
403 } else if (CommandStatus.isDeniedAccess(status)) {
413 userLog("Unexpected status: " + CommandStatus.toString(status));
417 // We catch this here to send the folder sync status callback
421 // NOTE: The correct status is CONNECTION_ERROR, but the UI displays this, and
686 // If our ping completed (status
[all...]
/packages/apps/Calendar/src/com/android/calendar/
H A DCalendarEventModel.java85 public Attendee(String name, String email, int status, String identity, argument
89 mStatus = status;
458 String status = Integer.toString(attendee.mStatus);
461 b.append(" status:").append(status);
/packages/apps/Nfc/nci/jni/
H A DSecureElement.h405 tNFA_STATUS mCommandStatus; //completion status of the last command
582 ** Description: Convert status code to status text.
583 ** status: Status code
588 static const char* eeStatusToString (UINT8 status);

Completed in 1529 milliseconds

12345678