Searched defs:status (Results 176 - 200 of 461) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/bluetooth/le/
H A DBluetoothLeScanner.java356 public void onClientRegistered(int status, int clientIf) { argument
357 Log.d(TAG, "onClientRegistered() - status=" + status +
360 if (status == BluetoothGatt.GATT_SUCCESS) {
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardware.java195 * Returns current status of a hardware geofence monitoring system.
207 * @return Current status of the monitoring type.
515 public void onGeofenceAdd(int geofenceId, int status) { argument
517 if (c != null) c.onGeofenceAdd(geofenceId, status);
520 public void onGeofenceRemove(int geofenceId, int status) { argument
523 c.onGeofenceRemove(geofenceId, status);
528 public void onGeofencePause(int geofenceId, int status) { argument
531 c.onGeofencePause(geofenceId, status);
535 public void onGeofenceResume(int geofenceId, int status) { argument
537 if (c != null) c.onGeofenceResume(geofenceId, status);
[all...]
/frameworks/base/core/java/android/hardware/radio/
H A DRadioTuner.java254 * status is one of {@link #ERROR_HARDWARE_FAILURE}, {@link #ERROR_SERVER_DIED},
258 public void onError(int status) {} argument
/frameworks/base/core/java/android/print/
H A DPrinterInfo.java45 * major components, printer properties such as name, id, status,
61 /** Printer status: the printer is idle and ready to print. */
64 /** Printer status: the printer is busy printing. */
67 /** Printer status: the printer is not available. */
92 private PrinterInfo(@NonNull PrinterId printerId, @NonNull String name, @Status int status, argument
98 mStatus = status;
174 * Gets the printer status.
176 * @return The status.
228 * Check if status is valid.
230 * @param status Th
234 checkStatus(int status) argument
408 Builder(@onNull PrinterId printerId, @NonNull String name, @Status int status) argument
440 setStatus(@tatus int status) argument
[all...]
/frameworks/base/core/java/android/printservice/
H A DPrintJob.java207 * This resets the print status to null. Set the new status by using {@link #setStatus}.
326 * Sets the status of this print job. This should be a human readable, short, and translated
329 * This overrides any previously set status set via {@link #setStatus(CharSequence)},
332 * @param status The new status. If null the status will be empty.
335 public void setStatus(@Nullable CharSequence status) { argument
339 mPrintServiceClient.setStatus(mCachedInfo.getId(), status);
341 Log.e(LOG_TAG, "Error setting status fo
[all...]
/frameworks/base/core/jni/
H A Dandroid_database_CursorWindow.cpp71 status_t status = CursorWindow::create(name, cursorWindowSize, &window); local
72 if (status || !window) {
74 name.string(), cursorWindowSize, status);
86 status_t status = CursorWindow::createFromParcel(parcel, &window); local
87 if (status || !window) {
88 ALOGE("Could not create CursorWindow from Parcel due to error %d.", status);
115 status_t status = window->writeToParcel(parcel); local
116 if (status) {
118 msg.appendFormat("Could not write CursorWindow to Parcel due to error %d.", status);
126 status_t status local
140 status_t status = window->setNumColumns(columnNum); local
146 status_t status = window->allocRow(); local
404 status_t status = window->putBlob(row, column, value, len); local
426 status_t status = window->putString(row, column, valueStr, sizeIncludingNull); local
441 status_t status = window->putLong(row, column, value); local
455 status_t status = window->putDouble(row, column, value); local
469 status_t status = window->putNull(row, column); local
[all...]
H A Dandroid_view_GraphicBuffer.cpp172 status_t status = buffer->lock(LOCK_CANVAS_USAGE, rect, &bits); local
174 if (status) return JNI_FALSE;
215 status_t status = wrapper->buffer->unlock(); local
216 return status == 0 ? JNI_TRUE : JNI_FALSE;
H A Dandroid_view_InputEventReceiver.cpp123 status_t status = mInputConsumer.sendFinishedSignal(seq, handled); local
124 if (status) {
125 if (status == WOULD_BLOCK) {
139 ALOGW("Failed to send finished signal on channel '%s'. status=%d",
140 getInputChannelName(), status);
142 return status;
171 status_t status = consumeEvents(env, false /*consumeBatches*/, -1, NULL); local
173 return status == OK || status == NO_MEMORY ? 1 : 0;
179 status_t status local
236 status_t status = mInputConsumer.consume(&mInputEventFactory, local
350 status_t status = receiver->initialize(); local
373 status_t status = receiver->finishInputEvent(seq, handled); local
386 status_t status = receiver->consumeEvents(env, true /*consumeBatches*/, frameTimeNanos, local
[all...]
H A Dandroid_view_InputEventSender.cpp116 status_t status = mInputPublisher.publishKeyEvent(publishedSeq, local
120 if (status) {
121 ALOGW("Failed to send key event on channel '%s'. status=%d",
122 getInputChannelName(), status);
123 return status;
137 status_t status = mInputPublisher.publishMotionEvent(publishedSeq, local
146 if (status) {
147 ALOGW("Failed to send motion event sample on channel '%s'. status=%d",
148 getInputChannelName(), status);
149 return status;
176 status_t status = receiveFinishedSignals(env); local
191 status_t status = mInputPublisher.receiveFinishedSignal(&publishedSeq, &handled); local
253 status_t status = sender->initialize(); local
278 status_t status = sender->sendKeyEvent(seq, &event); local
287 status_t status = sender->sendMotionEvent(seq, event); local
[all...]
H A Dandroid_view_InputQueue.cpp223 status_t status = android_view_KeyEvent_toNative(env, eventObj, event); local
224 if (status) {
/frameworks/base/libs/androidfw/
H A DCursorWindow.cpp125 status_t status = parcel->writeString8(mName); local
126 if (!status) {
127 status = parcel->writeDupFileDescriptor(mAshmemFd);
129 return status;
/frameworks/base/libs/hwui/
H A DBakedOpRenderer.cpp69 int status = glCheckFramebufferStatus(GL_FRAMEBUFFER); local
70 LOG_ALWAYS_FATAL_IF(status != GL_FRAMEBUFFER_COMPLETE,
71 "framebuffer incomplete, status %d, textureId %d, size %dx%d",
72 status,
/frameworks/base/libs/hwui/renderthread/
H A DRenderThread.cpp174 status_t status = mDisplayEventReceiver->initCheck(); local
175 LOG_ALWAYS_FATAL_IF(status != NO_ERROR, "Initialization of DisplayEventReceiver "
176 "failed with status: %d", status);
186 status_t status = SurfaceComposerClient::getDisplayInfo(dtoken, &mDisplayInfo); local
187 LOG_ALWAYS_FATAL_IF(status, "Failed to get display info\n");
229 ALOGW("Failed to get events from display event receiver, status=%d", status_t(n));
268 status_t status = mDisplayEventReceiver->requestNextVsync(); local
269 LOG_ALWAYS_FATAL_IF(status != NO_ERROR,
270 "requestNextVsync failed with status
[all...]
/frameworks/base/libs/input/
H A DSpriteController.cpp167 status_t status = update.state.surfaceControl->setSize(desiredWidth, desiredHeight); local
168 if (status) {
170 status, update.state.surfaceWidth, update.state.surfaceHeight,
179 status = update.state.surfaceControl->hide();
180 if (status) {
181 ALOGE("Error %d hiding sprite surface after resize.", status);
207 status_t status = surface->lock(&outBuffer, NULL); local
208 if (status) {
209 ALOGE("Error %d locking sprite surface before drawing.", status);
233 status
257 status_t status; local
[all...]
/frameworks/base/location/java/android/location/
H A DGnssNavigationMessage.java92 * The status of GNSS measurements event.
102 * This status will not change in the future.
124 * Returns the latest status of the GNSS Navigation Messages sub-system.
126 public void onStatusChanged(@GnssNavigationMessageStatus int status) {} argument
343 * Sets the status of the navigation message.
352 * Gets a string representation of the 'status'.
H A DGnssStatus.java83 * Called periodically to report GNSS satellite status.
84 * @param status the current status of all satellites.
86 public void onSatelliteStatusChanged(GnssStatus status) {} argument
H A DGpsStatus.java105 * Event sent periodically to report GPS satellite status.
106 * Call {@link #getSatellites()} to retrieve the status for each satellite.
111 * Used for receiving notifications when GPS status has changed.
117 * Called to report changes in the GPS status.
128 * status information.
203 void setStatus(GnssStatus status, int timeToFirstFix) { argument
205 setStatus(status.mSvCount, status.mSvidWithFlags, status.mCn0DbHz, status
[all...]
/frameworks/base/location/lib/java/com/android/location/provider/
H A DFusedLocationHardware.java62 public void onStatusChanged(int status) {
63 dispatchStatus(status);
287 int status) {
292 mStatus = status;
357 private void dispatchStatus(int status) { argument
367 new MessageCommand(entry.getKey(), null /*locations*/, null, 0, status));
282 MessageCommand( FusedLocationHardwareSink sink, Location[] locations, String data, int capabilities, int status) argument
/frameworks/base/location/tests/locationtests/src/android/location/
H A DGpsStatusTest.java167 private static void verifyIsEmpty(GpsStatus status) { argument
168 verifySatelliteCount(status, 0);
169 verifyTtff(status, 0);
172 private static void verifySatelliteCount(GpsStatus status, int expectedCount) { argument
174 for (GpsSatellite s : status.getSatellites()) {
180 private void verifySatellites(GpsStatus status) { argument
181 verifySatelliteCount(status, mCount);
182 verifySatellites(status, mCount, mPrns, mCn0s, mElevations, mAzimuth, mEphemerisMask,
187 GpsStatus status,
198 GpsSatellite satellite = getSatellite(status, pr
186 verifySatellites( GpsStatus status, int count, int[] prns, float[] cn0s, float[] elevations, float[] azimuth, int ephemerisMask, int almanacMask, int usedInFixMask) argument
225 verifyTtff(GpsStatus status, int expectedTtff) argument
235 set(GpsStatus status, int ttff) argument
242 set(GpsStatus status, GpsStatus statusToSet) argument
249 setSatellites(GpsStatus status) argument
254 set( GpsStatus status, int count, int[] prns, float[] cn0s, float[] elevations, float[] azimuth, int ephemerisMask, int almanacMask, int usedInFixMask) argument
344 getSatellite(GpsStatus status, int prn) argument
[all...]
/frameworks/base/media/java/android/media/audiofx/
H A DEqualizer.java380 * @param status status of the set parameter operation.
385 void onParameterChange(Equalizer effect, int status, int param1, int param2, int value); argument
396 public void onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) { argument
422 l.onParameterChange(Equalizer.this, status, p1, p2, v);
H A DVirtualizer.java212 int status = getParameter(paramsConverter.array(), result);
215 + Integer.toHexString(deviceType) + ") returns " + status);
218 if (status >= 0) {
239 } else if (status == AudioEffect.ERROR_BAD_VALUE) {
245 checkStatus(status);
248 Log.e(TAG, "unexpected status code " + status
438 int status = setParameter(PARAM_FORCE_VIRTUALIZATION_MODE, internalDevice);
440 if (status >= 0) {
442 } else if (status
500 onParameterChange(Virtualizer effect, int status, int param, short value) argument
511 onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) argument
[all...]
/frameworks/base/media/java/android/media/midi/
H A DMidiDeviceServer.java67 // for reporting device status
78 * Called to notify when an our device status has changed
80 * @param status the {@link MidiDeviceStatus} for the device
82 public void onDeviceStatusChanged(MidiDeviceServer server, MidiDeviceStatus status); argument
334 MidiDeviceStatus status = new MidiDeviceStatus(mDeviceInfo, mInputPortOpen,
337 mCallback.onDeviceStatusChanged(this, status);
340 mMidiManager.setDeviceStatus(mServer, status);
H A DMidiManager.java106 public void onDeviceStatusChanged(MidiDeviceStatus status) { argument
108 final MidiDeviceStatus statusF = status;
115 mCallback.onDeviceStatusChanged(status);
141 * Called to notify when the status of a MIDI device has changed
143 * @param status a {@link MidiDeviceStatus} for the changed device
145 public void onDeviceStatusChanged(MidiDeviceStatus status) { argument
/frameworks/base/media/java/android/media/soundtrigger/
H A DSoundTriggerDetector.java187 public abstract void onAvailabilityChanged(int status); argument
310 public void onError(int status) { argument
311 Slog.d(TAG, "onError()" + status);
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DBassBoostTest.java202 public void onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) { argument
206 Log.d(TAG,"onParameterChange, status: "+status+" p: "+p+" v: "+v);

Completed in 8675 milliseconds

1234567891011>>