Searched refs:error (Results 51 - 75 of 622) sorted by relevance

1234567891011>>

/frameworks/av/media/libaaudio/src/binding/
H A DRingBufferParcelable.cpp83 if (status != NO_ERROR) goto error;
86 if (status != NO_ERROR) goto error;
88 if (status != NO_ERROR) goto error;
90 if (status != NO_ERROR) goto error;
92 if (status != NO_ERROR) goto error;
94 if (status != NO_ERROR) goto error;
96 if (status != NO_ERROR) goto error;
99 error:
100 ALOGE("RingBufferParcelable::writeToParcel() error = %d", status);
106 if (status != NO_ERROR) goto error;
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/common/include/
H A Dtypedef.h62 #error No System recognized
/frameworks/base/services/net/java/android/net/netlink/
H A DStructNlMsgErr.java47 struct.error = byteBuffer.getInt();
52 public int error; field in class:StructNlMsgErr
59 byteBuffer.putInt(error);
68 + "error{" + error + "}, "
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/error/
H A DErrorTest.java17 package android.test.suitebuilder.examples.error;
H A DFailingTest.java17 package android.test.suitebuilder.examples.error;
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTest/java/android/databinding/
H A DDataBindingMapperTest.java32 Throwable error = null;
36 error = t;
38 assertNotNull(error);
40 error.getMessage());
/frameworks/native/libs/vr/libpdx_uds/
H A Dchannel_event_set.cpp24 const int error = errno; local
26 strerror(error));
39 const int error = errno; local
41 strerror(error));
42 return ErrorStatus{error};
65 const int error = errno; local
67 strerror(error));
68 return -error;
81 const int error = errno; local
85 error_name, strerror(error));
[all...]
/frameworks/native/opengl/tests/lib/
H A DglTestLib.cpp53 for (EGLint error = eglGetError(); error != EGL_SUCCESS; error
56 op, EGLUtils::strerror(error), error);
62 for (GLint error = glGetError(); error; error
64 testPrintE("after %s() glError (0x%x)", op, error);
112 EGLint error local
[all...]
/frameworks/ex/framesequence/jni/
H A DBitmapDecoderJNI.cpp27 void throwException(JNIEnv* env, const char* error) { argument
29 env->ThrowNew(clazz, error);
/frameworks/native/services/vr/performanced/
H A Dmain.cpp40 CHECK_ERROR(ret < 0, error, "Failed to set KEEPCAPS: %s", strerror(errno));
44 CHECK_ERROR(ret < 0, error, "Failed to set GID: %s", strerror(errno));
46 CHECK_ERROR(ret < 0, error, "Failed to set UID: %s", strerror(errno));
58 CHECK_ERROR(ret < 0, error, "Could not set capabilities: %s",
62 CHECK_ERROR(!dispatcher, error, "Failed to create service dispatcher.");
65 CHECK_ERROR(!service, error, "Failed to create performance service service.");
71 CHECK_ERROR(ret < 0, error, "Dispatch loop exited because: %s\n",
74 error:
/frameworks/native/libs/vr/libpdx/
H A Dserialization_tests.cpp1289 ErrorType error;
1293 error = Deserialize(&result, &buffer);
1294 EXPECT_EQ(ErrorCode::NO_ERROR, error);
1299 error = Deserialize(&result, &buffer);
1300 EXPECT_EQ(ErrorCode::NO_ERROR, error);
1307 ErrorType error;
1311 error = Deserialize(&result, &buffer);
1312 EXPECT_EQ(ErrorCode::NO_ERROR, error);
1317 error = Deserialize(&result, &buffer);
1318 EXPECT_EQ(ErrorCode::NO_ERROR, error);
[all...]
H A Dclient.cpp28 error_ = -status.error();
29 ret.SetError(status.error());
51 bool Client::NeedToDisconnectChannel(int error) const {
52 return error == ESHUTDOWN && auto_reconnect_enabled_;
55 void Client::CheckDisconnect(int error) { argument
56 if (NeedToDisconnectChannel(error))
57 Close(error);
70 error_ = -status.error();
82 int Client::error() const { return error_; } function in class:android::pdx::Client
109 void Client::Close(int error) { argument
274 CheckDisconnect(int error) argument
[all...]
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.cpp179 auto error = display->getType(&displayType); local
180 if (error != HWC2::Error::None) {
239 auto error = mHwcDevice->createVirtualDisplay(width, height, format, local
241 if (error != HWC2::Error::None) {
274 auto error = display->createLayer(&layer); local
275 if (error != HWC2::Error::None) {
277 to_string(error).c_str(), static_cast<int32_t>(error));
325 auto error = mDisplayData[displayId].hwcDisplay->getActiveConfig(&config); local
326 if (error
353 auto error = hwcDisplay->getColorModes(&modes); local
370 auto error = displayData.hwcDisplay->setColorMode(mode); local
402 auto error = displayData.hwcDisplay->setVsyncEnabled(enabled); local
427 auto error = hwcDisplay->setClientTarget(slot, target, acquireFence, dataspace); local
459 HWC2::Error error = HWC2::Error::None; local
625 auto error = displayData.presentError; local
634 auto error = hwcDisplay->present(&displayData.lastPresentFence); local
679 auto error = hwcDisplay->setPowerMode(mode); local
693 auto error = hwcDisplay->supportsDoze(&supportsDoze); local
733 auto error = displayData.hwcDisplay->setActiveConfig( local
754 auto error = displayData.hwcDisplay->setColorTransform(transform, local
800 auto error = hwcDisplay->getType(&displayType); local
840 auto error = hwcDisplay->getHdrCapabilities(&capabilities); local
[all...]
/frameworks/native/libs/ui/
H A DGraphicBufferMapper.cpp55 Gralloc2::Error error = mMapper->importBuffer( local
58 ALOGW_IF(error != Gralloc2::Error::NONE, "importBuffer(%p) failed: %d",
59 rawHandle, error);
61 return static_cast<status_t>(error);
97 status_t error = unlockAsync(handle, &fenceFd); local
98 if (error == NO_ERROR) {
102 return error;
119 Gralloc2::Error error = mMapper->lock(handle, usage, local
122 ALOGW_IF(error != Gralloc2::Error::NONE, "lock(%p, ...) failed: %d",
123 handle, error);
157 Gralloc2::Error error = mMapper->lock(handle, usage, local
[all...]
/frameworks/rs/rsov/compiler/
H A DAndroid.mk131 -Wno-error=pessimizing-move \
132 -Wno-error=unused-variable \
133 -Wno-error=unused-private-field \
134 -Wno-error=unused-function \
135 -Wno-error=dangling-else \
136 -Wno-error=ignored-qualifiers \
137 -Wno-error=non-virtual-dtor
175 -Wno-error=pessimizing-move \
176 -Wno-error=unused-variable \
177 -Wno-error
[all...]
/frameworks/av/media/libaaudio/examples/write_sine/src/
H A Dwrite_sine_callback.cpp53 goto error;
66 goto error;
73 goto error;
89 goto error;
102 goto error;
107 goto error;
118 error:
/frameworks/base/tools/aapt/
H A DCommand.cpp256 *outError = "error print resolved resource attribute";
430 String8 error; local
466 String8 category = AaptXml::getAttribute(tree, CATEGORY_ATTR, &error);
467 if (error != "") {
468 if (outError != NULL) *outError = error;
901 SourcePos(manifestFile, tree.getLineNumber()).error(
909 SourcePos(manifestFile, tree.getLineNumber()).error(
917 String8 error; local
918 String8 name = AaptXml::getAttribute(tree, NAME_ATTR, &error);
919 if (error !
933 String8 error; local
950 String8 error; local
988 String8 error; local
[all...]
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Daacenc_core.c61 Word32 error = 0; local
67 error=1;
70 if (!error) {
74 if (!error) {
75 error = InitElementInfo (config.nChannelsOut,
79 if (!error) {
83 if (!error) {
88 error = psyMainInit(&hAacEnc->psyKernel,
97 if(!error) {
102 if (!error) {
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcRequest.java82 boolean error = false;
84 if (apnId != APN_INVALID_ID) error = true;
88 if (apnId != APN_INVALID_ID) error = true;
92 if (apnId != APN_INVALID_ID) error = true;
96 if (apnId != APN_INVALID_ID) error = true;
100 if (apnId != APN_INVALID_ID) error = true;
104 if (apnId != APN_INVALID_ID) error = true;
108 if (apnId != APN_INVALID_ID) error = true;
112 if (apnId != APN_INVALID_ID) error = true;
116 if (apnId != APN_INVALID_ID) error
[all...]
/frameworks/native/opengl/tests/gl_perf/
H A Dgl2_perf.cpp40 for (EGLint error = eglGetError(); error != EGL_SUCCESS; error
42 fprintf(stderr, "after %s() eglError %s (0x%x)\n", op, EGLUtils::strerror(error),
43 error);
48 for (GLint error = glGetError(); error; error
50 fprintf(stderr, "after %s() glError (0x%x)\n", op, error);
/frameworks/base/core/jni/
H A Dandroid_util_jar_StrictJarFile.cpp63 int32_t error = OpenArchiveFd(fd, nameChars.c_str(), &handle, local
65 if (error) {
67 throwIoException(env, error);
101 int32_t error = 0; local
103 error = StartIteration(reinterpret_cast<ZipArchiveHandle>(nativeHandle),
107 error = StartIteration(reinterpret_cast<ZipArchiveHandle>(nativeHandle),
111 if (error) {
112 throwIoException(env, error);
124 const int32_t error = Next(*handle->CookieAddress(), &data, &entryName); local
125 if (error) {
146 const int32_t error = FindEntry(reinterpret_cast<ZipArchiveHandle>(nativeHandle), local
[all...]
/frameworks/rs/rsov/compiler/spirit/
H A Dpass_queue.h45 // If argument error is not null, sets the error code. On a successful run,
46 // error code is set to zero.
47 Module *run(Module *module, int *error = nullptr);
54 // If argument error is not null, sets the error code. On a successful run,
55 // error code is set to zero.
57 int *error = nullptr);
62 // If argument error is not null, sets the error cod
[all...]
/frameworks/av/media/libaaudio/examples/input_monitor/src/
H A Dinput_monitor_callback.cpp50 goto error;
58 goto error;
76 goto error;
87 goto error;
93 goto error;
115 goto error;
119 goto error;
124 error:
/frameworks/base/core/java/android/app/backup/
H A DIRestoreObserver.aidl61 * @param error Zero on success; a nonzero error code if the restore operation
64 void restoreFinished(int error);
/frameworks/base/core/java/android/print/
H A DILayoutResultCallback.aidl30 void onLayoutFailed(CharSequence error, int sequence);

Completed in 2075 milliseconds

1234567891011>>