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

<<11121314151617

/frameworks/native/opengl/libs/EGL/
H A DLoader.cpp364 const char* err = dlerror(); local
365 ALOGE("load_driver(%s): %s", driver_absolute_path, err?err:"unknown");
/frameworks/wilhelm/src/android/util/
H A DAacAdtsExtractor.cpp278 status_t err = mGroup->acquire_buffer(&buffer); local
279 if (err != OK) {
280 return err;
/frameworks/base/tools/aapt/
H A DCommand.cpp1881 status_t err; local
1889 err = filter.parse(bundle->getConfigurations());
1890 if (err != NO_ERROR) {
1932 err = assets->slurpFromArgs(bundle);
1933 if (err < 0) {
1943 err = buildResources(bundle, assets);
1944 if (err != 0) {
1986 err = writeResourceSymbols(bundle, assets, assets->getPackage(), true);
1989 err = writeResourceSymbols(bundle, assets, customPkg, true);
1991 if (err <
[all...]
/frameworks/av/libvideoeditor/osal/src/
H A DM4OSA_FileCommon.c82 M4OSA_ERR err = M4NO_ERROR; local
267 err = M4OSA_fileCommonGetFilename(pUrl, &pFileContext->file_name);
268 if(M4NO_ERROR != err)
273 M4OSA_DEBUG(err, "M4OSA_fileCommonOpen");
274 return err;
/frameworks/native/libs/binder/
H A DIMemory.cpp293 status_t err = remote()->transact(HEAP_ID, data, &reply); local
299 ALOGE_IF(err, "binder=%p transaction failed fd=%d, size=%ld, err=%d (%s)",
300 asBinder().get(), parcel_fd, size, err, strerror(-err));
303 ALOGE_IF(fd==-1, "cannot dup fd=%d, size=%ld, err=%d (%s)",
304 parcel_fd, size, err, strerror(errno));
/frameworks/av/media/libmedia/
H A DAudioRecord.cpp673 status_t err = obtainBuffer(&audioBuffer, &ClientProxy::kForever); local
674 if (err < 0) {
678 return ssize_t(err);
842 status_t err = obtainBuffer(&audioBuffer, requested, NULL, &nonContig); local
843 LOG_ALWAYS_FATAL_IF((err != NO_ERROR) != (audioBuffer.frameCount == 0),
844 "obtainBuffer() err=%d frameCount=%u", err, audioBuffer.frameCount);
849 if (err != NO_ERROR) {
850 if (err == TIMED_OUT || err
[all...]
H A DAudioTrack.cpp1270 status_t err = obtainBuffer(&audioBuffer, &ClientProxy::kForever); local
1271 if (err < 0) {
1275 return ssize_t(err);
1586 status_t err = obtainBuffer(&audioBuffer, requested, NULL, &nonContig); local
1587 LOG_ALWAYS_FATAL_IF((err != NO_ERROR) != (audioBuffer.frameCount == 0),
1588 "obtainBuffer() err=%d frameCount=%u", err, audioBuffer.frameCount);
1591 ALOGV("obtainBuffer(%u) returned %u = %u + %u err %d",
1592 mRemainingFrames, avail, audioBuffer.frameCount, nonContig, err);
1593 if (err !
[all...]
/frameworks/native/libs/gui/
H A DBufferQueue.cpp676 int err = NO_ERROR; local
688 status_t err = token->linkToDeath(static_cast<IBinder::DeathRecipient*>(this)); local
689 if (err == NO_ERROR) {
692 ALOGE("linkToDeath failed: %s (%d)", strerror(-err), err);
697 err = -EINVAL;
704 return err;
721 int err = NO_ERROR; local
754 err = -EINVAL;
759 err
[all...]
H A DSurfaceComposerClient.cpp483 status_t err = mClient->createSurface(name, w, h, format, flags, local
485 ALOGE_IF(err, "SurfaceComposerClient::createSurface error %s", strerror(-err));
486 if (err == NO_ERROR) {
509 status_t err = mClient->destroySurface(sid);
510 return err;
664 status_t err = s->captureScreen(display, mBufferQueue, local
667 if (err == NO_ERROR) {
668 err = mCpuConsumer->lockNextBuffer(&mBuffer);
669 if (err
[all...]
/frameworks/av/media/libstagefright/colorconversion/
H A DColorConverter.cpp102 status_t err; local
106 err = convertYUV420Planar(src, dst);
110 err = convertCbYCrY(src, dst);
114 err = convertQCOMYUV420SemiPlanar(src, dst);
118 err = convertYUV420SemiPlanar(src, dst);
122 err = convertTIYUV420PackedSemiPlanar(src, dst);
132 return err;
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp77 status_t err = mSession->linkToComposerDeath(this); local
78 ALOGE_IF(err, "linkToComposerDeath failed (%s) ", strerror(-err));
79 if (err == NO_ERROR) {
549 int err; local
551 err = clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, &spec, NULL);
552 } while (err<0 && errno == EINTR);
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dpsy_main.c193 Word16 ch, err; local
196 err = InitPsyConfigurationLong(channelBitRate,
201 if (!err) {
203 err = InitTnsConfigurationLong(bitRate, sampleRate, channels,
207 if (!err)
208 err = InitPsyConfigurationShort(channelBitRate,
212 if (!err) {
213 err = InitTnsConfigurationShort(bitRate, sampleRate, channels,
217 if (!err)
229 return(err);
[all...]
/frameworks/native/opengl/libagl/
H A Dtexture.cpp139 int err = module->lock(module, native_buffer->handle, local
386 status_t err = tex->reallocate(level, local
388 if (err != NO_ERROR)
397 status_t err = tex->reallocate(level, local
399 if (err != NO_ERROR)
1214 int err = copyPixels(c, *surface, 0, 0, userSurface, 0, 0, width, height);
1215 if (err) {
1216 ogles_error(c, err);
1297 int err = copyPixels(c,
1300 if (err) {
[all...]
/frameworks/av/media/libstagefright/omx/
H A DOMX.cpp205 OMX_ERRORTYPE err = local
208 if (err == OMX_ErrorNone) {
229 OMX_ERRORTYPE err = mMaster->makeComponentInstance( local
233 if (err != OMX_ErrorNone) {
268 status_t err = instance->freeNode(mMaster); local
277 return err;
/frameworks/rs/driver/
H A DrsdGL.cpp54 static const char *strerror(EGLint err) { argument
55 switch (err){
497 GLenum err = glGetError();
498 if (err != GL_NO_ERROR) {
500 snprintf(buf, sizeof(buf), "GL Error = 0x%08x, from: %s", err, msg);
505 switch (err) {
/frameworks/av/media/libstagefright/
H A DAACExtractor.cpp307 status_t err = mGroup->acquire_buffer(&buffer); local
308 if (err != OK) {
309 return err;
H A DAudioSource.cpp117 status_t err = mRecord->start(); local
118 if (err == OK) {
125 return err;
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSCompilerDriver.cpp268 Compiler::ErrorCode err = mCompiler.config(*mConfig); local
269 if (err != Compiler::kSuccess) {
271 Compiler::GetErrorString(err));
/frameworks/compile/mclinker/tools/mcld/
H A Dmain.cpp192 llvm::error_code err = llvm::sys::fs::make_absolute(output_path); local
193 if (llvm::errc::success != err) {
195 << "'! (detail: " << err.message() << ")\n";
/frameworks/av/libvideoeditor/lvpp/
H A DNativeWindowRenderer.cpp385 status_t err = anw->queueBuffer(anw, buffer->graphicBuffer().get(), -1); local
386 if (err != 0) {
387 ALOGE("queueBuffer failed with error %s (%d)", strerror(-err), -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]);

Completed in 1221 milliseconds

<<11121314151617