Searched refs:error (Results 76 - 100 of 542) sorted by relevance

1234567891011>>

/frameworks/volley/src/main/java/com/android/volley/
H A DResponseDelivery.java32 * Posts an error for the given request.
34 public void postError(Request<?> request, VolleyError error); argument
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWC2.cpp160 auto error = display->getType(&displayType); local
161 if (error != Error::None) {
163 ": %s (%d)", display->getId(), to_string(error).c_str(),
164 static_cast<int32_t>(error));
169 error = display->setVsyncEnabled(HWC2::Vsync::Disable);
170 if (error != Error::None) {
172 ": %s (%d)", display->getId(), to_string(error).c_str(),
173 static_cast<int32_t>(error));
208 auto error = static_cast<Error>(intError); local
209 if (error !
445 auto error = static_cast<Error>(intError); local
509 auto error = static_cast<Error>(intError); local
527 auto error = static_cast<Error>(intError); local
552 auto error = static_cast<Error>(intError); local
589 auto error = static_cast<Error>(intError); local
623 auto error = static_cast<Error>(intError); local
648 auto error = static_cast<Error>(intError); local
686 auto error = static_cast<Error>(intError); local
700 auto error = static_cast<Error>(intError); local
718 auto error = static_cast<HWC2::Error>(intError); local
742 auto error = static_cast<Error>(intError); local
779 auto error = static_cast<Error>(intError); local
857 auto error = static_cast<Error>(intError); local
874 auto error = static_cast<Error>(intError); local
905 auto error = static_cast<Error>(intError); local
932 auto error = static_cast<Error>(intError); local
[all...]
/frameworks/base/tools/aapt2/java/
H A DManifestClassGenerator.cpp41 diag->error(DiagMessage(source) << "empty symbol");
47 diag->error(DiagMessage(source)
54 diag->error(DiagMessage(source) << "symbol can not start with a digit");
65 diag->error(DiagMessage(source) << "<" << el->name << "> must define 'android:name'");
86 diag->error(DiagMessage(res->file.source) << "no root tag defined");
91 diag->error(DiagMessage(res->file.source) << "no <manifest> root tag defined");
100 bool error = false; local
106 error |= !writeSymbol(res->file.source, diag, childEl, permissionClass.get());
108 error |= !writeSymbol(res->file.source, diag, childEl, permissionGroupClass.get());
113 if (error) {
[all...]
/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";
184 error() << "Missing variable name\n";
190 error() << "Th
[all...]
H A DScanner.h76 * Returns false if the tag is not found and prints an error.
79 // Same as findTag but does not print an error if the tag is not found.
86 std::ostream& error();
87 std::ostream& error(int lineNumber);
/frameworks/base/tools/aapt2/
H A DResourceParser.cpp111 bool error = false; local
113 error |= !addResourcesToTable(table, diag, &child);
115 return !error;
137 bool error = false; local
189 mDiag->error(DiagMessage(mSource.withLine(parser->getLineNumber()))
191 error = true;
205 return !error;
209 bool error = false; local
218 mDiag->error(DiagMessage(mSource.withLine(parser->getLineNumber()))
223 error |
238 bool error = false; local
647 bool error = false; local
813 bool error = false; local
1015 bool error = false; local
1071 bool error = false; local
1112 bool error = false; local
1200 bool error = false; local
[all...]
/frameworks/base/tools/aapt2/link/
H A DTableMerger.cpp55 bool error = false; local
72 mContext->getDiagnostics()->error(DiagMessage(src) << "file '"
88 error |= !doMerge(src, table, package.get(),
92 return !error;
100 bool error = false; local
117 mContext->getDiagnostics()->error(DiagMessage(src) << "file '" << *oldFile->path
126 error |= !doMerge(src, table, package.get(),
129 return !error;
139 bool error = false; local
147 mContext->getDiagnostics()->error(DiagMessag
[all...]
H A DLink.cpp139 context->getDiagnostics()->error(DiagMessage(file->getSource())
151 context->getDiagnostics()->error(DiagMessage(file->getSource())
171 context->getDiagnostics()->error(DiagMessage() << "failed to write file " << outPath);
202 context->getDiagnostics()->error(DiagMessage() << "failed to write " << path << " to archive");
221 diag->error(DiagMessage(source) << "invalid compiled table");
238 diag->error(DiagMessage(path) << strerror(errno));
249 diag->error(DiagMessage(source) << "invalid compiled file header");
269 diag->error(DiagMessage(source) << "invalid compiled file header");
340 mContext->getDiagnostics()->error(DiagMessage(file->getSource()) << "failed to open file");
429 bool error local
603 bool error = false; local
1010 bool error = false; local
1223 bool error = false; local
1467 std::string error; local
[all...]
H A DProductFilter.cpp34 diag->error(DiagMessage(configValue->value->getSource())
52 diag->error(DiagMessage(configValue->value->getSource())
67 diag->error(DiagMessage() << "no default product defined for resource " << name);
78 bool error = false; local
98 // An error occurred, we could not pick a product.
99 error = true;
115 return !error;
/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/media/
H A DRemotePlayer.java149 public void onError(String error, int code, Bundle data) {
150 logError("play: failed", error, code);
191 public void onError(String error, int code, Bundle data) {
192 logError("getStatus: failed", error, code);
220 public void onError(String error, int code, Bundle data) {
221 logError("pause: failed", error, code);
246 public void onError(String error, int code, Bundle data) {
247 logError("resume: failed", error, code);
275 public void onError(String error, int code, Bundle data) {
276 logError("stop: failed", error, cod
468 logError(String message, String error, int code) argument
[all...]
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/media/
H A DRemotePlayer.java149 public void onError(String error, int code, Bundle data) {
150 logError("play: failed", error, code);
191 public void onError(String error, int code, Bundle data) {
192 logError("getStatus: failed", error, code);
220 public void onError(String error, int code, Bundle data) {
221 logError("pause: failed", error, code);
246 public void onError(String error, int code, Bundle data) {
247 logError("resume: failed", error, code);
275 public void onError(String error, int code, Bundle data) {
276 logError("stop: failed", error, cod
468 logError(String message, String error, int code) argument
[all...]
/frameworks/base/tools/apilint/
H A Dapilint.py209 def __init__(self, sig, clazz, detail, error, rule, msg):
211 self.error = error
215 if error:
242 def _fail(clazz, detail, error, rule, msg):
249 failures[sig] = Failure(sig, clazz, detail, error, rule, msg)
255 def error(clazz, detail, rule, msg): function
266 error(clazz, f, "C2", "Constant field names must be FOO_NAME")
275 error(clazz, None, "F5", "Enums are not allowed")
287 error(claz
[all...]
/frameworks/base/core/java/android/hardware/fingerprint/
H A DIFingerprintDaemonCallback.aidl26 void onError(long deviceId, int error);
H A DIFingerprintServiceReceiver.aidl31 void onError(long deviceId, int error);
/frameworks/base/core/java/android/speech/
H A DIRecognitionListener.aidl60 * A network or recognition error occurred.
62 * @param error code is defined in {@link SpeechRecognizer}
64 void onError(in int error);
/frameworks/base/core/java/android/speech/tts/
H A DSynthesisCallback.java33 * {@link #error} can be called at any stage in the synthesis process to
34 * indicate that an error has occurred, but if the call is made after a call
100 * This method has to be called if {@link #start} and/or {@link #error} was called.
113 public void error(); method in interface:SynthesisCallback
125 public void error(@TextToSpeech.Error int errorCode); method in interface:SynthesisCallback
/frameworks/base/media/jni/soundpool/
H A DAndroid.mk21 LOCAL_CFLAGS += -Wall -Werror -Wno-error=deprecated-declarations -Wunused -Wunreachable-code
/frameworks/base/media/tests/audiotests/
H A DAndroid.mk21 LOCAL_CFLAGS += -Wall -Werror -Wno-error=deprecated-declarations -Wunused -Wunreachable-code
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DMain.java69 log.error("Usage: layoutlib_create [-v] output.jar input.jar ...");
70 log.error("Usage: layoutlib_create [-v] [--list-deps|--missing-deps] input.jar ...");
136 // Throw an error if any class failed to get renamed by the generator
138 // IMPORTANT: if you're building the platform and you get this error message,
143 // (80-column guide below for error formatting)
145 log.error(
150 log.error("- Class not found: %s", fqcn.replace('/', '.'));
162 e.error(log);
210 log.error("Unknown argument: %s", s);
216 log.error("Missin
[all...]
/frameworks/native/libs/gui/
H A DGraphicBufferAlloc.cpp36 std::string requestorName, status_t* error) {
40 *error = err;
34 createGraphicBuffer(uint32_t width, uint32_t height, PixelFormat format, uint32_t usage, std::string requestorName, status_t* error) argument
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dspreproc.h116 Word16 *mem_err, /* i : pointer to error signal */
124 Word16 error[] /* o : error of LPC synthesis filter */
/frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/plugin/
H A DInputSource.h36 virtual bool sendToHW(std::string &error);
H A DStrategy.h36 virtual bool sendToHW(std::string &error);
H A DUsage.h36 virtual bool sendToHW(std::string &error);
/frameworks/base/libs/hwui/font/
H A DFontUtil.h35 #error TEXTURE_BORDER_SIZE other than 1 is not currently supported

Completed in 1771 milliseconds

1234567891011>>