Searched refs:status (Results 276 - 300 of 878) sorted by relevance

<<11121314151617181920>>

/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardware.java196 * Returns current status of a hardware geofence monitoring system.
208 * @return Current status of the monitoring type.
516 public void onGeofenceAdd(int geofenceId, int status) { argument
518 if (c != null) c.onGeofenceAdd(geofenceId, status);
521 public void onGeofenceRemove(int geofenceId, int status) { argument
524 c.onGeofenceRemove(geofenceId, status);
529 public void onGeofencePause(int geofenceId, int status) { argument
532 c.onGeofencePause(geofenceId, status);
536 public void onGeofenceResume(int geofenceId, int status) { argument
538 if (c != null) c.onGeofenceResume(geofenceId, status);
[all...]
/frameworks/base/core/java/android/net/
H A DIpSecManager.java155 int status = result.status;
156 switch (status) {
166 "Unknown status returned by IpSecService: " + status);
172 throw new RuntimeException("Invalid SPI returned by IpSecService: " + status);
177 "Invalid Resource ID returned by IpSecService: " + status);
420 switch (result.status) {
428 "Unknown status returned by IpSecService: " + result.status);
[all...]
/frameworks/base/core/proto/android/service/
H A Dbattery.proto52 // Plugged status of power sources
60 // Charging status
61 BatteryStatus status = 6;
/frameworks/base/location/java/android/location/
H A DGnssMeasurementCallbackTransport.java65 public void onStatusChanged(final int status) { argument
71 callback.onStatusChanged(status);
H A DGnssNavigationMessageCallbackTransport.java67 public void onStatusChanged(final int status) { argument
73 callback.onStatusChanged(status);
/frameworks/base/media/java/android/media/audiofx/
H A DVisualizer.java129 * Internal operation status. Not returned by any method.
260 int status = SUCCESS;
263 status = native_setEnabled(enabled);
264 if (status == SUCCESS) {
268 return status;
592 int status = native_setPeriodicCapture(rate, waveform, fft);
593 if (status == SUCCESS) {
602 status = ERROR_NO_INIT;
606 return status;
/frameworks/base/telephony/java/android/telephony/
H A DIccOpenLogicalChannelResponse.java33 * Possible status values returned by open channel command.
54 public IccOpenLogicalChannelResponse(int channel, int status, byte[] selectResponse) { argument
56 mStatus = status;
83 * @return the status of the command.
/frameworks/base/telephony/java/android/telephony/ims/
H A DImsServiceProxy.java87 public void imsStatusChanged(int slotId, int feature, int status) throws RemoteException {
90 " status: " + status);
92 mFeatureStatusCached = status;
275 Integer status = retrieveFeatureStatus();
277 if (status == null) {
280 // Cache only non-null value for feature status.
281 mFeatureStatusCached = status;
283 Log.i(LOG_TAG, "getFeatureStatus - returning " + status);
284 return status;
[all...]
/frameworks/base/telephony/java/com/android/ims/internal/uce/presence/
H A DPresCmdStatus.java66 * Gets the status code.
73 * Sets the status code.
76 public void setStatus(StatusCode status) { argument
77 this.mStatus = status;
/frameworks/native/cmds/bugreportz/
H A Dbugreportz_test.cpp78 int status = bugreportz(read_fd_, show_progress); local
84 ASSERT_EQ(0, status) << "bugrepotz() call failed (stdout: " << stdout_ << ")";
/frameworks/native/libs/gui/bufferqueue/1.0/
H A DH2BGraphicBufferProducer.cpp180 status_t status = l->unflatten(constBuffer, size, constFds, numFds); local
185 return status == NO_ERROR;
428 status_t status = rect.unflatten(buffer, size); local
429 if (status != NO_ERROR) {
430 return status;
508 status_t status = unflattenFence(&(t->fence), nh, local
510 if (status != NO_ERROR) {
511 return status;
754 status_t status = flatten( local
758 if (status !
839 status_t status = flatten( local
1106 status_t status = toStatusT(mBase->cancelBuffer( local
[all...]
/frameworks/native/services/nativeperms/
H A Dnativeperms.cpp72 android::status_t status = android::defaultServiceManager()->addService( local
74 CHECK(status == android::OK) << "Failed to get IPermissionController "
/frameworks/native/services/vr/virtual_touchpad/
H A DVirtualTouchpadClient.cpp44 status_t status = service_->detach().transactionError(); local
46 return status;
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/
H A DProtocolPortTupleTest.java43 * @param status Status value
46 private ByteBuffer getTestBuffer(int protocol, int port, int status) { argument
51 buffer.put((byte) status);
68 * the complete tuple data (missing status field).
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataCallResponse.java39 public final int status; field in class:DataCallResponse
75 public DataCallResponse(int status, int suggestedRetryTime, int cid, int active, String type, argument
78 this.status = status;
84 if ((status == DcFailCause.NONE.getErrorCode()) && TextUtils.isEmpty(ifname)) {
98 .append(" status=").append(status)
144 if (status == DcFailCause.NONE.getErrorCode()) {
268 "status=" + status
[all...]
/frameworks/wilhelm/src/android/
H A Dandroid_LocAVPlayer.cpp66 status_t status = mPlayer->setDataSource( local
68 if (status != NO_ERROR) {
/frameworks/wilhelm/src/itf/
H A DIAcousticEchoCancellation.cpp41 android::status_t status = thiz->mAECEffect->setEnabled((bool) thiz->mEnabled); local
42 result = android_fx_statusToResult(status);
H A DIAutomaticGainControl.cpp40 android::status_t status = thiz->mAGCEffect->setEnabled((bool) thiz->mEnabled); local
41 result = android_fx_statusToResult(status);
H A DINoiseSuppression.cpp38 android::status_t status = thiz->mNSEffect->setEnabled((bool) thiz->mEnabled); local
39 result = android_fx_statusToResult(status);
/frameworks/av/media/libaudioclient/
H A DAudioEffect.cpp141 ALOGE("set(): AudioFlinger could not create effect %s / %s, status: %d",
165 ALOGV("set() %p OK effect: %s id: %d status %d enabled %d pid %d", this, mDescriptor.name, mId,
219 status_t status = NO_ERROR; local
225 status = mIEffect->enable();
228 status = mIEffect->disable();
230 if (status == NO_ERROR) {
234 return status;
244 ALOGV("command() bad status %d", mStatus);
258 status_t status = mIEffect->command(cmdCode, cmdSize, cmdData, replySize, replyData); local
261 if (status
362 status_t status = DEAD_OBJECT; local
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DAnyMotionDetector.java43 /** Stationary status is unknown due to insufficient orientation measurements. */
73 /** The maximum duration we will hold a wakelock to determine stationary status. */
144 * Acquire accel data until we determine AnyMotion status.
209 int status = RESULT_UNKNOWN;
230 status = getStationaryStatus();
231 if (DEBUG) Slog.d(TAG, "getStationaryStatus() returned " + status);
232 if (status != RESULT_UNKNOWN) {
239 Slog.d(TAG, "Moved from STATE_ACTIVE to STATE_INACTIVE. status = " + status);
255 return status;
[all...]
/frameworks/av/camera/ndk/impl/
H A DACameraManager.h80 virtual binder::Status onStatusChanged(int32_t status, const String16& cameraId);
137 void onStatusChanged(int32_t status, const String8& cameraId);
138 void onStatusChangedLocked(int32_t status, const String8& cameraId);
139 // Utils for status
140 static bool validStatus(int32_t status);
141 static bool isStatusAvailable(int32_t status);
143 // Map camera_id -> status
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattServer.java69 public void onServerRegistered(int status, int serverIf) {
70 if (DBG) Log.d(TAG, "onServerRegistered() - status=" + status
88 public void onServerConnectionState(int status, int serverIf,
90 if (DBG) Log.d(TAG, "onServerConnectionState() - status=" + status
93 mCallback.onConnectionStateChange(mAdapter.getRemoteDevice(address), status,
106 public void onServiceAdded(int status, BluetoothGattService service) {
108 + " uuid=" + service.getUuid() + " status=" + status);
614 sendResponse(BluetoothDevice device, int requestId, int status, int offset, byte[] value) argument
[all...]
/frameworks/base/services/core/java/com/android/server/om/
H A DOverlayManagerShellCommand.java121 String status;
124 status = "[x]";
127 status = "[ ]";
130 status = "---";
133 out.println(String.format("%s %s", status, oi.packageName));
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDeviceList.java88 mDevices.get(device.deviceAddress).status = device.status;
119 public void updateStatus(String deviceAddress, int status) { argument
123 d.status = status;

Completed in 924 milliseconds

<<11121314151617181920>>