Home
last modified time | relevance | path

Searched refs:id (Results 101 – 120 of 120) sorted by relevance

12345

/art/runtime/hprof/
Dhprof.cc579 const HprofStringId id = p.second; in WriteStringTable() local
587 __ AddU4(id); in WriteStringTable()
651 HprofStringId id = next_string_id_++; in LookupStringId() local
652 strings_.Put(string, id); in LookupStringId()
653 return id; in LookupStringId()
/art/test/913-heaps/
Dheaps.cc887 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(extensions[i].id)); in FreeExtensionFunctionInfo()
907 if (strcmp("com.android.art.heap.get_object_heap_id", extensions[i].id) == 0) { in Java_art_Test913_checkForExtensionApis()
929 if (strcmp("com.android.art.heap.get_heap_name", extensions[i].id) == 0) { in Java_art_Test913_checkForExtensionApis()
949 if (strcmp("com.android.art.heap.iterate_through_heap_ext", extensions[i].id) == 0) { in Java_art_Test913_checkForExtensionApis()
/art/runtime/verifier/
Dreg_type_cache.h82 const art::verifier::RegType& GetFromId(uint16_t id) const;
/art/libprofile/profile/
Dprofile_compilation_info_test.cc828 for (uint16_t id : hot_methods) { in TEST_F() local
829 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), id)).IsHot()); in TEST_F()
830 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), id)).IsStartup()); in TEST_F()
832 for (uint16_t id : startup_methods) { in TEST_F() local
833 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), id)).IsStartup()); in TEST_F()
835 for (uint16_t id : post_methods) { in TEST_F() local
836 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), id)).IsPostStartup()); in TEST_F()
/art/profman/
Dprofman.cc755 const dex::MethodId& id = dex_file->GetMethodId(dex_method_idx); in GetClassNamesAndMethods() local
756 std::string signature_string(dex_file->GetMethodSignature(id).ToString()); in GetClassNamesAndMethods()
757 std::string type_string(dex_file->GetTypeDescriptor(dex_file->GetTypeId(id.class_idx_))); in GetClassNamesAndMethods()
758 std::string method_name(dex_file->GetMethodName(id)); in GetClassNamesAndMethods()
/art/dex2oat/
Ddex2oat_test.cc1395 for (uint16_t id : hot_methods) { in TEST_F() local
1396 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), id)).IsHot()); in TEST_F()
1397 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), id)).IsStartup()); in TEST_F()
1399 for (uint16_t id : startup_methods) { in TEST_F() local
1400 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), id)).IsStartup()); in TEST_F()
1402 for (uint16_t id : post_methods) { in TEST_F() local
1403 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), id)).IsPostStartup()); in TEST_F()
/art/compiler/debug/
Delf_debug_info_writer.h50 accessor.VisitParameterNames([&](const dex::StringIndex& id) { in GetParamNames()
51 names.push_back(mi->dex_file->StringDataByIdx(id)); in GetParamNames()
/art/dt_fd_forward/
Ddt_fd_forward.cc474 pkt_->type.cmd.id = ReadInt32(); in ReadFully()
592 PushInt32(pkt_->type.cmd.id); in WriteFully()
/art/adbconnection/
Dadbconnection.cc341 void AdbConnectionState::SendDdmPacket(uint32_t id, in SendDdmPacket() argument
372 *reinterpret_cast<uint32_t*>(pkt_data) = htonl(id); in SendDdmPacket()
/art/runtime/
Dmonitor.h178 Monitor(Thread* self, Thread* owner, ObjPtr<mirror::Object> obj, int32_t hash_code, MonitorId id)
Dmonitor.cc122 MonitorId id) in Monitor() argument
136 monitor_id_(id) { in Monitor()
/art/runtime/arch/arm/
Dquick_entrypoints_arm.S567 @ (thread id, count of 0 and preserved read barrier bits),
568 @ or prepare to compare thread id for recursive lock check
572 @ unlocked case - store r3: original lock word plus thread id, preserved read barrier bits.
581 @ Check lock word state and thread id together,
648 @ thread id did not match, go slow path.
/art/compiler/optimizing/
Dgraph_visualizer.cc229 void PrintProperty(const char* name, const char* property, int id) { in PrintProperty() argument
231 output_ << name << " \"" << property << id << "\"\n"; in PrintProperty()
Dnodes.h516 void SetCurrentInstructionId(int32_t id) { in SetCurrentInstructionId() argument
517 CHECK_GE(id, current_instruction_id_); in SetCurrentInstructionId()
518 current_instruction_id_ = id; in SetCurrentInstructionId()
1125 void SetBlockId(int id) { block_id_ = id; } in SetBlockId() argument
2302 void SetId(int id) { id_ = id; } in SetId() argument
/art/test/
DAndroid.bp445 "2012-structural-redefinition-failures-jni-id/set-jni-id-used.cc",
625 "647-jni-get-field-id/get_field_id.cc",
639 "1972-jni-id-swap-indices/jni_id.cc",
933 // JNI-id use can change the outcome of this test on device.
/art/openjdkjvmti/
Dti_redefine.cc881 NameAndSignature(const art::DexFile* dex_file, uint32_t id);
910 FieldNameAndSignature::NameAndSignature(const art::DexFile* dex_file, uint32_t id) in NameAndSignature() argument
911 : FieldNameAndSignature(dex_file->GetFieldName(dex_file->GetFieldId(id)), in NameAndSignature()
912 dex_file->GetFieldTypeDescriptor(dex_file->GetFieldId(id))) {} in NameAndSignature()
916 MethodNameAndSignature::NameAndSignature(const art::DexFile* dex_file, uint32_t id) in NameAndSignature() argument
917 : MethodNameAndSignature(dex_file->GetMethodName(dex_file->GetMethodId(id)), in NameAndSignature()
918 dex_file->GetMethodSignature(dex_file->GetMethodId(id))) {} in NameAndSignature()
Dti_heap.cc1776 for (uint32_t id : rrv.GetThreadsWithJavaFrameRoots()) { in ReplaceStrongRoots() local
1777 art::Thread* t = thread_list->FindThreadByThreadId(id); in ReplaceStrongRoots()
1778 CHECK(t != nullptr) << "id " << id << " does not refer to a valid thread." in ReplaceStrongRoots()
Dti_stack.cc110 jmethodID id = art::jni::EncodeArtMethod(m); in VisitFrame() local
115 jvmtiFrameInfo info = { id, dex_location }; in VisitFrame()
/art/openjdkjvmti/include/
Djvmti.h637 char* id; member
646 char* id; member
/art/libdexfile/dex/
Ddex_file_verifier.cc3414 auto get_string = [begin = begin_](const dex::StringId& id) { in FindStringRangesForMethodNames() argument
3415 const uint8_t* str_data_ptr = begin + id.string_data_off_; in FindStringRangesForMethodNames()

12345