Searched defs:error (Results 1 - 25 of 194) sorted by path

12345678

/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/preprocessing/
H A DPreProcessing.cpp781 goto error;
789 goto error;
794 goto error;
823 goto error;
829 error:
965 int error; local
970 &error);
973 speex_resampler_strerror(error));
980 &error);
983 speex_resampler_strerror(error));
[all...]
/frameworks/av/media/libmedia/
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 DMetadata.cpp145 bool error = false; local
151 error = true;
156 error = true;
163 return !error;
/frameworks/av/media/libmediaplayerservice/
H A DSharedLibrary.cpp51 const char *error = dlerror(); local
52 return error ? error : "No errors or unknown error";
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.cpp171 // any error signaling will occur.
284 status_t error = local
288 ALOGW_IF(error != NO_ERROR,
289 "[%s] failed to connect to native window, error=%d",
290 mComponentName.c_str(), error);
719 ALOGE("Stream error for %s (err=%d), EOS %s queued",
/frameworks/av/media/libstagefright/
H A DACodec.cpp67 // returns true if err is a recognized OMX error code.
68 // as OMX error is OMX_S32, this is an int32_t type
73 // converts an OMX error to a status_t
78 return NAME_NOT_FOUND; // can trigger illegal argument error for provided names.
669 // XXX: Currently this error is logged, but not fatal.
688 ALOGE("error authenticating native window: %d", err);
838 // If an error occurred while dequeuing we need to cancel any buffers
850 status_t error = cancelBufferToNativeWindow(info); local
852 err = error;
1890 ALOGW("did not set AudioAndroidAacPresentation due to error
3878 signalError(OMX_ERRORTYPE error, status_t internalError) argument
[all...]
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Daacenc.c43 int error; local
54 error = 0;
83 error = 1;
86 if(!error)
92 error = 1;
96 if (!error) {
98 error = (PsyNew(&hAacEnc->psyKernel, MAX_CHANNELS, pMemOP) ||
102 if (!error) {
104 error = QCOutNew(&hAacEnc->qcOut,MAX_CHANNELS, pMemOP);
107 if (!error) {
[all...]
H A Daacenc_core.c62 Word32 error = 0; local
68 error=1;
71 if (!error) {
75 if (!error) {
76 error = InitElementInfo (config.nChannelsOut,
80 if (!error) {
84 if (!error) {
89 error = psyMainInit(&hAacEnc->psyKernel,
98 if(!error) {
103 if (!error) {
[all...]
H A Dchannel_map.c32 Word16 error=0; local
57 error=1;
60 return error;
66 Word16 error; local
67 error = 0;
80 error=4;
83 return error;
93 Word16 error; local
94 error = 0;
120 error
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dcod_amr.h166 Word16 mem_err[M + L_SUBFR], *error; member in struct:__anon376
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A DvoAMRWBEnc.c195 Word16 error[M + L_SUBFR]; /* error of quantization */ local
260 Set_zero(error, L_FILT16k); /* set next sample to zero */
261 Decim_12k8(error, L_FILT16k, new_speech + L_FRAME, code);
745 * |------| | |--------| error[n] |------| *
757 error[i] = vo_sub(speech[i + i_subfr - M], st->mem_syn[i]);
765 Syn_filt(p_Aq, &exc[i_subfr], error + M, L_SUBFR, error, 0);
769 Residu_opt(Ap, error + M, xn, L_SUBFR);
771 Residu(Ap, error
[all...]
/frameworks/av/media/libstagefright/timedtext/
H A DTimedTextPlayer.cpp294 void TimedTextPlayer::notifyError(int error) { argument
297 ALOGE("%s(error=%d): Listener is NULL.", __FUNCTION__, error);
300 listener->sendEvent(MEDIA_INFO, MEDIA_INFO_TIMED_TEXT_ERROR, error);
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DJpegCompressor.cpp81 // Set up error management
83 JpegError error; local
84 error.parent = this;
86 mCInfo.err = jpeg_std_error(&error);
193 JpegError *error = static_cast<JpegError*>(cinfo->err); local
194 error->parent->mJpegErrorInfo = cinfo;
/frameworks/base/cmds/bmgr/src/com/android/commands/bmgr/
H A DBmgr.java328 public void restoreFinished(int error) { argument
329 System.out.println("restoreFinished: " + error);
/frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
H A DTestCaseCollector.java114 mTestCases.add(error(clazz, "InstantiationException: could not instantiate " +
117 mTestCases.add(error(clazz, "IllegalAccessException: could not instantiate " +
122 private UiAutomatorTestCase error(Class<?> clazz, final String message) { method in class:TestCaseCollector
/frameworks/base/core/java/android/animation/
H A DKeyframeSet.java159 public static PathKeyframes ofPath(Path path, float error) { argument
160 return new PathKeyframes(path, error);
H A DPathKeyframes.java25 * The line segments are recursively divided until there is less than 1/2 pixel error
52 public PathKeyframes(Path path, float error) { argument
56 mKeyframeData = path.approximate(error);
/frameworks/base/core/java/android/app/backup/
H A DRestoreObserver.java74 * @param error Zero on success; a nonzero error code if the restore operation
77 public void restoreFinished(int error) { argument
H A DRestoreSession.java49 * @return Zero on success, nonzero on error. The observer's restoreSetsAvailable()
69 * @return Zero on success; nonzero on error. The observer will only receive
98 * @return Zero on success, nonzero on error. The observer will only receive
132 * @return Zero on success; nonzero on error. The observer will only receive
234 public void restoreFinished(int error) { argument
236 mHandler.obtainMessage(MSG_RESTORE_FINISHED, error, 0));
/frameworks/base/core/java/android/bluetooth/le/
H A DBluetoothLeAdvertiser.java272 // Post internal error if registration failed.
357 private void postStartFailure(final AdvertiseCallback callback, final int error) { argument
361 callback.onStartFailure(error);
/frameworks/base/core/java/android/content/
H A DContentResolver.java234 "authentication-error",
235 "io-error",
236 "parse-error",
240 "internal-error",
244 public static String syncErrorToString(int error) { argument
245 if (error < 1 || error > SYNC_ERROR_NAMES.length) {
246 return String.valueOf(error);
248 return SYNC_ERROR_NAMES[error - 1];
252 public static int syncErrorStringToInt(String error) { argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java1237 final String error = validateName(packageName, true);
1238 if (error != null) {
1240 "Invalid manifest package: " + error);
1249 final String error = validateName(splitName, false);
1250 if (error != null) {
1252 "Invalid manifest split: " + error);
5033 public final int error; field in class:PackageParser.PackageParserException
5035 public PackageParserException(int error, String detailMessage) { argument
5037 this.error = error;
5040 PackageParserException(int error, String detailMessage, Throwable throwable) argument
[all...]

Completed in 281 milliseconds

12345678