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

1234

/art/test/1337-gc-coverage/
H A Dcheck17 # Check that the string "error" isn't present
18 if grep error "$2"; then
/art/test/148-multithread-gc-annotations/
H A Dcheck17 # Check that the string "error" isn't present
18 if grep error "$2"; then
/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_, ZipString(name), zip_entry.get()); local
[all...]
H A Dread_barrier_c.h36 #error "ART read barrier type must be set"
53 #error "Only one of Baker or Brooks can be enabled at a time."
H A Ddebugger.cc350 static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error)
352 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
354 *error = JDWP::ERR_INVALID_OBJECT;
358 *error = JDWP::ERR_INVALID_ARRAY;
361 *error = JDWP::ERR_NONE;
365 static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error)
367 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
369 *error = JDWP::ERR_INVALID_OBJECT;
373 *error = JDWP::ERR_INVALID_CLASS;
376 *error
709 JDWP::JdwpError error; local
760 JDWP::JdwpError error; local
770 JDWP::JdwpError error; local
791 JDWP::JdwpError error; local
856 JDWP::JdwpError error; local
874 JDWP::JdwpError error; local
896 JDWP::JdwpError error; local
913 JDWP::JdwpError error; local
930 JDWP::JdwpError error; local
944 JDWP::JdwpError error; local
954 JDWP::JdwpError error; local
975 JDWP::JdwpError error; local
999 JDWP::JdwpError error; local
1036 JDWP::JdwpError error; local
1071 JDWP::JdwpError error; local
1087 JDWP::JdwpError error; local
1098 JDWP::JdwpError error; local
1113 JDWP::JdwpError error; local
1154 JDWP::JdwpError error; local
1164 JDWP::JdwpError error; local
1223 JDWP::JdwpError error; local
1280 JDWP::JdwpError error; local
1312 JDWP::JdwpError error; local
1355 JDWP::JdwpError error; local
1374 JDWP::JdwpError error; local
1390 JDWP::JdwpError error; local
1492 JDWP::JdwpError error; local
1520 JDWP::JdwpError error; local
1545 JDWP::JdwpError error; local
1752 JDWP::JdwpError error; local
1847 JDWP::JdwpError error; local
1879 JDWP::JdwpError error; local
1914 JDWP::JdwpError error; local
1958 JDWP::JdwpError error; local
1979 JDWP::JdwpError error; local
2029 JDWP::JdwpError error; local
2046 JDWP::JdwpError error; local
2096 JDWP::JdwpError error; local
2176 JDWP::JdwpError error; local
2196 JDWP::JdwpError error; local
2208 JDWP::JdwpError error; local
2287 JDWP::JdwpError error; local
2342 JDWP::JdwpError error; local
2377 JDWP::JdwpError error; local
2399 JDWP::JdwpError error; local
2450 JDWP::JdwpError error; local
2507 JDWP::JdwpError error; local
2561 JDWP::JdwpError error = JDWP::ERR_NONE; local
2678 JDWP::JdwpError error; local
2724 JDWP::JdwpError error = JDWP::ERR_NONE; local
3790 JDWP::JdwpError error; local
3839 JDWP::JdwpError error; local
4117 JDWP::JdwpError error = Dbg::StringToUtf8(result_value, &result_string); local
[all...]
/art/profman/
H A Dprofile_assistant.cc72 static bool InitFlock(const std::string& filename, ScopedFlock& flock, std::string* error) { argument
73 return flock.Init(filename.c_str(), O_RDWR, /* block */ true, error);
76 static bool InitFlock(int fd, ScopedFlock& flock, std::string* error) { argument
81 return flock.Init(&file, error);
89 bool Init(const std::vector<std::string>& filenames, /* out */ std::string* error) { argument
91 if (!InitFlock(filenames[i], flocks_[i], error)) {
92 *error += " (index=" + std::to_string(i) + ")";
100 bool Init(const std::vector<int>& fds, /* out */ std::string* error) { argument
103 if (!InitFlock(fds[i], flocks_[i], error)) {
104 *error
121 std::string error; local
140 std::string error; 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.
/art/tools/
H A Dcpplint.py124 error messages whose category names pass the filters will be printed.
161 # We categorize each error message we print. Here are the categories.
163 # If you add a new error message with a new category, add it to the list
356 # {str, set(int)}: a map from error categories to sets of linenumbers
364 def ParseNolintSuppressions(filename, raw_line, linenum, error):
365 """Updates the global list of error-suppressions.
368 error_suppressions store. Reports an error if the NOLINT comment
375 error: function, an error handler.
389 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.java17 // An error class.
35 // An error that doesn't have a <init>(String) method.
105 } catch (Exception error) {
106 error.printStackTrace(System.out);
128 } catch (Exception error) {
129 error.printStackTrace(System.out);
/art/runtime/gc/
H A Dcollector_type.h64 #error "ART default GC type must be set"
/art/runtime/jit/
H A Doffline_profiling_info.cc81 std::string error; local
82 if (!flock.Init(filename.c_str(), O_RDWR | O_NOFOLLOW | O_CLOEXEC, /* block */ false, &error)) {
83 LOG(WARNING) << "Couldn't lock the profile file " << filename << ": " << error; local
91 ProfileLoadSatus status = fileInfo.LoadInternal(fd, &error);
113 << filename << ": " << error; local
115 LOG(WARNING) << "Could not load profile data from file " << filename << ": " << error; local
312 // -1 if there was an IO error
346 /*out*/std::string* error) {
352 *error += "Profile EOF reached prematurely for " + source;
355 *error
343 FillFromFd( int fd, const std::string& source, std::string* error) argument
364 ReadProfileHeader( int fd, uint16_t* number_of_lines, std::string* error) argument
393 ReadProfileLineHeader( int fd, ProfileLineHeader* line_header, std::string* error) argument
423 ReadProfileLine( int fd, const ProfileLineHeader& line_header, std::string* error) argument
460 std::string error; local
471 LoadInternal( int fd, std::string* error) argument
[all...]
H A Doffline_profiling_info.h136 /*out*/std::string* error);
155 ProfileLoadSatus LoadInternal(int fd, std::string* error);
159 /*out*/std::string* error);
163 /*out*/std::string* error);
166 /*out*/std::string* error);
/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.h82 template<typename T> T Get(JDWP::ObjectId id, JDWP::JdwpError* error)
85 *error = JDWP::ERR_NONE;
88 return down_cast<T>(InternalGet(id, error));
115 mirror::Object* InternalGet(JDWP::ObjectId id, JDWP::JdwpError* error)
/art/runtime/simulator/
H A DAndroid.mk30 $$(error expected target or host for argument 1, received $(1))
35 $$(error expected ndebug or debug for argument 2, received $(2))
/art/compiler/optimizing/
H A Dgraph_checker.h94 // Report a new error.
95 void AddError(const std::string& error) { argument
96 errors_.push_back(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/benchmark/
H A DAndroid.mk30 $$(error expected target or host for argument 1, received $(1))
/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/test/
H A DAndroid.libarttest.mk60 $$(error expected target or host for argument 1, received $(1))
65 $$(error d or empty for argument 2, received $(2))
H A DAndroid.libnativebridgetest.mk33 $$(error expected target or host for argument 1, received $(1))

Completed in 464 milliseconds

1234