Searched refs:error (Results 1 - 25 of 66) sorted by relevance

123

/art/runtime/
H A Dzip_archive.cc44 const int32_t error = ExtractEntryToFile(handle_, zip_entry_, file.Fd()); local
45 if (error) {
46 *error_msg = std::string(ErrorCodeString(error));
67 const int32_t error = ExtractToMemory(handle_, zip_entry_, local
69 if (error) {
70 *error_msg = std::string(ErrorCodeString(error));
95 const int32_t error = OpenArchive(filename, &handle); local
96 if (error) {
97 *error_msg = std::string(ErrorCodeString(error));
111 const int32_t error local
127 const int32_t error = FindEntry(handle_, ZipEntryName(name), zip_entry.get()); local
[all...]
H A Dread_barrier_c.h43 #error "Only one of Baker or Brooks can be enabled at a time."
H A Ddebugger.cc443 static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error)
445 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
447 *error = JDWP::ERR_INVALID_OBJECT;
451 *error = JDWP::ERR_INVALID_ARRAY;
454 *error = JDWP::ERR_NONE;
458 static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error)
460 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
462 *error = JDWP::ERR_INVALID_OBJECT;
466 *error = JDWP::ERR_INVALID_CLASS;
469 *error
770 JDWP::JdwpError error; local
821 JDWP::JdwpError error; local
831 JDWP::JdwpError error; local
852 JDWP::JdwpError error; local
918 JDWP::JdwpError error; local
936 JDWP::JdwpError error; local
958 JDWP::JdwpError error; local
975 JDWP::JdwpError error; local
992 JDWP::JdwpError error; local
1006 JDWP::JdwpError error; local
1016 JDWP::JdwpError error; local
1037 JDWP::JdwpError error; local
1061 JDWP::JdwpError error; local
1104 JDWP::JdwpError error; local
1139 JDWP::JdwpError error; local
1155 JDWP::JdwpError error; local
1166 JDWP::JdwpError error; local
1181 JDWP::JdwpError error; local
1222 JDWP::JdwpError error; local
1232 JDWP::JdwpError error; local
1291 JDWP::JdwpError error; local
1344 JDWP::JdwpError error; local
1368 JDWP::JdwpError error; local
1411 JDWP::JdwpError error; local
1430 JDWP::JdwpError error; local
1446 JDWP::JdwpError error; local
1550 JDWP::JdwpError error; local
1577 JDWP::JdwpError error; local
1607 JDWP::JdwpError error; local
1814 JDWP::JdwpError error; local
1909 JDWP::JdwpError error; local
1941 JDWP::JdwpError error; local
1976 JDWP::JdwpError error; local
2020 JDWP::JdwpError error; local
2042 JDWP::JdwpError error; local
2093 JDWP::JdwpError error; local
2110 JDWP::JdwpError error; local
2161 JDWP::JdwpError error; local
2239 JDWP::JdwpError error; local
2259 JDWP::JdwpError error; local
2271 JDWP::JdwpError error; local
2350 JDWP::JdwpError error; local
2405 JDWP::JdwpError error; local
2440 JDWP::JdwpError error; local
2462 JDWP::JdwpError error; local
2513 JDWP::JdwpError error; local
2568 JDWP::JdwpError error; local
2622 JDWP::JdwpError error = JDWP::ERR_NONE; local
2739 JDWP::JdwpError error; local
2785 JDWP::JdwpError error = JDWP::ERR_NONE; local
3803 JDWP::JdwpError error; local
3851 JDWP::JdwpError error; local
4122 JDWP::JdwpError error = Dbg::StringToUtf8(result_value, &result_string); local
[all...]
/art/tools/dexfuzz/src/dexfuzz/
H A DStreamConsumer.java31 * output and error StreamConsumers.
92 Log.error("Client of StreamConsumer was interrupted while waiting for output?");
134 Log.error("StreamConsumer stopped consuming, but was not told to?");
141 Log.error("StreamConsumer caught IOException while consuming");
144 Log.error("StreamConsumer caught InterruptedException while consuming");
159 Log.error("StreamConsumer caught InterruptedException while waiting for work");
172 Log.error("invalid state: StreamConsumer told about work, but not CONSUMING?");
173 Log.error("state was: " + getCurrentState());
188 Log.error("StreamConsumer Unexpected state: " + state + ", expected " + previousState);
H A DOptions.java147 * accordingly. Report an error and print usage info if the flag is not
203 Log.error("Unrecognised flag: --" + flag);
210 * accordingly. Report an error and print usage info if the key is not
261 Log.error("Unrecognised key: --" + key);
286 Log.error("Unable to open mutation probability table file: " + tableFilename);
288 Log.error("Unable to read mutation probability table file: " + tableFilename);
300 Log.error("Unrecognised option: " + arg);
355 Log.error("--repeat must be at least 1!");
359 Log.error("Cannot use --repeat with --seed");
363 Log.error("Canno
[all...]
H A DLog.java56 public static void error(String msg) { method in class:Log
71 * Reports error and then terminates the program.
74 error(msg);
H A DExecutionResult.java26 public List<String> error; field in class:ExecutionResult
67 * Get only the error, with all lines concatenated together, excluding newline characters.
72 for (String line : error) {
81 * Get only the error, with all lines concatenated together, including newline characters.
86 for (String line : error) {
95 * Get both the output and error, concatenated together, excluding newline characters.
H A DDexFuzz.java50 Log.error("Failed to validate options.");
/art/tools/
H A Dcpplint.py120 error messages whose category names pass the filters will be printed.
157 # We categorize each error message we print. Here are the categories.
159 # If you add a new error message with a new category, add it to the list
352 # {str, set(int)}: a map from error categories to sets of linenumbers
360 def ParseNolintSuppressions(filename, raw_line, linenum, error):
361 """Updates the global list of error-suppressions.
364 error_suppressions store. Reports an error if the NOLINT comment
371 error: function, an error handler.
385 error(filenam
[all...]
H A Danalyze-init-failures.py59 # The error line should be next.
66 # Found an error line.
67 error = m.group(1)
68 # print('Is an error %s' % error)
81 # Record the root error.
86 root_errors[root_err_class] = error
/art/test/008-exceptions/src/
H A DMain.java85 } catch (Exception error) {
86 error.printStackTrace();
/art/runtime/gc/
H A Dcollector_type.h58 #error "ART default GC type must be set"
/art/runtime/entrypoints/
H A Druntime_asm_entrypoints.h23 #error "File and symbols only for use within libart."
/art/runtime/jdwp/
H A Dobject_registry.h86 template<typename T> T Get(JDWP::ObjectId id, JDWP::JdwpError* error)
89 *error = JDWP::ERR_NONE;
92 return down_cast<T>(InternalGet(id, error));
121 mirror::Object* InternalGet(JDWP::ObjectId id, JDWP::JdwpError* error)
/art/compiler/optimizing/
H A Dgraph_checker.h73 // Report a new error.
74 void AddError(const std::string& error) { argument
75 errors_.push_back(error);
H A Doptimizing_cfi_test.cc47 std::string error; local
48 isa_features.reset(InstructionSetFeatures::FromVariant(isa, "default", &error));
/art/disassembler/
H A DAndroid.mk33 $$(error expected target or host for argument 1, received $(1))
38 $$(error expected ndebug or debug for argument 2, received $(2))
/art/runtime/base/
H A Dlogging.cc141 LogMessageData(const char* file, unsigned int line, LogSeverity severity, int error) argument
145 error_(error) {
185 LogMessage::LogMessage(const char* file, unsigned int line, LogSeverity severity, int error) argument
186 : data_(new LogMessageData(file, line, severity, error)) {
/art/compiler/dex/quick/
H A Dquick_cfi_test.cc76 std::string error; local
77 isa_features.reset(InstructionSetFeatures::FromVariant(isa, "default", &error));
/art/build/
H A DAndroid.common.mk57 $(error Do not know what to do with this multi-target configuration!)
H A DAndroid.oat.mk33 # Use dex2oat debug version for better error reporting
72 $$(error found $(1) expected default, interpreter, jit or optimizing)
84 $$(error found $(2) expected pic or no-pic)
186 $$(error found $(1) expected default, interpreter, jit or optimizing)
198 $$(error found $(2) expected pic or no-pic)
/art/test/
H A DAndroid.libnativebridgetest.mk33 $$(error expected target or host for argument 1, received $(1))
/art/test/401-optimizing-compiler/src/
H A DMain.java22 Error error = null;
26 error = e;
28 System.out.println(error);
/art/tools/dexfuzz/src/dexfuzz/listeners/
H A DUniqueProgramTrackerListener.java182 Log.error("Failed to successfully write out the unique programs DB!");
183 Log.error("Old DB should be saved in " + databaseFile + ".old");
200 Log.error("Failed to save divergent program! Does divergent_programs/ exist?");
/art/compiler/jit/
H A Djit_compiler.cc132 std::string error; local
133 if (verifier::MethodVerifier::VerifyMethod(method, true, &error) ==
136 << " due to verification failure " << error;

Completed in 9556 milliseconds

123