Searched refs:error (Results 1 - 25 of 152) sorted by relevance

1234567

/frameworks/base/core/java/android/net/http/
H A DSslError.java49 * The number of different SSL errors (update if you add a new SSL error!!!)
54 * The SSL error set bitfield (each individual error is an bit index;
60 * The SSL certificate associated with the error set
65 * Creates a new SSL error set object
66 * @param error The SSL error
69 public SslError(int error, SslCertificate certificate) { argument
70 addError(error);
75 * Creates a new SSL error se
79 SslError(int error, X509Certificate certificate) argument
96 addError(int error) argument
109 hasError(int error) argument
[all...]
H A DConnection.java161 int error = EventHandler.OK;
238 error = EventHandler.ERROR;
241 error = EventHandler.ERROR_IO;
244 error = EventHandler.ERROR_IO;
247 if (httpFailure(req, error, exception) &&
286 error = EventHandler.ERROR_IO;
289 error = EventHandler.ERROR_IO;
292 error = EventHandler.ERROR_IO;
295 if (httpFailure(req, error, exception) &&
352 int error
[all...]
/frameworks/base/core/java/android/database/
H A DSQLException.java20 * An exception that indicates there was an error with SQL parsing or execution.
26 public SQLException(String error) argument
28 super(error);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteAbortException.java27 public SQLiteAbortException(String error) { argument
28 super(error);
H A DSQLiteConstraintException.java25 public SQLiteConstraintException(String error) { argument
26 super(error);
H A DSQLiteDatabaseCorruptException.java25 public SQLiteDatabaseCorruptException(String error) { argument
26 super(error);
H A DSQLiteDiskIOException.java20 * An exception that indicates that an IO error occured while accessing the
26 public SQLiteDiskIOException(String error) { argument
27 super(error);
H A DSQLiteDoneException.java28 public SQLiteDoneException(String error) { argument
29 super(error);
H A DSQLiteFullException.java25 public SQLiteFullException(String error) { argument
26 super(error);
H A DSQLiteMisuseException.java22 public SQLiteMisuseException(String error) { argument
23 super(error);
H A DSQLiteException.java22 * A SQLite exception that indicates there was an error with SQL parsing or execution.
27 public SQLiteException(String error) { argument
28 super(error);
/frameworks/base/opengl/java/android/opengl/
H A DGLException.java25 public GLException(final int error) { argument
26 super(getErrorString(error));
27 mError = error;
30 public GLException(final int error, final String string) { argument
32 mError = error;
35 private static String getErrorString(int error) { argument
36 String errorString = GLU.gluErrorString(error);
38 errorString = "Unknown error 0x" + Integer.toHexString(error);
/frameworks/base/services/java/com/android/server/
H A DNativeDaemonConnectorException.java20 * An exception that indicates there was an error with a NativeDaemonConnector operation
29 public NativeDaemonConnectorException(String error) argument
31 super(error);
34 public NativeDaemonConnectorException(int code, String cmd, String error) argument
36 super(String.format("Cmd {%s} failed with code %d : {%s}", cmd, code, error));
/frameworks/base/opengl/libagl/
H A Dstate.h35 void _ogles_error(ogles_context_t* c, GLenum error);
42 #define ogles_error(c, error) \
45 _ogles_error(c, error); \
48 #define ogles_error(c, error) _ogles_error((c), (error))
/frameworks/base/media/libstagefright/codecs/aacenc/src/
H A Dchannel_map.c32 Word16 error=0; local
57 error=1;
60 return error;
66 Word16 error; local
67 error = 0;
80 error=4;
83 return error;
93 Word16 error; local
94 error = 0;
120 error
[all...]
H A Daacenc_core.c62 Word32 error = 0; local
68 error=1;
71 if (!error) {
75 if (!error) {
76 error = InitElementInfo (config.nChannelsOut,
80 if (!error) {
84 if (!error) {
89 error = psyMainInit(&hAacEnc->psyKernel,
98 if(!error) {
103 if (!error) {
[all...]
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DLogAbortException.java29 public void error(Log log) { method in class:LogAbortException
30 log.error(mFormat, mArgs);
H A DMain.java56 log.error("Usage: layoutlib_create [-v] output.jar input.jar ...");
93 // Throw an error if any class failed to get renamed by the generator
95 // IMPORTANT: if you're building the platform and you get this error message,
100 // (80-column guide below for error formatting)
102 log.error(
107 log.error("- Class not found: %s", fqcn.replace('/', '.'));
119 e.error(log);
145 log.error("Unknow argument: %s", s);
151 log.error("Missing parameter: path to input jar");
155 log.error("Missin
[all...]
/frameworks/base/media/libstagefright/codecs/amrnb/common/include/
H A Dtypedef.h62 #error No System recognized
/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/base/tools/aapt/
H A DSourcePos.cpp15 String8 error; member in struct:ErrorPos
20 ErrorPos(const String8& file, int line, const String8& error, bool fatal);
39 error(that.error),
47 error(e),
63 if (this->error < rhs.error) return true;
74 && this->error == rhs.error;
82 this->error
120 SourcePos::error(const char* fmt, ...) const function in class:SourcePos
[all...]
/frameworks/base/tools/localize/
H A DSourcePos.cpp18 string error; member in struct:ErrorPos
22 ErrorPos(const string& file, int line, const string& error);
40 error(that.error)
47 error(e)
62 if (this->error < rhs.error) return true;
73 && this->error == rhs.error;
81 this->error
[all...]
/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.java71 * @param error Zero on success; a nonzero error code if the restore operation
74 public void restoreFinished(int error) { argument

Completed in 392 milliseconds

1234567