Searched defs:status (Results 1 - 11 of 11) sorted by relevance

/art/compiler/
H A Dcompiled_class.h26 explicit CompiledClass(mirror::Class::Status status) : status_(status) {} argument
H A Doat_writer.cc306 mirror::Class::Status status; local
308 status = compiled_class->GetStatus();
310 status = mirror::Class::kStatusError;
312 status = mirror::Class::kStatusNotReady;
316 num_non_null_compiled_methods_, status);
452 mirror::Class::Status status; local
454 status = compiled_class->GetStatus();
456 status = mirror::Class::kStatusError;
458 status = mirror::Class::kStatusNotReady;
463 CHECK(gc_map_size != 0 || is_native || status < mirro
1148 OatClass(size_t offset, const std::vector<CompiledMethod*>& compiled_methods, uint32_t num_non_null_compiled_methods, mirror::Class::Status status) argument
[all...]
/art/runtime/native/
H A Djava_lang_Runtime.cc40 static void Runtime_nativeExit(JNIEnv*, jclass, jint status) { argument
41 LOG(INFO) << "System.exit called, status: " << status;
42 Runtime::Current()->CallExitHook(status);
43 exit(status);
/art/runtime/
H A Dparsed_options.cc710 void ParsedOptions::Exit(int status) { argument
711 hook_exit_(status);
H A Doat_file.cc469 mirror::Class::Status status = local
471 CHECK_LT(status, mirror::Class::kStatusMax);
495 status,
503 mirror::Class::Status status,
508 : oat_file_(oat_file), status_(status), type_(type),
502 OatClass(const OatFile* oat_file, mirror::Class::Status status, OatClassType type, uint32_t bitmap_size, const uint32_t* bitmap_pointer, const OatMethodOffsets* methods_pointer) argument
H A Druntime.cc314 void Runtime::CallExitHook(jint status) { argument
317 exit_(status);
H A Dutils.cc1362 int status; local
1363 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
1370 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
1371 *error_msg = StringPrintf("Failed execv(%s) because non-0 exit status",
H A Ddebugger.cc402 static mirror::Array* DecodeArray(JDWP::RefTypeId id, JDWP::JdwpError& status)
406 status = JDWP::ERR_INVALID_OBJECT;
410 status = JDWP::ERR_INVALID_ARRAY;
413 status = JDWP::ERR_NONE;
417 static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError& status)
421 status = JDWP::ERR_INVALID_OBJECT;
425 status = JDWP::ERR_INVALID_CLASS;
428 status = JDWP::ERR_NONE;
852 JDWP::JdwpError status; local
853 mirror::Class* c = DecodeClass(id, status);
862 JDWP::JdwpError status; local
886 JDWP::JdwpError status; local
1018 JDWP::JdwpError status; local
1035 JDWP::JdwpError status; local
1123 JDWP::JdwpError status; local
1166 JDWP::JdwpError status; local
1217 JDWP::JdwpError status; local
1228 JDWP::JdwpError status; local
1282 JDWP::JdwpError status; local
1292 JDWP::JdwpError status; local
1352 JDWP::JdwpError status; local
1395 JDWP::JdwpError status; local
1409 JDWP::JdwpError status; local
1462 JDWP::JdwpError status; local
1572 JDWP::JdwpError status; local
1599 JDWP::JdwpError status; local
1625 JDWP::JdwpError status; local
1789 JDWP::JdwpError status; local
3522 JDWP::JdwpError status; local
[all...]
/art/runtime/jdwp/
H A Djdwp_event.cc190 JdwpError status = Dbg::ConfigureStep(pMod->step.threadId, size, depth); local
191 if (status != ERR_NONE) {
192 return status;
1259 int status = JDWP::CS_VERIFIED | JDWP::CS_PREPARED; local
1294 expandBufAdd4BE(pReq, status);
H A Djdwp_handler.cc203 // Get class vs. interface and status flags.
206 JDWP::JdwpError status = Dbg::GetClassInfo(ids[i], &type_tag, &class_status, NULL); local
207 if (status != ERR_NONE) {
208 return status;
410 JDWP::JdwpError status = Dbg::GetClassInfo(classes[i], &type_tag, &class_status, &descriptor); local
411 if (status != ERR_NONE) {
412 return status;
479 JdwpError status = Dbg::GetStaticFieldValue(refTypeId, fieldId, pReply); local
480 if (status != ERR_NONE) {
481 return status;
494 JdwpError status = Dbg::GetSourceFile(refTypeId, source_file); local
510 JDWP::JdwpError status = Dbg::GetClassInfo(refTypeId, &type_tag, &class_status, NULL); local
534 JdwpError status = Dbg::GetClassObject(refTypeId, class_object_id); local
559 JdwpError status = Dbg::GetSignature(refTypeId, &signature); local
648 JdwpError status = Dbg::GetSuperclass(class_id, superClassId); local
673 JdwpError status = Dbg::SetStaticFieldValue(fieldId, value, width); local
711 JdwpError status = Dbg::CreateObject(class_id, object_id); local
730 JdwpError status = Dbg::CreateArrayObject(arrayTypeId, length, object_id); local
822 JdwpError status = Dbg::GetFieldValue(object_id, fieldId, pReply); local
847 JdwpError status = Dbg::SetFieldValue(object_id, fieldId, value, width); local
1184 JdwpError status = Dbg::GetArrayLength(array_id, length); local
[all...]
/art/compiler/driver/
H A Dcompiler_driver.cc532 // We store the verification information in the class status in the oat file, which the linker
1757 // Record the final class status if necessary.
1847 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
1855 // Record the final class status if necessary.
2069 void CompilerDriver::RecordClassStatus(ClassReference ref, mirror::Class::Status status) { argument
2072 if (it == compiled_classes_.end() || it->second->GetStatus() != status) {
2073 // An entry doesn't exist or the status is lower than the new status.
2075 CHECK_GT(status, it->second->GetStatus());
2078 switch (status) {
[all...]

Completed in 4375 milliseconds