Searched refs:err (Results 201 - 225 of 245) sorted by relevance

12345678910

/frameworks/base/libs/binder/
H A DProcessState.cpp202 status_t err = mHandleToObject.insertAt(e, N, handle+1-N); local
203 if (err < NO_ERROR) return NULL;
/frameworks/base/telephony/java/com/android/internal/telephony/test/
H A DModelInterpreter.java109 System.err.println("ATChannel: buffer overflow");
115 System.err.println("ATChannel: implausable UnsupportedEncodingException");
/frameworks/base/tests/DumpRenderTree/assets/
H A Drun_layout_tests.py213 (crashed_test, err) = subprocess.Popen(
219 logging.error('stderr: ' + err)
/frameworks/base/media/libstagefright/
H A DMPEG4Writer.cpp119 status_t err = (*it)->start(); local
121 if (err != OK) {
127 return err;
336 status_t err = mSource->start();
338 if (err != OK) {
340 return err;
H A DMP3Extractor.cpp631 status_t err = mGroup->acquire_buffer(&buffer); local
632 if (err != OK) {
633 return err;
/frameworks/base/tools/aapt/
H A DZipFile.cpp46 static status_t errnoToStatus(int err) argument
48 if (err == ENOENT)
50 else if (err == EACCES)
98 int err = errno; local
99 LOGD("fopen failed: %d\n", err);
100 return errnoToStatus(err);
/frameworks/base/services/java/com/android/server/
H A DPowerManagerService.java1370 int err = setScreenStateLocked(true);
1371 if (err != 0) {
1372 Slog.w(TAG, "preventScreenOn: error from setScreenStateLocked(): " + err);
1445 int err = Power.setScreenState(on);
1446 if (err == 0) {
1462 return err;
1473 int err;
1554 err = setScreenStateLocked(true);
1567 err = 0;
1575 if (err
[all...]
/frameworks/base/camera/libcameraservice/
H A DCameraService.cpp1375 status_t err = BnCameraService::onTransact(code, data, reply, flags); local
1378 LOGV("+++ onTransact err %d code %d", err, code);
1380 if (err == UNKNOWN_TRANSACTION || err == PERMISSION_DENIED) {
1415 return err;
/frameworks/base/libs/ui/
H A DRegion.cpp68 status_t err = read(buffer); local
69 LOGE_IF(err<0, "error %s reading Region from buffer", strerror(err));
/frameworks/base/opengl/libagl/
H A Degl.cpp453 int err; local
455 err = module->lock(module, buf->handle,
461 err = NO_ERROR;
463 return err;
469 int err = NO_ERROR; local
471 err = module->unlock(module, buf->handle);
473 return err;
484 status_t err = NO_ERROR; local
503 err = copybit->blit(copybit, &dimg, &simg, &it);
504 if (err !
[all...]
H A Dmatrix.cpp975 GLint err = c->transforms.current->pop(); local
976 if (ggl_unlikely(err)) {
977 ogles_error(c, err);
986 GLint err = c->transforms.current->push(); local
987 if (ggl_unlikely(err)) {
988 ogles_error(c, err);
/frameworks/base/cmds/dumpstate/
H A Dutils.c104 int err = errno; local
106 printf("*** %s: %s\n", path, strerror(err));
/frameworks/base/core/jni/android/graphics/
H A DYuvToJpegEncoder.cpp30 cinfo.err = jpeg_std_error(&sk_err);
/frameworks/base/core/jni/
H A Dandroid_util_Process.cpp58 static void signalExceptionForPriorityError(JNIEnv* env, jobject obj, int err) argument
60 switch (err) {
79 static void signalExceptionForGroupError(JNIEnv* env, jobject obj, int err) argument
81 switch (err) {
H A Dandroid_bluetooth_BluetoothSocket.cpp522 static void throwErrnoNative(JNIEnv *env, jobject obj, jint err) { argument
523 jniThrowIOException(env, err);
/frameworks/base/core/tests/coretests/src/android/os/
H A DMemoryFileTest.java251 assertFalse(MemoryFile.isMemoryFile(FileDescriptor.err));
/frameworks/base/include/binder/
H A DParcel.h69 void setError(status_t err);
/frameworks/base/libs/surfaceflinger/
H A DLayerBase.cpp638 status_t err = NO_ERROR; local
668 "failed err=0x%04x",
670 err = INVALID_OPERATION;
679 LOGE("layer=%p, eglCreateImageKHR() failed. err=0x%4x",
681 err = INVALID_OPERATION;
683 return err;
/frameworks/base/media/libstagefright/include/
H A DAwesomePlayer.h226 void abortPrepare(status_t err);
/frameworks/base/opengl/tools/glgen/src/
H A DGenerateGL.java86 System.err.println("Unknown flag: " + args[aidx]);
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DCdmaServiceStateTracker.java638 CommandException.Error err=null;
641 err = ((CommandException)(ar.exception)).getCommandError();
644 if (err == CommandException.Error.RADIO_NOT_AVAILABLE) {
656 if (err != CommandException.Error.OP_NOT_ALLOWED_BEFORE_REG_NW &&
657 err != CommandException.Error.OP_NOT_ALLOWED_BEFORE_REG_NW) {
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DGsmServiceStateTracker.java623 CommandException.Error err=null;
626 err = ((CommandException)(ar.exception)).getCommandError();
629 if (err == CommandException.Error.RADIO_NOT_AVAILABLE) {
641 if (err != CommandException.Error.OP_NOT_ALLOWED_BEFORE_REG_NW &&
642 err != CommandException.Error.OP_NOT_ALLOWED_BEFORE_REG_NW) {
/frameworks/base/libs/utils/
H A DResourceTypes.cpp1089 status_t err = validate_chunk(chunk, sizeof(ResChunk_header), mDataEnd, "XML"); local
1090 if (err != NO_ERROR) {
1091 mError = err;
1160 status_t err = validate_chunk( local
1164 if (err >= NO_ERROR) {
1193 return err;
1758 status_t err = validate_chunk(chunk, sizeof(ResChunk_header), header->dataEnd, "ResTable"); local
1759 if (err != NO_ERROR) {
1760 return (mError=err);
1771 status_t err local
2056 ssize_t err = getBagLocked(resID, outBag); local
3765 status_t err = validate_chunk(&pkg->header, sizeof(*pkg), local
3984 status_t err = validate_chunk(chunk, sizeof(ResChunk_header), local
[all...]
/frameworks/base/opengl/libs/EGL/
H A Degl.cpp256 const char *egl_strerror(EGLint err) argument
258 switch (err){
1299 EGLint err = EGL_SUCCESS; local
1302 err = cnx->egl.eglGetError();
1303 if (err!=EGL_SUCCESS && result==EGL_SUCCESS)
1304 result = err;
/frameworks/base/libs/rs/
H A Drs.spec40 param RsError *err

Completed in 403 milliseconds

12345678910