Lines Matching defs:status

143      * Key used for a Bundle extra holding an Integer status value
144 * when a status change is broadcast using a PendingIntent.
146 public static final String KEY_STATUS_CHANGED = "status";
149 * Key used for a Bundle extra holding an Boolean status value
264 public void onStatusChanged(String provider, int status, Bundle extras) {
269 b.putInt("status", status);
302 int status = b.getInt("status");
304 mListener.onStatusChanged(provider, status, extras);
573 * the specified {@link Criteria}, with location and status updates.
627 * update sent. Providers can also send status updates, at any time,
629 * then status and availability updates are via
633 * pending intent was supplied then status and availability updates
809 * <p> Provider status updates and availability updates are deprecated
1126 * Returns the current enabled/disabled status of the given provider.
1354 * Sets mock status values for the given provider. These values will be used in place
1358 * @param status the mock status
1367 public void setTestProviderStatus(String provider, int status, Bundle extras, long updateTime) {
1369 mService.setTestProviderStatus(provider, status, extras, updateTime,
1377 * Removes any mock status values associated with the given provider.
1396 // This class is used to send Gnss status events to the client's specific thread.
1485 public void onSatelliteStatusChanged(GnssStatus status) {
1536 public void onSatelliteStatusChanged(GnssStatus status) {
1537 mOldGnssCallback.onSatelliteStatusChanged(status);
1634 // remove any SV status messages already in the queue
1656 * Adds a GPS status listener.
1658 * @param listener GPS status listener object to register
1688 * Removes a GPS status listener.
1690 * @param listener GPS status listener object to remove
1706 * Registers a GNSS status listener.
1708 * @param callback GNSS status listener object to register
1721 * Registers a GNSS status listener.
1723 * @param callback GNSS status listener object to register
1753 * Removes a GNSS status listener.
1755 * @param callback GNSS status listener object to remove
1770 * Registers a GNSS status listener.
1772 * @param callback GNSS status listener object to register
1784 * Registers a GNSS status listener.
1786 * @param callback GNSS status listener object to register
1815 * Removes a GNSS status listener.
1817 * @param callback GNSS status listener object to remove
2119 public void onStatusChanged(int status) {
2120 callback.onStatusChanged(status);
2175 * Retrieves information about the current status of the GPS engine.
2180 * status information, or pass null to create a new {@link GpsStatus} object.
2182 * @param status object containing GPS status details, or null.
2183 * @return status object containing updated GPS status.
2187 public GpsStatus getGpsStatus(GpsStatus status) {
2188 if (status == null) {
2189 status = new GpsStatus();
2192 // onGpsStatusChanged(). Return an empty status to maintain backwards compatibility.
2194 status.setStatus(mGnssStatus, mTimeToFirstFix);
2196 return status;