HomeSort by relevance Sort by last modified time
    Searched defs:ERROR (Results 276 - 300 of 1355) sorted by null

<<11121314151617181920>>

  /frameworks/base/libs/androidfw/
LoadedArsc.cpp 31 #ifdef ERROR
32 #undef ERROR
96 LOG(ERROR) << "RES_TABLE_TYPE_TYPE has invalid ID 0.";
102 LOG(ERROR) << "RES_TABLE_TYPE_TYPE has too many entries (" << entry_count << ").";
112 LOG(ERROR) << "RES_TABLE_TYPE_TYPE entry offsets overlap actual entry data.";
117 LOG(ERROR) << "RES_TABLE_TYPE_TYPE entry offsets extend beyond chunk.";
122 LOG(ERROR) << "RES_TABLE_TYPE_TYPE entries start at unaligned address.";
131 LOG(ERROR) << "Entry at offset " << entry_offset << " is not 4-byte aligned.";
138 LOG(ERROR) << "Entry at offset " << entry_offset << " is too large.";
146 LOG(ERROR) << "Entry at offset " << entry_offse
    [all...]
  /frameworks/base/telecomm/java/android/telecom/
Log.java 56 public static boolean ERROR = isLoggable(android.util.Log.ERROR);
141 if (ERROR) {
147 if (ERROR) {
349 ERROR = isLoggable(android.util.Log.ERROR);
435 msg = format + " (An error occurred while formatting the message.)";
  /frameworks/ml/nn/runtime/
ExecutionPlan.h 219 enum class Kind { ERROR, EMPTY, SIMPLE, COMPOUND };
  /hardware/libhardware/tests/hwc/
cnativewindow.c 42 #define ERROR(fmt...) _TRACE(0, fmt)
205 ERROR("hwc->prepare failed r=%d\n",r);
215 ERROR("hwc->set failed, r=%d\n", r);
308 ERROR("query %d unknown!\n", what);
346 ERROR("cannot resize buffers to %d x %d\n", w, h);
350 ERROR("perform %d unknown!\n", op);
384 ERROR("cannot open hw composer module\n");
389 ERROR("cannot open hwc device\n");
397 ERROR("hwc version less than 1.1\n");
405 ERROR("cannot get configs\n")
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/model/
Contact.java 80 /** Constructor for special results, namely "no contact found" and "error". */
82 if (status == Status.ERROR && exception == null) {
83 throw new IllegalArgumentException("ERROR result must have exception");
190 return new Contact(requestedUri, Status.ERROR, exception);
245 return mStatus == Status.ERROR;
379 /** There was an error loading the contact */
380 ERROR,
  /system/core/adb/
sysdeps.h 172 int network_inaddr_any_server(int port, int type, std::string* error);
174 inline int network_local_client(const char* name, int namespace_id, int type, std::string* error) {
178 inline int network_local_server(const char* name, int namespace_id, int type, std::string* error) {
183 std::string* error);
249 // macro technique and instead cause a link error if seekdir is called.
498 inline int _fd_set_error_str(int fd, std::string* error) {
500 *error = strerror(errno);
505 inline int network_inaddr_any_server(int port, int type, std::string* error) {
506 return _fd_set_error_str(socket_inaddr_any_server(port, type), error);
509 inline int network_local_client(const char* name, int namespace_id, int type, std::string* error) {
    [all...]
  /system/core/base/include/android-base/
logging.h 35 // PLOG(ERROR) << "Write failed";
37 // The output will be something like `Write failed: I/O error`.
56 // following code to suppress the evil ERROR macro:
58 // windows.h includes wingdi.h which defines an evil macro ERROR.
59 #ifdef ERROR
60 #undef ERROR
72 #error "_LOG_TAG_INTERNAL must not be defined"
88 ERROR,
179 using ::android::base::ERROR; \
317 // Perform the pthread function call(args), LOG(FATAL) on error
    [all...]
  /system/core/logwrapper/
logwrap.c 40 #define ERROR(fmt, args...) \
48 ERROR(fmt, ## args); \
338 ERROR("Cannot log to file %s\n", file_path);
351 ERROR("poll failed\n");
492 ERROR("failed to lock signal_fd mutex\n");
499 ERROR("Cannot create parent ptty\n");
507 ERROR("Problem with /dev/ptmx\n");
514 ERROR("Cannot open child_ptty\n");
527 ERROR("Failed to fork\n");
  /bionic/libc/kernel/uapi/rdma/hfi/
hfi1_user.h 71 ERROR
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceNetwork.java 88 public final static MonkeyCommandReturn ERROR = new MonkeyCommandReturn(false);
240 * @return the integer keycode value, or -1 on error.
325 return ERROR;
479 private static final String ERROR_STR = "ERROR";
754 // Translate the command line. This will handle returning error/ok to the user
764 * Returns ERROR to the user.
771 * Returns ERROR to the user.
773 * @param msg the error message to include
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/logging/
__init__.py 28 __all__ = ['BASIC_FORMAT', 'BufferingFormatter', 'CRITICAL', 'DEBUG', 'ERROR',
32 'captureWarnings', 'critical', 'debug', 'disable', 'error',
130 ERROR = 40
139 ERROR : 'ERROR',
145 'ERROR' : ERROR,
157 If the level is one of the predefined levels (CRITICAL, ERROR, WARNING,
364 WARNING, ERROR, CRITICAL)
366 "WARNING", "ERROR", "CRITICAL")
1148 def error(self, msg, *args, **kwargs): member in class:Logger
1422 def error(self, msg, *args, **kwargs): member in class:LoggerAdapter
1561 def error(msg, *args, **kwargs): function
    [all...]
  /external/aac/libSBRenc/src/
sbr_def.h 114 #define ERROR(a, b) 1
  /external/apache-xml/src/main/java/org/apache/xalan/xslt/
EnvironmentCheck.java 171 // Check for ERROR keys in the hashtable, and print report
179 logMsg("# Check any 'ERROR' items above against the Xalan FAQs");
202 * with a key that is prefixed with {@link #ERROR 'ERROR.'} so it
204 * constant will be set as well for any error.</p>
207 * own - and even a non-error state doesn't guaruntee that
253 logMsg("# ERROR: writeEnvironmentReport called with null Hashtable");
281 // Note: we could just check for the ERROR key by itself,
285 if (keyStr.startsWith(ERROR))
305 public static final String ERROR = "ERROR."
    [all...]
  /external/doclava/src/com/google/doclava/
Errors.java 32 final Error error; field in class:Errors.ErrorMessage
36 ErrorMessage(int r, Error e, SourcePositionInfo p, String m) {
38 error = e;
55 switch (error.getLevel()) {
58 case ERROR: res.append("\033[31merror: "); break;
63 res.append(" [").append(error.code).append("]");
67 switch (error.getLevel()) {
70 case ERROR: res.append("error "); break
79 public Error error() { method in class:Errors.ErrorMessage
84 public static void error(Error error, MemberInfo mi, String text) { method in class:Errors
101 error(error, mi.position(), text); method
104 public static void error(Error error, SourcePositionInfo where, String text) { method in class:Errors
    [all...]
  /external/kernel-headers/original/uapi/rdma/hfi/
hfi1_user.h 145 /* A Fatal hardware error has occurred. */
165 ERROR
  /external/mesa3d/src/mesa/vbo/
vbo_exec_api.c 517 #undef ERROR
518 #define ERROR(err) _mesa_error( ctx, err, __func__ )
    [all...]
vbo_save_api.c 88 #ifdef ERROR
89 #undef ERROR
828 #define ERROR(err) _mesa_compile_error(ctx, err, __func__);
    [all...]
  /external/python/cpython2/Lib/logging/
__init__.py 28 __all__ = ['BASIC_FORMAT', 'BufferingFormatter', 'CRITICAL', 'DEBUG', 'ERROR',
32 'captureWarnings', 'critical', 'debug', 'disable', 'error',
125 ERROR = 40
134 ERROR : 'ERROR',
140 'ERROR' : ERROR,
152 If the level is one of the predefined levels (CRITICAL, ERROR, WARNING,
365 WARNING, ERROR, CRITICAL)
367 "WARNING", "ERROR", "CRITICAL"
1183 def error(self, msg, *args, **kwargs): member in class:Logger
1458 def error(self, msg, *args, **kwargs): member in class:LoggerAdapter
1597 def error(msg, *args, **kwargs): function
    [all...]
  /external/testng/src/main/java/org/testng/log4testng/
Logger.java 20 * TRACE, DEBUG, INFO, WARN, ERROR and FATAL.
24 * <li>All logging is done using System.out (for levels &lt; ERROR) or System.err. There
60 * LOGGER.error("Unexpected error", exception);
71 private static final int ERROR= i++;
87 /** The standard error stream (this is allways System.err except for unit tests) */
101 levelNames[ERROR] = "ERROR";
257 * Log a message object with the ERROR level including the stack trace of the
268 * Log a message object with the ERROR level.
272 public void error(Object message) { method in class:Logger
283 public void error(Object message, Throwable t) { method in class:Logger
    [all...]
  /frameworks/av/camera/tests/
CameraBinderTests.cpp 148 ERROR,
174 mLastStatus = ERROR;
  /frameworks/base/core/java/android/bluetooth/
BluetoothClass.java 57 * Legacy error value. Applications should use null instead.
61 public static final int ERROR = 0xFF000000;
  /frameworks/base/core/java/android/speech/tts/
TextToSpeech.java 74 public static final int ERROR = -1;
93 public @interface Error {}
199 * @param status {@link TextToSpeech#SUCCESS} or {@link TextToSpeech#ERROR}.
488 * {@link TextToSpeech#SUCCESS} and {@link TextToSpeech#ERROR}.
637 * {@link TextToSpeech#ERROR_NOT_INSTALLED_YET} error, or use a different voice to synthesize
773 dispatchOnInit(ERROR);
774 return ERROR;
779 dispatchOnInit(ERROR);
780 return ERROR;
    [all...]
  /frameworks/base/media/java/android/media/audiofx/
Visualizer.java 119 // Error codes:
125 * Unspecified error.
127 public static final int ERROR = -1;
213 Log.e(TAG, "Error code "+result+" when initializing Visualizer.");
218 throw (new RuntimeException("Cannot initialize Visualizer engine, error: "
640 * <p>If the native media server encounters a fatal error and needs to restart, the binder
643 * instance will fail with the error code {@link #DEAD_OBJECT}. To restore functionality,
  /packages/apps/Contacts/src/com/android/contacts/model/
Contact.java 54 /** There was an error loading the contact */
55 ERROR,
100 * Constructor for special results, namely "no contact found" and "error".
103 if (status == Status.ERROR && exception == null) {
104 throw new IllegalArgumentException("ERROR result must have exception");
131 return new Contact(requestedUri, Status.ERROR, exception);
279 return mStatus == Status.ERROR;
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
CommonControllerOverlay.java 49 ERROR,
176 mState = State.ERROR;
275 boolean error = mErrorView.getVisibility() == View.VISIBLE;
324 (mState != State.LOADING && mState != State.ERROR &&

Completed in 708 milliseconds

<<11121314151617181920>>