Searched refs:error (Results 1 - 25 of 524) sorted by path

1234567891011>>

/frameworks/av/camera/ndk/impl/
H A DACameraDevice.cpp630 ALOGE("%s: camera device has encountered a serious error", __FUNCTION__);
637 CameraDevice::setCameraDeviceErrorLocked(camera_status_t error) { argument
639 mError = error;
673 // erase the old error since it's no longer useful
676 // Normal requests hasn't catched up error frames, just break
708 // Handle buffer error
821 ALOGE("%s: Cannot find error code!", __FUNCTION__);
1133 ALOGD("Device error received, code %d, frame number %" PRId64 ", request ID %d, subseq ID %d",
1161 ALOGE("Unknown error from camera device: %d", errorCode);
H A DACameraDevice.h94 // device goes into fatal error state after this
95 void setCameraDeviceErrorLocked(camera_status_t error);
/frameworks/av/drm/libmediadrm/
H A DAndroid.mk29 LOCAL_CFLAGS += -Werror -Wno-error=deprecated-declarations -Wall
H A DSharedLibrary.cpp50 const char *error = dlerror(); local
51 return error ? error : "No errors or unknown error";
/frameworks/av/include/camera/ndk/
H A DNdkCameraDevice.h55 /// Enum for ACameraDevice_ErrorStateCallback error code
75 * The camera device has encountered a fatal error.
81 * The camera service has encountered a fatal error.
101 * Camera device error state callbacks to be used in {@link ACameraDevice_stateCallbacks}.
106 * @param error The error code describes the cause of this error callback. See the folowing
115 typedef void (*ACameraDevice_ErrorStateCallback)(void* context, ACameraDevice* device, int error);
138 * The function called when a camera device has encountered a serious error.
145 * after this error i
[all...]
/frameworks/av/include/media/
H A DIRemoteDisplayClient.h42 // Error: An unknown / generic error occurred.
57 // It is currently an error for the display to disconnect for any other reason.
61 // or an unrecoverable error occurred and the connection was severed.
62 virtual void onDisplayError(int32_t error) = 0; // one-way
/frameworks/av/include/media/stagefright/
H A DACodec.h205 // Store |fenceFd| and set read/write flag. Log error, if there is already a fence stored.
208 // Log error, if the current fence is not a read/write fence.
216 // If |fd| is non-negative, waits for fence with |fd| and logs an error if it fails. Returns
217 // the error code or OK on success. If |fd| is negative, it returns OK
374 // gets index or sets it to 0 on error. Returns error from codec.
378 // returns the codec error.
381 // gets |params|; returns the codec error. |param| should not change on error.
386 // return OK. Otherwise, we fall back to the platform guidance and return the codec error;
[all...]
H A DMediaFilter.h139 void signalError(status_t error);
/frameworks/av/media/common_time/
H A DICommonClock.cpp325 int32_t error; local
326 status_t status = getEstimatedError(&error);
329 reply->writeInt32(error);
/frameworks/av/media/img_utils/src/
H A DFileInput.cpp55 int error = ::ferror(mFp); local
56 if (error != 0) {
57 ALOGE("%s: Error %d occurred while reading file %s.", __FUNCTION__, error, mPath.string());
H A DFileOutput.cpp55 int error = ::ferror(mFp); local
56 if (error != 0) {
57 ALOGE("%s: Error %d occurred while writing file %s.", __FUNCTION__, error, mPath.string());
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c293 ALOGW("EffectCreate() init error: %d", ret);
312 ALOGW("EffectCreate() library %s: could not create fx %s, error %d", l->name, d->name, ret);
540 goto error;
546 goto error;
551 goto error;
557 goto error;
579 error:
/frameworks/av/media/libeffects/preprocessing/
H A DPreProcessing.cpp833 goto error;
844 goto error;
849 goto error;
878 goto error;
884 error:
1007 int error; local
1012 &error);
1015 speex_resampler_strerror(error));
1022 &error);
1025 speex_resampler_strerror(error));
[all...]
/frameworks/av/media/libmedia/
H A DAndroid.mk10 LOCAL_CFLAGS += -Werror -Wno-error=deprecated-declarations -Wall
99 LOCAL_CFLAGS += -Werror -Wno-error=deprecated-declarations -Wall
H A DAudioTrackShared.cpp282 status_t error = errno; // clock_gettime can affect errno local
300 switch (error) {
305 // FIXME these error/non-0 status are being dropped
308 status = error;
309 ALOGE("%s unexpected error %s", __func__, strerror(status));
508 ALOGE("%s unexpected error %s", __func__, strerror(status));
542 // FIXME Should return an error status
565 // FIXME Should return an error status
H A DIRemoteDisplayClient.cpp60 void onDisplayError(int32_t error) argument
64 data.writeInt32(error);
95 int32_t error = data.readInt32(); local
96 onDisplayError(error);
H A DMemoryLeakTrackUtil.cpp43 #error "Unsupported ABI"
H A DMetadata.cpp145 bool error = false; local
151 error = true;
156 error = true;
163 return !error;
/frameworks/av/media/libmediaplayerservice/
H A DAndroid.mk58 LOCAL_CFLAGS += -Werror -Wno-error=deprecated-declarations -Wall
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.cpp164 ALOGE("Decoder (%s) reported error : 0x%x",
217 // reconnect to the new surface on error as MPS::Client will expect to
283 // any error signaling will occur.
418 status_t error = local
420 ALOGW_IF(error != NO_ERROR,
421 "[%s] failed to connect to native window, error=%d",
422 mComponentName.c_str(), error);
477 // in the renderer. We signal to the player the error so it can shutdown/release the
737 // when there is an error (including EOS)
836 ALOGE("Stream error fo
[all...]
/frameworks/av/media/libstagefright/
H A DACodec.cpp76 // returns true if err is a recognized OMX error code.
77 // as OMX error is OMX_S32, this is an int32_t type
82 // converts an OMX error to a status_t
87 return NAME_NOT_FOUND; // can trigger illegal argument error for provided names.
971 // XXX: Currently this error is logged, but not fatal.
1147 // If an error occurred while dequeuing we need to cancel any buffers
1160 status_t error = cancelBufferToNativeWindow(info); local
1162 err = error;
1254 status_t error = cancelBufferToNativeWindow(info); local
1256 err = error;
5260 signalError(OMX_ERRORTYPE error, status_t internalError) argument
[all...]
H A DAndroid.mk126 LOCAL_CFLAGS += -Wno-multichar -Werror -Wno-error=deprecated-declarations -Wall
H A DMPEG4Writer.cpp685 // size limit, treat it as an error.
957 // Do not write out movie header on error.
1098 #error "PROPERTY_VALUE_MAX must be at least 5"
1405 // Add 1024 bytes as error tolerance
2786 // Do not consider ERROR_END_OF_STREAM an error
H A DSurfaceUtils.cpp90 ALOGE("error authenticating native window: %s (%d)", strerror(-err), -err);
132 ALOGE("error pushing blank frames: api_disconnect failed: %s (%d)", strerror(-err), -err);
138 ALOGE("error pushing blank frames: api_connect failed: %s (%d)", strerror(-err), -err);
147 goto error;
155 ALOGE("error pushing blank frames: MIN_UNDEQUEUED_BUFFERS query "
157 goto error;
163 ALOGE("error pushing blank frames: set_buffer_count failed: %s (%d)", strerror(-err), -err);
164 goto error;
174 ALOGE("error pushing blank frames: dequeueBuffer failed: %s (%d)",
185 ALOGE("error pushin
[all...]
H A DUtils.cpp1434 #error "PROPERTY_VALUE_MAX must be at least 8"

Completed in 1646 milliseconds

1234567891011>>