Searched defs:status (Results 201 - 225 of 461) sorted by path

1234567891011>>

/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DPackageManagerTests.java326 String status = Environment.getExternalStorageState();
327 if (!status.equals(Environment.MEDIA_MOUNTED)) {
1086 boolean status = true; field in class:PackageManagerTests.SdMountReceiver
1110 status = false;
1121 boolean status = true; field in class:PackageManagerTests.SdUnMountReceiver
1144 status = false;
/frameworks/base/drm/jni/
H A Dandroid_drm_DrmManagerClient.cpp683 jobject status = GetConvertedStatus(env, pDrmConvertedStatus); local
689 return status;
699 jobject status = GetConvertedStatus(env, pDrmConvertedStatus); local
702 return 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;
H A DDisplayEventDispatcher.cpp44 ALOGW("Failed to initialize display event receiver, status=%d", result);
77 status_t status = mReceiver.requestNextVsync(); local
78 if (status) {
79 ALOGW("Failed to request next vsync, status=%d", status);
80 return status;
143 ALOGW("Failed to get events from display event dispatcher, status=%d", status_t(n));
/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,
H A DImage.cpp43 GLenum status = GL_NO_ERROR; local
44 while ((status = glGetError()) != GL_NO_ERROR) {
45 ALOGW("Error creating image (%#x)", status);
H A DLayerRenderer.cpp376 bool status = false; local
447 status = true;
459 return status;
H A DOpenGLRenderer.cpp2154 bool status; local
2167 status = fontRenderer.renderPosText(&paintCopy, clip, glyphs, count, x, y,
2170 status = fontRenderer.renderPosText(paint, clip, glyphs, count, x, y,
2174 if ((status || drawOpMode != DrawOpMode::kImmediate) && hasActiveLayer) {
H A DPixelBuffer.cpp135 GLboolean status = glUnmapBuffer(GL_PIXEL_UNPACK_BUFFER); local
136 if (status == GL_FALSE) {
H A DProgram.cpp57 GLint status; local
58 glGetProgramiv(mProgramId, GL_LINK_STATUS, &status);
59 if (status != GL_TRUE) {
138 GLint status; local
139 glGetShaderiv(shader, GL_COMPILE_STATUS, &status);
140 if (status != GL_TRUE) {
H A DReadback.cpp148 GLenum status = GL_NO_ERROR; local
149 while ((status = glGetError()) != GL_NO_ERROR) {
150 ALOGW("Error creating image (%#x)", status);
/frameworks/base/libs/hwui/debug/
H A Dwrap_gles.cpp32 GLenum status = GL_NO_ERROR; local
35 while ((status = glGetError()) != GL_NO_ERROR) {
36 lastError = status;
37 switch (status) {
55 ALOGE("GL error: 0x%x", 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/hwui/tests/common/
H A DTestContext.cpp44 status_t status = SurfaceComposerClient::getDisplayInfo(dtoken, &display); local
45 LOG_ALWAYS_FATAL_IF(status, "Failed to get display info\n");
/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 DGnssMeasurementCallbackTransport.java65 public void onStatusChanged(final int status) { argument
71 callback.onStatusChanged(status);
H A DGnssMeasurementsEvent.java55 * The status of the GNSS measurements event.
65 * <p>This status will not change in the future.
87 * Reports the latest status of the GNSS Measurements sub-system.
89 public void onStatusChanged(@GnssMeasurementsStatus int status) {} argument
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 DGnssNavigationMessageCallbackTransport.java67 public void onStatusChanged(final int status) { argument
73 callback.onStatusChanged(status);
H A DGnssNavigationMessageEvent.java35 * The status of GNSS measurements event.
45 * This status will not change in the future.
76 * Returns the latest status of the GNSS Navigation Messages sub-system.
78 public void onStatusChanged(@GnssNavigationMessageStatus int status) {} argument
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 DGnssStatusCallback.java41 * Called periodically to report GNSS satellite status.
42 * @param status the current status of all satellites.
44 public void onSatelliteStatusChanged(GnssStatus status) {} argument
H A DGpsMeasurementsEvent.java39 * The system does not support tracking of GPS Measurements. This status will not change in the
74 * Returns the latest status of the GPS Measurements sub-system.
76 void onStatusChanged(int status); argument
H A DGpsNavigationMessageEvent.java36 * The system does not support tracking of GPS Navigation Messages. This status will not change
70 * Returns the latest status of the GPS Navigation Messages sub-system.
72 void onStatusChanged(int 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...]

Completed in 5235 milliseconds

1234567891011>>