Home
last modified time | relevance | path

Searched refs:error (Results 1 – 25 of 71) sorted by relevance

123

/art/runtime/
Dzip_archive.cc44 const int32_t error = ExtractEntryToFile(handle_, zip_entry_, file.Fd()); in ExtractToFile() local
45 if (error) { in ExtractToFile()
46 *error_msg = std::string(ErrorCodeString(error)); in ExtractToFile()
67 const int32_t error = ExtractToMemory(handle_, zip_entry_, in ExtractToMemMap() local
69 if (error) { in ExtractToMemMap()
70 *error_msg = std::string(ErrorCodeString(error)); in ExtractToMemMap()
95 const int32_t error = OpenArchive(filename, &handle); in Open() local
96 if (error) { in Open()
97 *error_msg = std::string(ErrorCodeString(error)); in Open()
111 const int32_t error = OpenArchiveFd(fd, filename, &handle); in OpenFromFd() local
[all …]
Ddebugger.cc443 static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error) in DecodeNonNullArray() argument
445 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error); in DecodeNonNullArray()
447 *error = JDWP::ERR_INVALID_OBJECT; in DecodeNonNullArray()
451 *error = JDWP::ERR_INVALID_ARRAY; in DecodeNonNullArray()
454 *error = JDWP::ERR_NONE; in DecodeNonNullArray()
458 static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error) in DecodeClass() argument
460 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error); in DecodeClass()
462 *error = JDWP::ERR_INVALID_OBJECT; in DecodeClass()
466 *error = JDWP::ERR_INVALID_CLASS; in DecodeClass()
469 *error = JDWP::ERR_NONE; in DecodeClass()
[all …]
Dread_barrier_c.h43 #error "Only one of Baker or Brooks can be enabled at a time."
/art/tools/
Dcpplint.py360 def ParseNolintSuppressions(filename, raw_line, linenum, error): argument
385 error(filename, linenum, 'readability/nolint', 5,
700 def Check(self, error, filename, linenum): argument
723 error(filename, linenum, 'readability/fn_size', error_level,
961 def RemoveMultiLineComments(filename, lines, error): argument
970 error(filename, lineix_begin + 1, 'readability/multiline_comment', 5,
1105 def CheckForCopyright(filename, lines, error): argument
1113 error(filename, 0, 'legal/copyright', 5,
1142 def CheckForHeaderGuard(filename, lines, error): argument
1177 error(filename, 0, 'build/header_guard', 5,
[all …]
Danalyze-init-failures.py67 error = m.group(1)
86 root_errors[root_err_class] = error
/art/tools/dexfuzz/src/dexfuzz/
DOptions.java203 Log.error("Unrecognised flag: --" + flag); in handleFlagOption()
261 Log.error("Unrecognised key: --" + key); in handleKeyValueOption()
286 Log.error("Unable to open mutation probability table file: " + tableFilename); in setupMutationLikelihoodTable()
288 Log.error("Unable to read mutation probability table file: " + tableFilename); in setupMutationLikelihoodTable()
300 Log.error("Unrecognised option: " + arg); in readOptions()
355 Log.error("--repeat must be at least 1!"); in validateOptions()
359 Log.error("Cannot use --repeat with --seed"); in validateOptions()
363 Log.error("Cannot both load and dump mutations"); in validateOptions()
367 Log.error("Must use --repeat if you have provided more than one input"); in validateOptions()
371 Log.error("Cannot use --method-mutations with a negative value."); in validateOptions()
[all …]
DStreamConsumer.java92 Log.error("Client of StreamConsumer was interrupted while waiting for output?"); in getOutput()
134 Log.error("StreamConsumer stopped consuming, but was not told to?"); in consume()
141 Log.error("StreamConsumer caught IOException while consuming"); in consume()
144 Log.error("StreamConsumer caught InterruptedException while consuming"); in consume()
159 Log.error("StreamConsumer caught InterruptedException while waiting for work"); in run()
172 Log.error("invalid state: StreamConsumer told about work, but not CONSUMING?"); in run()
173 Log.error("state was: " + getCurrentState()); in run()
188 Log.error("StreamConsumer Unexpected state: " + state + ", expected " + previousState); in changeState()
DExecutionResult.java26 public List<String> error; field in ExecutionResult
72 for (String line : error) { in getFlattenedError()
86 for (String line : error) { in getFlattenedErrorWithNewlines()
DLog.java56 public static void error(String msg) { in error() method in Log
74 error(msg); in errorAndQuit()
/art/runtime/jdwp/
Dobject_registry.h86 template<typename T> T Get(JDWP::ObjectId id, JDWP::JdwpError* error) in Get() argument
89 *error = JDWP::ERR_NONE; in Get()
92 return down_cast<T>(InternalGet(id, error)); in Get()
121 mirror::Object* InternalGet(JDWP::ObjectId id, JDWP::JdwpError* error)
Djdwp_handler.cc114 JDWP::JdwpError error = Dbg::PrepareInvokeMethod(request->GetId(), thread_id, object_id, in RequestInvoke() local
117 if (error == JDWP::ERR_NONE) { in RequestInvoke()
122 return error; in RequestInvoke()
879 JDWP::JdwpError error = Dbg::StringToUtf8(stringObject, &str); in SR_Value() local
880 if (error != JDWP::ERR_NONE) { in SR_Value()
881 return error; in SR_Value()
899 JdwpError error = Dbg::GetThreadName(thread_id, &name); in TR_Name() local
900 if (error != ERR_NONE) { in TR_Name()
901 return error; in TR_Name()
956 JdwpError error = Dbg::GetThreadStatus(thread_id, &threadStatus, &suspendStatus); in TR_Status() local
[all …]
/art/test/008-exceptions/src/
DMain.java85 } catch (Exception error) { in exceptionsRethrowClassInitFailure()
86 error.printStackTrace(); in exceptionsRethrowClassInitFailure()
/art/test/075-verification-error/
Dinfo.txt1 Exercise deferred verification error reporting.
/art/runtime/base/
Dlogging.cc141 LogMessageData(const char* file, unsigned int line, LogSeverity severity, int error) in LogMessageData() argument
145 error_(error) { in LogMessageData()
185 LogMessage::LogMessage(const char* file, unsigned int line, LogSeverity severity, int error) in LogMessage() argument
186 : data_(new LogMessageData(file, line, severity, error)) { in LogMessage()
/art/compiler/optimizing/
Dgraph_checker.h74 void AddError(const std::string& error) { in AddError() argument
75 errors_.push_back(error); in AddError()
Doptimizing_cfi_test.cc47 std::string error; in TestImpl() local
48 isa_features.reset(InstructionSetFeatures::FromVariant(isa, "default", &error)); in TestImpl()
/art/test/401-optimizing-compiler/src/
DMain.java22 Error error = null; in main() local
26 error = e; in main()
28 System.out.println(error); in main()
/art/tools/dexfuzz/src/dexfuzz/listeners/
DUniqueProgramTrackerListener.java182 Log.error("Failed to successfully write out the unique programs DB!"); in saveUniqueProgsData()
183 Log.error("Old DB should be saved in " + databaseFile + ".old"); in saveUniqueProgsData()
200 Log.error("Failed to save divergent program! Does divergent_programs/ exist?"); in saveDivergentProgram()
/art/disassembler/
DAndroid.mk33 $$(error expected target or host for argument 1, received $(1))
38 $$(error expected ndebug or debug for argument 2, received $(2))
/art/test/024-illegal-access/
Dinfo.txt2 error. Also try to access a non-public class in a different package with
/art/runtime/gc/
Dcollector_type.h58 #error "ART default GC type must be set"
/art/build/
DAndroid.oat.mk72 $$(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/runtime/entrypoints/
Druntime_asm_entrypoints.h23 #error "File and symbols only for use within libart."
/art/test/087-gc-after-link/
Dinfo.txt1 This test causes a linkage error, which calls dvmFreeClassInnards on
/art/compiler/dex/quick/
Dquick_cfi_test.cc76 std::string error; in TestImpl() local
77 isa_features.reset(InstructionSetFeatures::FromVariant(isa, "default", &error)); in TestImpl()

123