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

1 2 3 4 5 6 7 8 91011>>

  /external/pcre/dist/
makevp.bat 39 IF ERRORLEVEL 1 GOTO ERROR
46 IF ERRORLEVEL 1 GOTO ERROR
49 IF ERRORLEVEL 1 GOTO ERROR
51 IF ERRORLEVEL 1 GOTO ERROR
60 :ERROR
62 echo Error while compiling PCRE. Aborting...
  /external/squashfs-tools/kernel/fs/squashfs/
squashfs.h 26 #define ERROR(s, args...) pr_err("SQUASHFS error: "s, ## args)
  /system/core/init/
log.h 22 #define ERROR(x...) init_klog_write(KLOG_ERROR_LEVEL, x)
  /external/valgrind/coregrind/
vgdb.h 58 #define ERROR(errno, ...) ((errno == 0 ? 0 : perror("syscall failed")), \
61 /* same as ERROR, but also exits with status 1 */
93 If an error occurs, resets the valgrind process
  /system/extras/squashfs_utils/
squashfs_utils.c 28 #define ERROR(x...) KLOG_ERROR("squashfs_utils", x)
37 ERROR("Error opening block device (%s)\n", strerror(errno));
43 ERROR("Error reading superblock\n");
48 ERROR("Not a valid squashfs filesystem\n");
  /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/openssh/openbsd-compat/
bsd-cygwin_util.h 37 #undef ERROR
  /external/protobuf/src/google/protobuf/testing/
googletest.h 66 // ScopedMemoryLog refers to LOGLEVEL_ERROR as just ERROR.
67 #undef ERROR // defend against promiscuous windows.h
68 static const LogLevel ERROR = LOGLEVEL_ERROR;
71 // Receives copies of all LOG(ERROR) messages while in scope. Sample usage:
75 // const vector<string>& warnings = log.GetMessages(ERROR);
85 const vector<string>& GetMessages(LogLevel error);
  /external/squashfs-tools/kernel-2.4/fs/squashfs/
squashfs.h 33 #define ERROR(s, args...) printk(KERN_ERR "SQUASHFS error: "s, ## args)
37 printk(KERN_ERR "SQUASHFS error: "s, ## args);\
  /external/squashfs-tools/squashfs-tools/
error.h 24 * error.h
48 #define ERROR(s, args...) \
78 progressbar_error("FATAL ERROR:" s, ##args); \
86 progressbar_error("FATAL ERROR: Out of memory (%s)\n", \
  /external/vogar/src/vogar/
Result.java 32 ERROR,
XmlReportConstants.java 23 public static final String ERROR = "error";
  /packages/apps/Messaging/build/
colorize_errors.py 16 # Given an input stream look for Error: and Warning: lines and colorize those to
27 ERROR = re.compile(r"^Error:")
32 if ERROR.match(line):
  /build/tools/fs_get_stats/
fs_get_stats.c 10 #define ERROR(fmt,args...) \
12 fprintf(stderr, "%s:%d: ERROR: " fmt, \
47 ERROR("Invalid arguments\n");
54 ERROR("current permissions must be a number. Got '%s'.\n", argv[1]);
  /development/tools/yuv420sp2rgb/
debug.h 79 #define ERROR PRINT
  /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
  /art/tools/dexfuzz/src/dexfuzz/
Log.java 23 private static LogTag threshold = LogTag.ERROR;
32 ERROR,
41 return (threshold.ordinal() < LogTag.ERROR.ordinal());
56 public static void error(String msg) { method in class:Log
57 log(LogTag.ERROR, msg);
71 * Reports error and then terminates the program.
74 error(msg);
  /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,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
log.py 9 ERROR = 4
20 if level not in (DEBUG, INFO, WARN, ERROR, FATAL):
26 if level in (WARN, ERROR, FATAL):
45 def error(self, msg, *args): member in class:Log
46 self._log(ERROR, msg, args)
56 error = _global_log.error variable
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
log.py 9 ERROR = 4
20 if level not in (DEBUG, INFO, WARN, ERROR, FATAL):
26 if level in (WARN, ERROR, FATAL):
45 def error(self, msg, *args): member in class:Log
46 self._log(ERROR, msg, args)
56 error = _global_log.error variable
  /system/core/debuggerd/
utility.h 40 #error "Unsupported ABI"
62 ERROR,
  /bionic/tools/relocation_packer/src/
debug.h 7 // LOG(tag) prints messages. Tags are INFO, WARNING, ERROR and FATAL.
18 // CHECK(predicate) logs a FATAL error if predicate is false.
34 enum Severity {INFO = 0, WARNING, ERROR, FATAL};
53 // Set info and error logging streams. Static, not thread-safe.
86 using LogSeverity::ERROR;
  /developers/build/prebuilts/gradle/ActiveNotifications/Application/src/main/java/com/example/android/common/logger/
Log.java 34 public static final int ERROR = android.util.Log.ERROR;
58 * @param priority Log level of the data being logged. Verbose, Error, etc.
74 * @param priority Log level of the data being logged. Verbose, Error, etc.
183 * Prints a message at ERROR priority.
191 println(ERROR, tag, msg, tr);
195 * Prints a message at ERROR priority.

Completed in 644 milliseconds

1 2 3 4 5 6 7 8 91011>>