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

1234567891011>>

/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/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/av/services/audiopolicy/engineconfigurable/parameter-framework/plugin/
H A DInputSource.h35 virtual bool receiveFromHW(std::string &error);
36 virtual bool sendToHW(std::string &error);
H A DStrategy.h35 virtual bool receiveFromHW(std::string &error);
36 virtual bool sendToHW(std::string &error);
H A DStream.h35 virtual bool receiveFromHW(std::string &error);
36 virtual bool sendToHW(std::string &error);
H A DUsage.h35 virtual bool receiveFromHW(std::string &error);
36 virtual bool sendToHW(std::string &error);
H A DVolumeProfile.h44 virtual bool receiveFromHW(std::string &error);
45 virtual bool sendToHW(std::string &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);
H A DRestoreObserver.java74 * @param error Zero on success; a nonzero error code if the restore operation
77 public void restoreFinished(int error) { argument
/frameworks/base/core/java/android/print/
H A DILayoutResultCallback.aidl30 void onLayoutFailed(CharSequence error, int sequence);
H A DIWriteResultCallback.aidl30 void onWriteFailed(CharSequence error, int sequence);
H A DPrintDocumentAdapter.java140 * LayoutResultCallback#onLayoutFailed(CharSequence)}, if an error occurred;
198 * CharSequence)}, if an error occurred; or {@link WriteResultCallback#onWriteCancelled()},
278 * Notifies that an error occurred while writing the data.
280 * @param error The <strong>localized</strong> error message.
281 * shown to the user. May be <code>null</code> if error is unknown.
283 public void onWriteFailed(CharSequence error) { argument
322 * Notifies that an error occurred while laying out the document.
324 * @param error The <strong>localized</strong> error messag
327 onLayoutFailed(CharSequence error) argument
[all...]
/frameworks/base/libs/androidfw/
H A DZipFileRO.cpp68 const int32_t error = OpenArchive(zipFileName, &handle); local
69 if (error) {
70 ALOGW("Error opening archive %s: %s", zipFileName, ErrorCodeString(error));
85 const int32_t error = FindEntry(mHandle, data->name, &(data->entry)); local
86 if (error) {
138 int32_t error = StartIteration(mHandle, &(ze->cookie), local
141 if (error) {
142 ALOGW("Could not start iteration over %s: %s", mFileName, ErrorCodeString(error));
154 int32_t error = Next(ze->cookie, &(ze->entry), &(ze->name)); local
155 if (error) {
229 const int32_t error = ExtractToMemory(mHandle, &(zipEntry->entry), local
247 const int32_t error = ExtractEntryToFile(mHandle, &(zipEntry->entry), fd); local
[all...]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
H A DCustomErrorEditText.java25 * EditText that shows an error without a popup.
40 public void setError(CharSequence error, Drawable icon) { argument
42 mError = error;
/frameworks/compile/mclinker/include/mcld/Config/
H A DTargets.def27 # error Please define the macro MCLD_TARGET(TargetName)
/frameworks/volley/src/main/java/com/android/volley/
H A DDefaultRetryPolicy.java88 * @param error The error code of the last attempt.
91 public void retry(VolleyError error) throws VolleyError { argument
95 throw error;
H A DExecutorDelivery.java66 public void postError(Request<?> request, VolleyError error) { argument
67 request.addMarker("post-error");
68 Response<?> response = Response.error(error);
97 // Deliver a normal response or error, depending.
101 mRequest.deliverError(mResponse.error);
H A DResponseDelivery.java32 * Posts an error for the given request.
34 public void postError(Request<?> request, VolleyError error); argument
/frameworks/base/tools/aapt/
H A DSourcePos.cpp21 String8 error; member in struct:ErrorPos
26 ErrorPos(const String8& file, int line, const String8& error, Level level);
42 error(that.error),
50 error(e),
60 this->error = rhs.error;
77 type = "error: ";
83 fprintf(to, "%s:%d: %s%s\n", this->file.string(), this->line, type, this->error.string());
85 fprintf(to, "%s: %s%s\n", this->file.string(), type, this->error
114 SourcePos::error(const char* fmt, ...) const function in class:SourcePos
[all...]
/frameworks/base/core/java/android/speech/
H A DRecognitionListener.java62 * A network or recognition error occurred.
64 * @param error code is defined in {@link SpeechRecognizer}
66 void onError(int error); argument
/frameworks/native/opengl/libs/EGL/
H A Degl_tls.h37 EGLint error; member in class:android::egl_tls_t
44 const char* caller, int line, EGLint error, bool quiet);
58 int line, EGLint error, T returnValue, bool quiet = false) {
59 setErrorEtcImpl(caller, line, error, quiet);
57 setErrorEtc(const char* caller, int line, EGLint error, T returnValue, bool quiet = false) argument
/frameworks/base/tools/aapt2/
H A DLogger.cpp33 std::ostream& Logger::error() { function in class:aapt::Logger
34 return sLog->err << "error: ";
37 std::ostream& Logger::error(const Source& source) { function in class:aapt::Logger
38 return sLog->err << source << ": error: ";
41 std::ostream& Logger::error(const SourceLine& source) { function in class:aapt::Logger
42 return sLog->err << source << ": error: ";
73 std::ostream& SourceLogger::error() { function in class:aapt::SourceLogger
74 return Logger::error(mSource);
77 std::ostream& SourceLogger::error(size_t line) { function in class:aapt::SourceLogger
78 return Logger::error(SourceLin
[all...]
H A DLogger.h41 static std::ostream& error();
42 static std::ostream& error(const Source& source);
43 static std::ostream& error(const SourceLine& sourceLine);
61 std::ostream& error();
62 std::ostream& error(size_t line);
/frameworks/rs/api/
H A DScanner.cpp98 ostream& Scanner::error() { function in class:Scanner
99 return error(mLineNumber);
102 ostream& Scanner::error(int lineNumber) { function in class:Scanner
104 cerr << mFileName << ":" << lineNumber << ": error: ";
112 error() << "Unexpected: \" " << mValue << "\".\n";
120 error() << "Found \"" << mTag << "\" while looking for \"" << tag << "\".\n";
144 error() << "Did not expect \"" << mValue << "\" after \"" << mTag << "\".\n";
156 error() << "Missing closing double quote\n";
178 error() << "Missing variable name\n";
183 error() << "Th
[all...]
/frameworks/data-binding/compilationTests/src/test/java/android/databinding/compilationTest/
H A DMultiLayoutVerificationTest.java51 assertEquals(result.error, 2, exceptions.size());
89 fail("unexpected error file");
92 assertTrue(result.error, foundNormal);
93 assertTrue(result.error, foundLandscape);
109 assertEquals(result.error, 2, exceptions.size());
117 assertEquals(result.error, 1, report.getLocations().size());
132 fail("unexpected error file");
145 assertTrue(result.error, foundNormal);
146 assertTrue(result.error, foundLandscape);
164 assertEquals(result.error,
[all...]

Completed in 8800 milliseconds

1234567891011>>