Searched refs:err (Results 401 - 425 of 595) sorted by relevance

<<11121314151617181920>>

/frameworks/rs/driver/
H A DrsdGL.cpp49 static const char *strerror(EGLint err) { argument
50 switch (err){
502 GLenum err = glGetError();
503 if (err != GL_NO_ERROR) {
505 snprintf(buf, sizeof(buf), "GL Error = 0x%08x, from: %s", err, msg);
510 switch (err) {
/frameworks/av/media/libstagefright/
H A DAACExtractor.cpp309 status_t err = mGroup->acquire_buffer(&buffer); local
310 if (err != OK) {
311 return err;
H A DSimpleDecodingSource.cpp73 status_t err = codec->configure(format, surface, NULL /* crypto */, 0 /* flags */); local
74 if (err == OK) {
75 err = codec->getOutputFormat(&format);
77 if (err == OK) {
H A DUtils.cpp833 status_t err = copyNALUToABuffer(&buffer, ptr, length); local
834 if (err != OK) {
835 return err;
874 status_t err = copyNALUToABuffer(&buffer, ptr, length); local
875 if (err != OK) {
876 return err;
938 status_t err = copyNALUToABuffer(&buffer, ptr, length); local
939 if (err != OK) {
940 return err;
1221 status_t err local
[all...]
H A DMidiExtractor.cpp233 status_t err = mGroup->acquire_buffer(&buffer); local
234 if (err != OK) {
/frameworks/av/media/libstagefright/codecs/aacenc/
H A DAACEncoder.cpp154 status_t err = mSource->start(params); local
155 if (err != OK) {
157 return err;
/frameworks/av/media/libstagefright/codecs/on2/dec/
H A DSoftVPX.cpp274 vpx_codec_err_t err = vpx_codec_decode( local
277 if (err == VPX_CODEC_OK) {
284 ALOGE("on2 decoder failed to decode frame. err: %d", err);
/frameworks/base/core/jni/
H A Dandroid_os_HwBinder.cpp171 status_t err = OK; local
176 err = UNKNOWN_ERROR; // XXX special error code instead?
196 return err;
/frameworks/compile/libbcc/lib/
H A DRSCompilerDriver.cpp183 Compiler::ErrorCode err = mCompiler.config(*mConfig); local
184 if (err != Compiler::kSuccess) {
186 Compiler::GetErrorString(err));
/frameworks/native/cmds/dumpstate/
H A DDumpstateUtil.cpp181 int err = errno; local
183 dprintf(out_fd, "*** Error dumping %s: %s\n", path.c_str(), strerror(err));
186 strerror(err));
/frameworks/native/opengl/libs/EGL/
H A DLoader.cpp439 const char* err = dlerror(); local
440 ALOGE("load_driver(%s): %s", driver_absolute_path, err ? err : "unknown");
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
H A DWifiP2pMonitor.java380 P2pStatus err = P2pStatus.UNKNOWN;
382 err = P2pStatus.NO_COMMON_CHANNEL;
384 sendMessage(iface, P2P_GROUP_FORMATION_FAILURE_EVENT, err);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerSource.h88 // When the format has "err" set to -EWOULDBLOCK, source needs more time to get valid meta data.
159 void notifyPrepared(status_t err = OK);
/frameworks/av/media/libstagefright/codecs/vorbis/dec/
H A DSoftVorbis.cpp396 int err = vorbis_dsp_synthesis(mState, &pack, 1); local
397 if (err != 0) {
400 ALOGV("vorbis_dsp_synthesis returned %d", err);
402 ALOGW("vorbis_dsp_synthesis returned %d", err);
/frameworks/av/media/libstagefright/foundation/
H A DAString.cpp375 status_t err = parcel->writeInt32(mSize); local
376 if (err == OK) {
377 err = parcel->write(mData, mSize);
379 return err;
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp739 int err = checkFormat(colorType, internalformat, type); local
740 if (err)
741 return err;
748 err = -1;
763 err = -1;
770 return err;
785 int err = checkFormat(colorType, format, type); local
786 if (err)
787 return err;
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DKeepaliveTracker.java139 void notifyMessenger(int slot, int err) { argument
140 KeepaliveTracker.this.notifyMessenger(mMessenger, slot, err);
217 void notifyMessenger(Messenger messenger, int slot, int err) { argument
221 message.arg2 = 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/include/binder/
H A DIBinder.h85 static status_t shellCommand(const sp<IBinder>& target, int in, int out, int err,
/frameworks/native/libs/binder/include/binder/
H A DIBinder.h85 static status_t shellCommand(const sp<IBinder>& target, int in, int out, int err,
/frameworks/native/opengl/libagl/
H A Dtexture.cpp379 status_t err = tex->reallocate(level, local
381 if (err != NO_ERROR)
390 status_t err = tex->reallocate(level, local
392 if (err != NO_ERROR)
1207 int err = copyPixels(c, *surface, 0, 0, userSurface, 0, 0, width, height);
1208 if (err) {
1209 ogles_error(c, err);
1290 int err = copyPixels(c,
1293 if (err) {
1294 ogles_error(c, err);
[all...]
/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 3658 milliseconds

<<11121314151617181920>>