Searched defs:status (Results 26 - 50 of 693) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dbitstream.h53 PV_STATUS status = PV_SUCCESS; local
59 status = BitstreamFillCache(stream);
63 return status;
71 PV_STATUS status = PV_SUCCESS; local
76 status = BitstreamFillCache(stream);
79 return status;
85 PV_STATUS status = PV_SUCCESS; local
90 status = BitstreamFillCache(stream);
93 return status;
/frameworks/av/services/audioflinger/
H A DAudioHwDevice.cpp53 status_t status = outputStream->open(handle, devices, config, address); local
55 if (status != NO_ERROR) {
64 "channelMask %#x, status %d",
68 status);
78 status = outputStream->open(handle, devices, &originalConfig, address);
79 if (status != NO_ERROR) {
81 status);
93 return status;
/frameworks/base/core/java/android/app/timezone/
H A DCallback.java79 public abstract void onFinished(@AsyncResultCode int status); argument
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHealthCallback.java36 * @param status Success or failure of the registration or unregistration calls. Can be one of
44 int status) {
45 Log.d(TAG, "onHealthAppConfigurationStatusChange: " + config + "Status: " + status);
43 onHealthAppConfigurationStatusChange(BluetoothHealthAppConfiguration config, int status) argument
/frameworks/base/core/java/android/hardware/
H A DCameraStatus.java25 * Contains the name of the camera device, and its current status, one of the
32 public int status; field in class:CameraStatus
42 out.writeInt(status);
47 status = in.readInt();
54 CameraStatus status = new CameraStatus();
55 status.readFromParcel(in);
57 return status;
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardwareCallback.java49 * @param status One of {@link GeofenceHardware#GEOFENCE_SUCCESS},
55 public void onGeofenceAdd(int geofenceId, int status) { argument
62 * @param status One of {@link GeofenceHardware#GEOFENCE_SUCCESS},
66 public void onGeofenceRemove(int geofenceId, int status) { argument
73 * @param status One of {@link GeofenceHardware#GEOFENCE_SUCCESS},
77 public void onGeofencePause(int geofenceId, int status) { argument
84 * @param status One of {@link GeofenceHardware#GEOFENCE_SUCCESS},
89 public void onGeofenceResume(int geofenceId, int status) { argument
/frameworks/base/core/java/android/net/
H A DIpSecSpiResponse.java22 * This class is used to return an SPI and corresponding status from the IpSecService to an
31 public final int status; field in class:IpSecSpiResponse
42 out.writeInt(status);
48 status = inStatus;
55 throw new IllegalArgumentException("Valid status implies other args must be provided");
57 status = inStatus;
63 status = in.readInt();
H A DIpSecTransformResponse.java22 * This class is used to return an IpSecTransform resource Id and and corresponding status from the
31 public final int status; field in class:IpSecTransformResponse
41 out.writeInt(status);
47 throw new IllegalArgumentException("Valid status implies other args must be provided");
49 status = inStatus;
54 status = inStatus;
59 status = in.readInt();
H A DIpSecTunnelInterfaceResponse.java22 * This class is used to return an IpSecTunnelInterface resource Id and and corresponding status
32 public final int status; field in class:IpSecTunnelInterfaceResponse
42 out.writeInt(status);
49 throw new IllegalArgumentException("Valid status implies other args must be provided");
51 status = inStatus;
57 status = inStatus;
63 status = in.readInt();
/frameworks/base/core/java/android/webkit/
H A DWebViewProviderResponse.java26 public WebViewProviderResponse(PackageInfo packageInfo, int status) { argument
28 this.status = status;
45 status = in.readInt();
56 out.writeInt(status);
60 public final int status; field in class:WebViewProviderResponse
/frameworks/base/core/jni/
H A Dandroid_media_AudioErrors.h23 // status codes used by JAVA APIs. Translation from native error codes is done by
38 static inline jint nativeToJavaStatus(status_t status) { argument
39 switch (status) {
/frameworks/base/libs/hwui/
H A DDeviceInfo.cpp82 status_t status = SurfaceComposerClient::getDisplayInfo(dtoken, &displayInfo); local
83 LOG_ALWAYS_FATAL_IF(status, "Failed to get display info, error %d", status);
H A DImage.cpp43 GLenum status = GL_NO_ERROR; local
44 while ((status = glGetError()) != GL_NO_ERROR) {
45 ALOGW("Error creating image (%#x)", status);
/frameworks/base/libs/hwui/debug/
H A DGlesErrorCheckWrapper.cpp26 GLenum status = GL_NO_ERROR; local
29 while ((status = mBase.glGetError_()) != GL_NO_ERROR) {
30 lastError = status;
31 switch (status) {
49 ALOGE("GL error: 0x%x", status);
/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);
H A DLocationListener.java47 * Called when the provider status changes. This method is called when
53 * @param status {@link LocationProvider#OUT_OF_SERVICE} if the
60 * status variables.
70 void onStatusChanged(String provider, int status, Bundle extras); argument
/frameworks/base/services/backup/java/com/android/server/backup/utils/
H A DBackupObserverUtils.java53 int status) {
56 observer.onResult(packageName, status);
69 public static void sendBackupFinished(IBackupObserver observer, int status) { argument
72 observer.backupFinished(status);
52 sendBackupOnPackageResult(IBackupObserver observer, String packageName, int status) argument
/frameworks/base/telephony/java/android/telephony/mbms/
H A DInternalDownloadStatusListener.java40 @MbmsDownloadSession.DownloadStatus final int status) throws RemoteException {
50 mAppListener.onStatusUpdated(request, fileInfo, status);
39 onStatusUpdated(final DownloadRequest request, final FileInfo fileInfo, @MbmsDownloadSession.DownloadStatus final int status) argument
/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/cmds/dumpstate/
H A DDumpstateSectionReporter.h44 void setStatus(status_t status) { argument
45 status_ = status;
/frameworks/native/cmds/lshal/
H A DDebugCommand.cpp55 Status status = parseArgs(arg); local
56 if (status != OK) {
57 return status;
/frameworks/native/cmds/servicemanager/
H A Dbctest.c37 int status; local
50 status = bio_get_uint32(&reply);
54 return status;
/frameworks/native/cmds/surfacereplayer/replayer/
H A DMain.cpp103 status_t status = NO_ERROR; local
106 status = r.replay();
109 if (status == NO_ERROR) {
112 std::cerr << "Trace replayer returned error: " << status << std::endl;
/frameworks/native/libs/vr/libdisplay/
H A Ddisplay_manager_client.cpp25 auto status = InvokeRemoteMethod<DisplayManagerProtocol::GetSurfaceState>(); local
26 if (!status) {
29 status.GetErrorMessage().c_str());
32 return status;
37 auto status = InvokeRemoteMethod<DisplayManagerProtocol::GetSurfaceQueue>( local
39 if (!status) {
43 surface_id, queue_id, status.GetErrorMessage().c_str());
44 return status.error_status();
47 return {ConsumerQueue::Import(status.take())};

Completed in 295 milliseconds

1234567891011>>