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

1 2 3 4 5

  /external/clearsilver/cs/
test6.cs 6 ERROR
13 ERROR, doesn't exist
17 ERROR, doesn't exist
  /external/webkit/WebKit/mac/Misc/
WebAssertions.h 35 #define ERROR(...) ((void)0)
  /system/core/init/
log.h 26 #define ERROR(x...) log_write(3, "<3>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
  /build/tools/apriori/
debug.h 77 #define ERROR PRINT
  /build/tools/iself/
debug.h 79 #define ERROR PRINT
  /build/tools/isprelinked/
debug.h 77 #define ERROR PRINT
  /build/tools/lsd/
debug.h 82 #define ERROR(x...) fprintf(stderr, ##x)
  /build/tools/soslim/
debug.h 77 #define ERROR(x...) fprintf(stderr, ##x)
  /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/elfcopy/
debug.h 77 #define ERROR(x...) fprintf(stderr, ##x)
  /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 30 ERROR,
82 * Reports test run failed to execute due to a fatal 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...]
  /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 32 * Error return code, in which case an error message is guaranteed to be defined.
35 final static int ERROR = 1;
40 * @see #ERROR
55 * Returns the error message.
56 * <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)
  /external/mtpd/
mtpd.h 38 ERROR = 3,
49 * 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 *
138 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 695 milliseconds

1 2 3 4 5