Searched refs:status (Results 201 - 225 of 353) sorted by last modified time

1234567891011>>

/frameworks/base/cmds/pm/src/com/android/commands/pm/
H A DPm.java683 public void packageInstalled(String name, int status) { argument
686 result = status;
/frameworks/base/cmds/servicemanager/
H A Dbctest.c36 unsigned status; local
49 status = bio_get_uint32(&reply);
53 return status;
H A Dbinder.c163 int status)
178 if (status) {
182 data.txn.data = &status;
160 binder_send_reply(struct binder_state *bs, struct binder_io *reply, void *buffer_to_free, int status) argument
/frameworks/base/core/java/android/app/
H A DDownloadManager.java111 * Current status of the download, as one of the STATUS_* constants.
116 * Provides more detail on the status of the download. Its meaning depends on the value of
120 * occurred. If an HTTP error occurred, this will hold the HTTP status code as defined in RFC
130 * status codes</a>
757 * Include only downloads with status matching any the given status flags.
1000 int status = cursor.getInt(cursor.getColumnIndexOrThrow(COLUMN_STATUS));
1001 if (DownloadManager.STATUS_SUCCESSFUL == status) {
1027 // downloaded file not found or its status is not 'successfully completed'
1059 // downloaded file not found or its status i
1291 getReason(int status) argument
1304 getPausedReason(int status) argument
1320 getErrorCode(int status) argument
1358 translateStatus(int status) argument
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHeadset.java589 * can keep the device awake by polling for cellular status updates. As a
843 public void clccResponse(int index, int direction, int status, int mode, boolean mpty, argument
847 mService.clccResponse(index, direction, status, mode, mpty, number, type);
H A DBluetoothHealth.java343 * by applications like status bar which would just like to know the state of the
375 * by applications like status bar which would just like to know the state of the
403 * by applications like status bar which would just like to know the state of the
434 int status) {
435 mCallback.onHealthAppConfigurationStatusChange(config, status);
433 onHealthAppConfigurationStatusChange(BluetoothHealthAppConfiguration config, int status) argument
H A DBluetoothHealthCallback.java35 * @param status Success or failure of the registration or unregistration
43 int status) {
44 Log.d(TAG, "onHealthAppConfigurationStatusChange: " + config + "Status: " + status);
42 onHealthAppConfigurationStatusChange(BluetoothHealthAppConfiguration config, int status) argument
H A DBluetoothSocket.java269 * Get the connection status of this socket, ie, whether there is an active connection with
479 int status = bb.getInt();
482 + RemoteAddr + ", channel: " + channel + ", status: " + status);
483 if(status != 0)
484 throw new IOException("Connection failure, status: " + status);
H A DIBluetoothHeadset.aidl54 void clccResponse(int index, int direction, int status, int mode, boolean mpty,
H A DIBluetoothHealthCallback.aidl28 void onHealthAppConfigurationStatusChange(in BluetoothHealthAppConfiguration config, int status);
/frameworks/base/core/java/android/content/
H A DSyncManager.java1163 SyncStatusInfo status = mSyncStorageEngine.getOrCreateSyncStatus(settings);
1188 long lastPeriodicTime = status.getPeriodicSyncTime(periodicIndex);
1194 pw.print(" count: local="); pw.print(status.numSourceLocal);
1195 pw.print(" poll="); pw.print(status.numSourcePoll);
1196 pw.print(" periodic="); pw.print(status.numSourcePeriodic);
1197 pw.print(" server="); pw.print(status.numSourceServer);
1198 pw.print(" user="); pw.print(status.numSourceUser);
1199 pw.print(" total="); pw.print(status.numSyncs);
1202 pw.println(DateUtils.formatElapsedTime(status.totalElapsedTime/1000));
1203 if (status
[all...]
H A DSyncStorageEngine.java319 * This file contains the current sync status. We would like to retain
359 mStatusFile = new AtomicFile(new File(syncDir, "status.bin"));
715 // the periodic syncs status to correspond to it
718 SyncStatusInfo status = getOrCreateSyncStatusLocked(authority.ident);
719 status.setPeriodicSyncTime(authority.periodicSyncs.size() - 1, 0);
723 SyncStatusInfo status = mSyncStatus.get(authority.ident);
733 // remove the corresponding entry from the status
734 if (status != null) {
735 status.removePeriodicSyncTime(i);
866 SyncStatusInfo status
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnectionPool.java365 AcquiredConnectionStatus status = mAcquiredConnections.remove(connection);
366 if (status == null) {
375 if (recycleConnectionLocked(connection, status)) {
383 if (recycleConnectionLocked(connection, status)) {
393 AcquiredConnectionStatus status) {
394 if (status == AcquiredConnectionStatus.RECONFIGURE) {
400 status = AcquiredConnectionStatus.DISCARD;
403 if (status == AcquiredConnectionStatus.DISCARD) {
571 private void markAcquiredConnectionsLocked(AcquiredConnectionStatus status) { argument
578 if (status !
392 recycleConnectionLocked(SQLiteConnection connection, AcquiredConnectionStatus status) argument
[all...]
/frameworks/base/core/java/android/ddm/
H A DDdmHandleThread.java104 //Log.d("ddm-thread", "Thread status request");
106 byte[] status = DdmVmInternal.getThreadStats();
107 if (status != null)
108 return new Chunk(CHUNK_THST, status, 0, status.length);
/frameworks/base/core/java/android/hardware/
H A DSystemSensorManager.java106 final int[] status = new int[1];
122 final int sensor = sensors_data_poll(sQueue, values, status, timestamp);
124 int accuracy = status[0];
397 static native int sensors_data_poll(int queue, float[] values, int[] status, long[] timestamp); argument
/frameworks/base/core/java/android/net/http/
H A DEventHandler.java22 * processed. The normal order of callbacks is status(), headers(),
72 * Called after status line has been sucessfully processed.
80 public void status(int major_version, method in interface:EventHandler
H A DHttpsConnection.java171 // handler with the response status and headers. The event
222 // it is possible to receive informational status
224 // all those status codes are smaller than OK 200
276 req.mEventHandler.status(version.getMajor(),
H A DLoggingEventHandler.java34 public void status(int major_version, method in class:LoggingEventHandler
39 HttpLog.v("LoggingEventHandler:status() major: " + major_version +
H A DRequest.java262 mEventHandler.status(v.getMajor(), v.getMinor(),
336 // don't throw if we have a non-OK status code
472 * @param response the response, to obtain the status code
476 final int status) {
481 return status >= HttpStatus.SC_OK
482 && status != HttpStatus.SC_NO_CONTENT
483 && status != HttpStatus.SC_NOT_MODIFIED;
475 canResponseHaveBody(final HttpRequest request, final int status) argument
/frameworks/base/core/java/android/os/storage/
H A DIMountService.java109 * actual status of enabling/disabling USB mass storage via
170 * StorageEventListener for storage related status changes.
470 * processing the media status update request.
998 boolean status = isSecureContainerMounted(id);
1000 reply.writeInt((status ? 1 : 0));
1076 boolean status = isObbMounted(filename);
1078 reply.writeInt((status ? 1 : 0));
1185 * processing the media status update request.
1275 * status of enabling/disabling USB mass storage via StorageEventListener.
1303 * for storage related status change
[all...]
H A DIObbActionListener.java74 int status;
75 status = data.readInt();
76 this.onObbResult(filename, nonce, status);
104 * @param returnCode status of the operation
106 public void onObbResult(String filename, int nonce, int status) argument
114 _data.writeInt(status);
133 * @param status status code as defined in {@link OnObbStateChangeListener}
135 public void onObbResult(String filename, int nonce, int status) throws RemoteException; argument
H A DStorageManager.java113 public void onObbResult(String filename, int nonce, int status) { argument
123 delegate.sendObbStateChanged(filename, status);
188 * Message sent during an OBB status change event.
534 * not mounted or exception encountered trying to read status
/frameworks/base/core/java/android/provider/
H A DContacts.java1561 * The server defined status.
1577 * The user defined status line.
1637 * @param status the status to get the icon for
1642 public static final int getPresenceIconResourceId(int status) { argument
1643 switch (status) {
1667 * @param serverStatus that status
H A DContactsContract.java94 * {@link StatusUpdates}, which contains social status updates including IM
949 * Contact presence status. See {@link StatusUpdates} for individual status
963 * Contact's latest status update.
969 * The absolute time in milliseconds when the latest status was
976 * The package containing resources for this status: label and icon.
983 * status, e.g. "Google Talk". This resource is scoped by the
990 * The resource ID of the icon for the source of contact status. This
1358 * <td>Contact IM presence status. See {@link StatusUpdates} for individual
1359 * status definition
4940 getPresenceIconResourceId(int status) argument
4963 getPresencePrecedence(int status) argument
[all...]
H A DDownloads.java208 * The name of the column containing the current status of the download.
214 public static final String COLUMN_STATUS = "status";
218 * status changed in the download. Stored as a System.currentTimeMillis()
506 * Returns whether the status is informational (i.e. 1xx).
508 public static boolean isStatusInformational(int status) { argument
509 return (status >= 100 && status < 200);
513 * Returns whether the status is a success (i.e. 2xx).
515 public static boolean isStatusSuccess(int status) { argument
516 return (status >
522 isStatusError(int status) argument
529 isStatusClientError(int status) argument
536 isStatusServerError(int status) argument
555 isStatusCompleted(int status) argument
719 statusToString(int status) argument
[all...]

Completed in 348 milliseconds

1234567891011>>