Searched defs:ERROR (Results 1 - 25 of 46) sorted by relevance

12

/frameworks/base/libs/androidfw/
H A DUtil.cpp25 #ifdef ERROR
26 #undef ERROR macro
H A DIdmap.cpp27 #ifdef ERROR
28 #undef ERROR macro
74 LOG(ERROR) << "Idmap header is not word aligned.";
79 LOG(ERROR) << "Idmap header is too small.";
85 LOG(ERROR) << StringPrintf("Invalid Idmap file: bad magic value (was 0x%08x, expected 0x%08x)",
93 LOG(ERROR) << StringPrintf("Version mismatch in Idmap (was 0x%08x, expected 0x%08x)",
99 LOG(ERROR) << StringPrintf("Target package ID in Idmap is invalid: 0x%02x",
105 LOG(ERROR) << StringPrintf("Idmap has too many type mappings (was %d, max 255)",
135 LOG(ERROR) << "Type mapping in Idmap is not word aligned";
142 LOG(ERROR) << StringPrint
[all...]
H A DLoadedArsc.cpp31 #ifdef ERROR
32 #undef ERROR macro
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) << "Entr
[all...]
/frameworks/base/core/java/android/webkit/
H A DConsoleMessage.java33 ERROR, enum constant in enum:ConsoleMessage.MessageLevel
/frameworks/base/services/core/jni/BroadcastRadio/
H A Dtypes.h33 ERROR = -0x80000000ll, // Integer.MIN_VALUE member in class:android::server::BroadcastRadio::Status
/frameworks/av/include/media/stagefright/
H A DSimpleDecodingSource.h89 ERROR, enumerator in enum:android::SimpleDecodingSource::State
/frameworks/av/media/libstagefright/include/media/stagefright/
H A DSimpleDecodingSource.h89 ERROR, enumerator in enum:android::SimpleDecodingSource::State
/frameworks/base/core/java/android/os/
H A DCommonTimeUtils.java33 public static final int ERROR = -1; field in class:CommonTimeUtils
235 int ret_val = ERROR;
H A DUpdateEngine.java60 public static final int ERROR = 1; field in class:UpdateEngine.ErrorCodeConstants
H A DCommonTimeConfig.java38 public static final int ERROR = -1; field in class:CommonTimeConfig
129 * {@link #ERROR} or {@link #ERROR_DEAD_OBJECT} in case of failure.
158 * {@link #ERROR}, {@link #ERROR_BAD_VALUE} or {@link #ERROR_DEAD_OBJECT} in case of failure.
183 * {@link #ERROR}, {@link #ERROR_BAD_VALUE} or {@link #ERROR_DEAD_OBJECT} in case of failure.
219 * {@link #ERROR}, {@link #ERROR_BAD_VALUE} or {@link #ERROR_DEAD_OBJECT} in case of failure.
248 * {@link #ERROR}, {@link #ERROR_BAD_VALUE} or {@link #ERROR_DEAD_OBJECT} in case of failure.
275 * {@link #ERROR}, {@link #ERROR_BAD_VALUE} or {@link #ERROR_DEAD_OBJECT} in case of failure.
305 * {@link #ERROR}, {@link #ERROR_BAD_VALUE} or {@link #ERROR_DEAD_OBJECT} in case of failure.
334 * {@link #ERROR} or {@link #ERROR_DEAD_OBJECT} in case of failure.
353 * mode while it is actively bound to a network will fail with the status code {@link #ERROR}
[all...]
/frameworks/base/libs/androidfw/include/androidfw/
H A DChunk.h25 #ifdef ERROR
26 #undef ERROR macro
82 // LOG(ERROR) << iter.GetLastError();
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DMediaRecorderStateErrors.java28 ERROR, enum constant in enum:MediaRecorderStateErrors.MediaRecorderState
H A DMediaPlayerStateErrors.java32 ERROR, enum constant in enum:MediaPlayerStateErrors.MediaPlayerState
/frameworks/base/services/backup/java/com/android/server/backup/transport/
H A DTransportUtils.java41 log(Priority.ERROR, TAG, "Transport not available");
77 int ERROR = Log.ERROR; field in interface:TransportUtils.Priority
/frameworks/multidex/library/test/src/android/util/
H A DLog.java51 public static final int ERROR = 6; field in class:Log
156 * Send an {@link #ERROR} log message.
162 return println(LOG_ID_MAIN, ERROR, tag, msg);
166 * Send a {@link #ERROR} log message and log the exception.
173 return println(LOG_ID_MAIN, ERROR, tag, msg + '\n' + getStackTraceString(tr));
/frameworks/base/core/java/com/android/internal/widget/
H A DVerifyCredentialResponse.java35 public static final VerifyCredentialResponse ERROR field in class:VerifyCredentialResponse
147 response = VerifyCredentialResponse.ERROR;
152 response = VerifyCredentialResponse.ERROR;
/frameworks/base/services/net/java/android/net/util/
H A DSharedLog.java41 ERROR, enum constant in enum:SharedLog.Category
86 Log.e(mTag, record(Category.ERROR, e.toString()));
90 Log.e(mTag, record(Category.ERROR, msg));
/frameworks/base/tools/aapt/
H A DSourcePos.cpp16 ERROR enumerator in enum:ErrorPos::Level
76 case ERROR:
120 g_errors.push_back(ErrorPos(this->file, this->line, msg, ErrorPos::ERROR));
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DCaptureSequencer.h130 ERROR, enumerator in enum:android::camera2::CaptureSequencer::CaptureState
/frameworks/base/core/java/android/util/
H A DLog.java38 * ERROR, WARN, INFO, DEBUG, VERBOSE. Verbose should never be compiled
84 public static final int ERROR = 6; field in class:Log
208 * Where level is either VERBOSE, DEBUG, INFO, WARN, ERROR, ASSERT, or SUPPRESS. SUPPRESS will
234 * Send an {@link #ERROR} log message.
240 return println_native(LOG_ID_MAIN, ERROR, tag, msg);
244 * Send a {@link #ERROR} log message and log the exception.
251 return printlns(LOG_ID_MAIN, ERROR, tag, msg, tr);
300 // Only mark this as ERROR, do not use ASSERT since that should be
303 int bytes = printlns(logId, ERROR, tag, msg, localStack ? what : tr);
/frameworks/base/telecomm/java/android/telecom/
H A DDisconnectCause.java38 public static final int ERROR = TelecomProtoEnums.ERROR; // = 1 field in class:DisconnectCause
264 case ERROR:
265 code = "ERROR";
H A DLog.java56 public static boolean ERROR = isLoggable(android.util.Log.ERROR); field in class:Log
141 if (ERROR) {
147 if (ERROR) {
349 ERROR = isLoggable(android.util.Log.ERROR);
/frameworks/base/tools/aapt2/util/
H A DUtil.h36 // which will pull in the ERROR definition. This conflicts
38 // ERROR, but it gets included too early (before winsock2.h).
39 #ifdef ERROR
40 #undef ERROR macro
/frameworks/ex/common/java/com/android/common/speech/
H A DLoggingEvents.java109 public static final int ERROR = 13; field in class:LoggingEvents.VoiceIme
/frameworks/ml/nn/runtime/
H A DExecutionPlan.h219 enum class Kind { ERROR, EMPTY, SIMPLE, COMPOUND }; member in class:android::nn::ExecutionPlan::Kind

Completed in 499 milliseconds

12