HomeSort by relevance Sort by last modified time
    Searched defs:ERROR (Results 1 - 25 of 160) sorted by null

1 2 3 4 5 6 7

  /external/openssh/openbsd-compat/
bsd-cygwin_util.h 37 #undef ERROR
  /external/webkit/Source/WebKit/mac/Misc/
WebAssertions.h 35 #define ERROR(...) ((void)0)
  /system/core/init/
log.h 22 #define ERROR(x...) KLOG_ERROR("init", x)
  /build/tools/fs_get_stats/
fs_get_stats.c 10 #define ERROR(fmt,args...) \
12 fprintf(stderr, "%s:%d: ERROR: " fmt, \
46 ERROR("Invalid arguments\n");
53 ERROR("current permissions must be a number. Got '%s'.\n", argv[1]);
  /cts/libs/vogar-expect/src/vogar/
Result.java 32 ERROR,
  /cts/tools/dasm/src/java_cup/
parse_action.java 5 * Full entries will either be SHIFT(state_num), REDUCE(production), or ERROR.
6 * Objects of this base class will default to ERROR, while the other two
32 /** Constant for action type -- error action. */
33 public static final int ERROR = 0;
49 /** Quick access to the type -- base class defaults to error. */
50 public int kind() {return ERROR;}
57 /* we match all error actions */
58 return other != null && other.kind() == ERROR;
83 public String toString() {return "ERROR";}
  /external/protobuf/src/google/protobuf/testing/
googletest.h 60 // ScopedMemoryLog refers to LOGLEVEL_ERROR as just ERROR.
61 #undef ERROR // defend against promiscuous windows.h
62 static const LogLevel ERROR = LOGLEVEL_ERROR;
64 // Receives copies of all LOG(ERROR) messages while in scope. Sample usage:
68 // const vector<string>& warnings = log.GetMessages(ERROR);
79 // open source version ignores the argument since we always pass ERROR
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/data/rebaselineserver/
util.js 76 log.ERROR = {text: 'Error: ', color: 'red'};
  /development/tools/yuv420sp2rgb/
debug.h 79 #define ERROR PRINT
  /external/chromium/sdch/open-vcdiff/src/
logging.h 23 // Windows API defines ERROR
24 #ifdef ERROR
25 #undef ERROR
26 #endif // ERROR
33 ERROR,
40 #define DFATAL ERROR
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/message/
DisconnectMessage.java 47 public static final String ERROR = "Error";
  /external/markdown/markdown/
commandline.py 12 from logging import DEBUG, INFO, WARN, ERROR, CRITICAL
  /frameworks/base/core/java/android/bluetooth/
AtCommandResult.java 37 public static final int ERROR = 1;
41 private static final String ERROR_STRING = "ERROR";
49 * @param resultCode One of OK, ERROR or UNSOLICITED.
99 case ERROR:
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/testrunner/
ITestRunListener.java 44 ERROR,
87 * Reports test run failed to complete due to a fatal error.
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/
Severity.java 37 * Errors: The issue is known to be a real error that must be addressed.
39 ERROR("Error"),
  /system/core/fastboot/
protocol.c 36 static char ERROR[128];
40 return ERROR;
52 sprintf(ERROR, "status read failed (%s)", strerror(errno));
59 sprintf(ERROR, "status malformed (%d bytes)", r);
78 sprintf(ERROR, "remote: %s", status + 4);
80 strcpy(ERROR, "remote failure");
88 strcpy(ERROR, "data size too large");
95 strcpy(ERROR,"unknown status code");
115 sprintf(ERROR,"command too large");
120 sprintf(ERROR,"command write failed (%s)", strerror(errno))
    [all...]
  /system/core/fs_mgr/
fs_mgr_priv.h 24 #define ERROR(x...) KLOG_ERROR("fs_mgr", x)
  /frameworks/base/core/java/android/webkit/
ConsoleMessage.java 22 * <code>console.log('...')</code>) or a JavaScript error on the page. To receive notifications
33 ERROR,
  /sdk/layoutlib_api/src/com/android/layoutlib/api/
ILayoutResult.java 37 * Error return code, in which case an error message is guaranteed to be defined.
40 final static int ERROR = 1;
45 * @see #ERROR
60 * Returns the error message.
61 * <p/>Only valid when {@link #getSuccess()} returns {@link #ERROR}
  /bionic/linker/
linker_debug.h 35 #error LINKER_DEBUG should be defined to either 1 or 0 in Android.mk
91 #define ERROR(fmt,args...) \
92 _PRINTVF(-1, TRUE, "%s:%d| ERROR: " fmt, __FILE__, __LINE__, ## args)
  /bootable/recovery/
ui.h 34 enum Icon { NONE, INSTALLING, ERROR };
  /external/mtpd/
mtpd.h 37 ERROR = 3,
48 * an error, one should use a negative exit code such as -REMOTE_REQUESTED. */
  /external/tcpdump/
tftp.h 52 #define ERROR 05 /* error code */
59 unsigned short tu_code; /* error code */
62 char th_data[1]; /* data or error string */
71 * Error codes.
  /frameworks/base/core/java/android/net/http/
EventHandler.java 24 * there is an SSL certificate error. error() can occur anywhere
33 * Error codes used in the error() callback. Positive error codes
34 * are reserved for codes sent by http servers. Negative error
40 /** Generic error */
41 public static final int ERROR = -1;
64 /** Generic file error for file:/// loads */
66 /** File not found error for file:/// loads *
119 public void error(int id, String description); method in interface:EventHandler
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaRecorderStateErrors.java 28 ERROR,
31 // Error occurs in the states below?

Completed in 3319 milliseconds

1 2 3 4 5 6 7