Searched defs:status (Results 226 - 250 of 461) sorted by last modified time

1234567891011>>

/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DVirtualizerTest.java199 public void onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) { argument
203 Log.d(TAG,"onParameterChange, status: "+status+" p: "+p+" v: "+v);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/integration/
H A DCameraBinderTest.java291 public void onStatusChanged(int status, int cameraId) argument
293 Log.v(TAG, String.format("Camera %d has status changed to 0x%x", cameraId, status));
295 public void onTorchStatusChanged(int status, String cameraId) argument
297 Log.v(TAG, String.format("Camera %s has torch status changed to 0x%x",
298 cameraId, status));
/frameworks/base/media/tests/ScoAudioTest/src/com/android/scoaudiotest/
H A DScoAudioTest.java511 public void onInit(int status) { argument
512 // status can be either TextToSpeech.SUCCESS or TextToSpeech.ERROR.
514 if (status != TextToSpeech.SUCCESS) {
/frameworks/base/media/tests/SoundPoolTest/src/com/android/
H A DSoundPoolTest.java82 public void onLoadComplete(SoundPool soundPool, int sampleId, int status) { argument
84 if (DEBUG) Log.d(LOG_TAG, "Sample " + sampleId + " load status = " + status);
85 if (status != 0) {
86 mLoadStatus = status;
/frameworks/base/media/tests/audiotests/
H A Dshared_mem_test.cpp104 status_t status = track->initCheck(); local
105 if(status != NO_ERROR) {
/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

Completed in 4284 milliseconds

1234567891011>>