Searched refs:err (Results 301 - 325 of 409) sorted by relevance

<<11121314151617

/frameworks/av/media/libstagefright/codecs/vorbis/dec/
H A DSoftVorbis.cpp356 int err = vorbis_dsp_synthesis(mState, &pack, 1); local
357 if (err != 0) {
360 ALOGV("vorbis_dsp_synthesis returned %d", err);
362 ALOGW("vorbis_dsp_synthesis returned %d", err);
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp659 int err = checkFormat(colorType, internalformat, type); local
660 if (err)
661 return err;
668 err = -1;
684 err = -1;
691 return err;
707 int err = checkFormat(colorType, format, type); local
708 if (err)
709 return err;
/frameworks/base/core/jni/
H A Dandroid_os_Debug.cpp174 int err = memtrack_proc_get(p, pid); local
175 if (err != 0) {
176 ALOGW("failed to get memory consumption info: %d", err);
177 return err;
219 int err = read_memtrack_memory(p, pid, graphics_mem); local
221 return err;
1000 int err = memtrack_init(); local
1001 if (err != 0) {
1003 ALOGE("failed to load memtrack module: %d", err);
H A Dandroid_util_Process.cpp58 // For both of these, err should be in the errno range (positive), not a status_t (negative)
60 static void signalExceptionForPriorityError(JNIEnv* env, int err) argument
62 switch (err) {
81 static void signalExceptionForGroupError(JNIEnv* env, int err) argument
83 switch (err) {
252 int err = set_sched_policy(t_pid, sp); local
253 if (err != NO_ERROR) {
254 signalExceptionForGroupError(env, -err);
/frameworks/base/tools/preload/
H A DPrintCsv.java36 System.err.println("Usage: PrintCsv [compiled log file]");
H A DProc.java143 System.err.println("Warning: An operation ended on " + name
H A DWritePreloadedClassFile.java45 System.err.println("Usage: WritePreloadedClassFile [compiled log]");
/frameworks/native/opengl/tools/glgen/src/
H A DGenerateEGL.java75 System.err.println("Unknown flag: " + args[aidx]);
H A DGenerateGLES.java74 System.err.println("Unknown flag: " + args[aidx]);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DGenericSource.h164 void notifyPreparedAndCleanup(status_t err);
165 void onSecureDecodersInstantiated(status_t err);
/frameworks/av/media/libstagefright/
H A DTimedEventQueue.cpp272 status_t err = mQueueHeadChangedCondition.waitRelative( local
275 if (!timeoutCapped && err == -ETIMEDOUT) {
H A DMPEG2TSWriter.cpp371 status_t err = mSource->start(); local
372 if (err != OK) {
388 status_t err = mSource->read(&buffer); local
390 if (err != OK && err != INFO_FORMAT_CHANGED) {
397 notify->setInt32("status", err);
402 if (err == OK) {
H A DWAVExtractor.cpp424 status_t err = mGroup->acquire_buffer(&buffer); local
425 if (err != OK) {
426 return err;
/frameworks/av/media/libstagefright/tests/
H A DSurfaceMediaSource_test.cpp296 GLenum err = glGetError(); local
297 if (err != GL_NO_ERROR) {
298 msg += String8::format("error reading pixel: %#x", err);
299 while ((err = glGetError()) != GL_NO_ERROR) {
300 msg += String8::format(", %#x", err);
609 status_t err = mSource->read(&buffer);
610 if (err != OK) {
611 return err;
/frameworks/base/core/java/android/nfc/tech/
H A DMifareClassic.java603 int err = mTag.getTagService().setTimeout(TagTechnology.MIFARE_CLASSIC, timeout);
604 if (err != ErrorCodes.SUCCESS) {
/frameworks/native/cmds/service/
H A Dservice.cpp48 status_t err = service->transact(IBinder::INTERFACE_TRANSACTION, data, &reply); local
49 if (err == NO_ERROR) {
/frameworks/native/opengl/libagl/
H A DTextureObjectManager.cpp262 status_t err = mTextures.add(name, result); local
263 if (err < 0)
/frameworks/native/opengl/tests/finish/
H A Dfinish.cpp55 status_t err = EGLUtils::selectConfigForNativeWindow( local
57 if (err) {
/frameworks/native/services/surfaceflinger/tests/
H A DTransaction_test.cpp72 String8 err(String8::format("pixel @ (%3d, %3d): "
75 EXPECT_EQ(String8(), err); local
/frameworks/base/tools/aapt/
H A DStringPool.cpp216 status_t err = addStyleSpan(idx, spans[i]);
217 if (err != NO_ERROR) {
218 return err;
369 status_t err = writeStringBlock(pool); local
370 return err == NO_ERROR ? pool : NULL;
H A DXMLNode.cpp563 status_t err = root->flatten(rsc, !keepComments, false); local
564 if (err != NO_ERROR) {
565 return err;
567 err = outTree->setTo(rsc->getData(), rsc->getSize(), true);
568 if (err != NO_ERROR) {
569 return err;
975 status_t err = mChildren.itemAt(i)->parseValues(assets, table);
976 if (err != NO_ERROR) {
1025 status_t err = mChildren.itemAt(i)->assignResourceIds(assets, table);
1026 if (err < NO_ERRO
[all...]
/frameworks/compile/libbcc/lib/Support/
H A Dsha1.c336 uint8_t err; local
369 err = 0;
371 err |= digest[k]-
373 if (err)
435 uint8_t err; local
/frameworks/av/media/libmedia/
H A DAudioTrack.cpp1425 status_t err = obtainBuffer(&audioBuffer, local
1427 if (err < 0) {
1431 return ssize_t(err);
1743 status_t err = obtainBuffer(&audioBuffer, requested, NULL, &nonContig); local
1744 LOG_ALWAYS_FATAL_IF((err != NO_ERROR) != (audioBuffer.frameCount == 0),
1745 "obtainBuffer() err=%d frameCount=%zu", err, audioBuffer.frameCount);
1748 ALOGV("obtainBuffer(%u) returned %zu = %zu + %zu err %d",
1749 mRemainingFrames, avail, audioBuffer.frameCount, nonContig, err);
1750 if (err !
[all...]
/frameworks/native/opengl/libs/EGL/
H A DeglApi.cpp495 int err = native_window_set_buffers_format(window, format); local
496 if (err != 0) {
498 strerror(-err), err);
871 EGLint err = EGL_SUCCESS; local
874 err = cnx->egl.eglGetError();
876 if (err == EGL_SUCCESS) {
877 err = egl_tls_t::getError();
879 return err;
/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG4AudioAssembler.cpp456 status_t err = parseStreamMuxConfig( local
461 if (err == ERROR_UNSUPPORTED) {
470 CHECK_EQ(err, (status_t)NO_ERROR);

Completed in 4907 milliseconds

<<11121314151617