HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 201 - 225 of 1832) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/Tools/Scripts/webkitpy/common/system/
deprecated_logging.py 42 def error(string): function
43 log("ERROR: %s" % string)
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
updatechangelogswithreviewer.py 35 from webkitpy.common.system.deprecated_logging import log, error namespace
  /external/webkit/Tools/WebKitLauncherWin/
WebKitLauncherWin.cpp 50 LONG error = RegOpenKeyEx(HKEY_LOCAL_MACHINE, key, 0, KEY_READ, &applePathKey); local
51 if (error != ERROR_SUCCESS)
  /frameworks/av/media/libmedia/
IRemoteDisplayClient.cpp 59 void onDisplayError(int32_t error)
63 data.writeInt32(error);
93 int32_t error = data.readInt32(); local
94 onDisplayError(error);
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
aacenc_core.c 62 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/core/java/android/net/http/
LoggingEventHandler.java 78 public void error(int id, String description) { method in class:LoggingEventHandler
80 HttpLog.v("LoggingEventHandler: error() called Id:" + id +
85 public boolean handleSslErrorRequest(SslError error) {
87 HttpLog.v("LoggingEventHandler: handleSslErrorRequest():" + error);
  /frameworks/native/opengl/libs/EGL/
egl_tls.h 37 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);
  /frameworks/native/opengl/tests/lib/
glTestLib.cpp 54 for (EGLint error = eglGetError(); error != EGL_SUCCESS; error
57 op, EGLUtils::strerror(error), error);
63 for (GLint error = glGetError(); error; error
65 testPrintE("after %s() glError (0x%x)", op, error);
113 EGLint error = eglGetError() local
    [all...]
  /frameworks/support/volley/src/com/android/volley/
Response.java 32 /** Callback interface for delivering error responses. */
35 * Callback method that an error has been occurred with the
36 * provided error code and optional user-readable message.
38 public void onErrorResponse(VolleyError error);
47 * Returns a failed response containing the given error code and an optional
50 public static <T> Response<T> error(VolleyError error) { method in class:Response
51 return new Response<T>(error);
54 /** Parsed response, or null in the case of error. */
57 /** Cache metadata for this response, or null in the case of error. *
61 public final VolleyError error; field in class:Response
    [all...]
  /hardware/invensense/libsensors_iio/software/core/mllite/linux/
mlos_linux.c 56 * @return error code.
72 * @return error code.
96 * @return error code.
114 * @return error code.
132 * @return error code.
144 * @return error code.
154 * @return Zero if success, an error code otherwise.
158 int error; local
160 error = pthread_mutex_destroy(pm);
161 if (error) {
    [all...]
  /hardware/invensense/mlsdk/platform/linux/
mlos_linux.c 68 * @return error code.
82 * @return error code.
106 * @return error code.
124 * @return error code.
142 * @return error code.
154 * @return error code.
164 * @return Zero if success, an error code otherwise.
168 int error; local
170 error = pthread_mutex_destroy(pm);
171 if (error) {
    [all...]
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/src/
OMX_JpegDec_Thread.c 84 OMX_U32 error = 0; local
125 OMX_TRACE5(pComponentPrivate->dbg, "Error in Select\n");
131 "Error from COmponent Thread in select");
140 read (pComponentPrivate->nCmdPipe[0], &eCmd, sizeof (eCmd)); /*Manage error from any read and write*/
157 error = HandleCommandJpegDec (pComponentPrivate, nParam1);
158 OMX_PRINT2(pComponentPrivate->dbg, "after called handlecommand from JPEGDEC (%lu)\n", error);
159 if (error != OMX_ErrorNone) {
163 error,
173 error = DisablePortJpegDec(pComponentPrivate, nParam1);
174 if(error != OMX_ErrorNone)
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
DOMErrorMonitor.java 40 * adds copy of error to list for later retrieval.
43 public boolean handleError(DOMError error) {
44 errors.add(new DOMErrorImpl(error));
60 DOMError error = (DOMError) iter.next(); local
61 if (error.getSeverity() >= severity) {
62 testCase.fail(id + error.getMessage());
  /libcore/luni/src/main/java/java/util/logging/
ErrorManager.java 21 * An error reporting facility for {@link Handler} implementations to record any
22 * error that may happen during logging. {@code Handlers} should report errors
29 * The error code indicating a failure that does not fit in any of the
35 * The error code indicating a failure when writing to an output stream.
40 * The error code indicating a failure when flushing an output stream.
45 * The error code indicating a failure when closing an output stream.
50 * The error code indicating a failure when opening an output stream.
55 * The error code indicating a failure when formatting the error messages.
64 * An indicator for determining if the error manager has been called a
90 public void error(String message, Exception exception, int errorCode) { method in class:ErrorManager
    [all...]
  /libcore/luni/src/main/java/libcore/io/
GaiException.java 24 * methods fail. This exception contains the native error value, for comparison against the
30 public final int error; field in class:GaiException
32 public GaiException(String functionName, int error) {
34 this.error = error;
37 public GaiException(String functionName, int error, Throwable cause) {
40 this.error = error;
44 * Converts the stashed function name and error value to a human-readable string.
49 String gaiName = OsConstants.gaiName(error);
    [all...]
  /libcore/luni/src/main/native/
java_util_regex_Pattern.cpp 35 // These human-readable error messages were culled from "utypes.h", and then slightly tuned
40 case U_REGEX_INTERNAL_ERROR: return "An internal error was detected";
41 case U_REGEX_RULE_SYNTAX: return "Syntax error in regexp pattern";
48 case U_REGEX_BAD_INTERVAL: return "Error in {min,max} interval";
65 static void throwPatternSyntaxException(JNIEnv* env, UErrorCode status, jstring pattern, UParseError error) {
70 jobject exception = env->NewObject(exceptionClass, method, message, pattern, error.offset);
82 UParseError error; local
83 error.offset = -1;
87 RegexPattern* result = RegexPattern::compile(regexString, flags, error, status);
89 throwPatternSyntaxException(env, status, javaRegex, error);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/mock/
TestLogger.java 26 * {@link #error} is called, and prints everything else to standard error.
31 public void error(Throwable t, String errorFormat, Object... args) { method in class:TestLogger
  /sdk/layoutlib_api/sample/src/com/example/android/render/
StdOutLogger.java 34 public void error(String tag, String message, Object data) { method in class:StdOutLogger
36 System.err.println("ERROR: [" + tag + "] " + message);
38 System.err.println("ERROR: " + message);
43 public void error(String tag, String message, Throwable throwable, Object data) { method in class:StdOutLogger
44 error(tag, message, data); method
67 public void error(Throwable t, String errorFormat, Object... args) { method in class:StdOutLogger
68 error(null /*tag*/, String.format(errorFormat, args), t, null /*data*/); method
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/apicheck/
ApiCallTest2.class.data 
SuppressTest1.class.data 
  /sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/repository/
CaptureErrorHandler.java 24 * A SAX error handler that captures the errors and warnings.
43 * Also fails the unit test if any error was generated.
60 public void error(SAXParseException ex) throws SAXException { method in class:CaptureErrorHandler
61 mErrors += "Error: " + ex.getMessage() + "\n";
69 mErrors += "Fatal Error: " + ex.getMessage() + "\n";
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/core/
SdkLogAdapter.java 63 * Logs an "error" information line.
69 mSdkLog.error(null, " %1$s", log); //$NON-NLS-1$
  /system/extras/libpagemap/
pm_kernel.c 30 int error; local
41 error = errno;
43 return error;
48 error = errno;
51 return error;
67 int error; local
87 error = errno;
90 return error;
105 error = errno;
107 return error;
    [all...]
pm_map.c 35 int error; local
40 error = pm_map_pagemap(map, &pagemap, &len);
41 if (error) return error;
50 error = pm_kernel_count(map->proc->ker, PM_PAGEMAP_PFN(pagemap[i]),
52 if (error) goto out;
62 error = 0;
67 return error;
75 int error; local
80 error = pm_map_pagemap(map, &pagemap, &len)
    [all...]
  /tools/build/builder/src/main/java/com/android/builder/
CommandLineRunner.java 76 mLogger.error(null /*throwable*/, line);

Completed in 901 milliseconds

1 2 3 4 5 6 7 891011>>