Searched defs:id (Results 1 - 19 of 19) sorted by relevance

/art/test/ParallelGC/
H A DParallelGC.java34 private final int id; field in class:ParallelGC
36 private ParallelGC(int id) { argument
37 this.id = id;
44 System.out.print(id);
/art/compiler/llvm/
H A Druntime_support_builder.h73 ::llvm::Function* GetRuntimeSupportFunction(runtime_support::RuntimeId id) { argument
74 if (id >= 0 && id < runtime_support::MAX_ID) {
75 return runtime_support_func_decls_[id];
77 LOG(ERROR) << "Unknown runtime function id: " << id;
H A Dintrinsic_helper.cc105 IntrinsicId id = static_cast<IntrinsicId>(i); local
149 intrinsic_funcs_[id] = fn;
152 << GetName(id) << "' was not defined!";
169 if (!intrinsic_funcs_map_.insert(std::make_pair(fn, id)).second) {
H A Dintrinsic_helper.h111 static const IntrinsicInfo& GetInfo(IntrinsicId id) { argument
112 DCHECK(id >= 0 && id < MaxIntrinsicId) << "Unknown ART intrinsics ID: "
113 << id;
114 return Info[id];
117 static const char* GetName(IntrinsicId id) { argument
118 return (id <= MaxIntrinsicId) ? GetInfo(id).name_ : "InvalidIntrinsic";
121 static unsigned GetAttr(IntrinsicId id) { argument
122 return GetInfo(id)
128 GetIntrinsicFunction(IntrinsicId id) argument
[all...]
/art/runtime/jdwp/
H A Dobject_registry.h43 // The corresponding id, so we only need one map lookup in Add.
44 JDWP::ObjectId id; member in struct:art::ObjectRegistryEntry
60 template<typename T> T Get(JDWP::ObjectId id) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
61 if (id == 0) {
64 return reinterpret_cast<T>(InternalGet(id));
71 void DisableCollection(JDWP::ObjectId id) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
72 void EnableCollection(JDWP::ObjectId id) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
74 bool IsCollected(JDWP::ObjectId id) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
76 void DisposeObject(JDWP::ObjectId id, uint32_t reference_count)
79 // Returned by Get when passed an invalid object id
[all...]
H A Djdwp_request.cc88 FieldId id = Read4BE(); local
89 VLOG(jdwp) << " field id " << DescribeField(id);
90 return id;
94 MethodId id = Read4BE(); local
95 VLOG(jdwp) << " method id " << DescribeMethod(id);
96 return id;
100 ObjectId id = Read8BE(); local
101 VLOG(jdwp) << StringPrintf(" %s id
122 RefTypeId id = Read8BE(); local
128 FrameId id = Read8BE(); local
[all...]
H A Dobject_registry.cc29 << ",id=" << rhs.id << "]";
56 dummy.id = 0;
62 return entry.id;
73 entry.id = next_id_++;
75 id_to_entry_.Put(entry.id, &entry);
79 return entry.id;
109 mirror::Object* ObjectRegistry::InternalGet(JDWP::ObjectId id) { argument
112 id_iterator it = id_to_entry_.find(id);
120 jobject ObjectRegistry::GetJObject(JDWP::ObjectId id) { argument
129 DisableCollection(JDWP::ObjectId id) argument
139 EnableCollection(JDWP::ObjectId id) argument
171 IsCollected(JDWP::ObjectId id) argument
188 DisposeObject(JDWP::ObjectId id, uint32_t reference_count) argument
[all...]
H A Djdwp.h59 static inline void expandBufAddFieldId(ExpandBuf* pReply, FieldId id) { expandBufAdd4BE(pReply, id); } argument
60 static inline void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { expandBufAdd4BE(pReply, id); } argument
61 static inline void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) { expandBufAdd8BE(pReply, id); } argument
62 static inline void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) { expandBufAdd8BE(pReply, id); } argument
63 static inline void expandBufAddFrameId(ExpandBuf* pReply, FrameId id) { expandBufAdd8BE(pReply, id); } argument
[all...]
/art/test/ThreadStress/
H A DThreadStress.java134 int id = threadStress.id;
135 System.out.println("Starting runner for " + id);
143 System.out.println("Thread exited for " + id + " with "
147 System.out.println("Finishing runner for " + id);
176 private final int id; field in class:ThreadStress
180 private ThreadStress(Object lock, int id, Operation[] operations) { argument
182 this.id = id;
189 System.out.println("Starting ThreadStress " + id);
[all...]
/art/runtime/
H A Dthread_list.cc590 void ThreadList::ReleaseThreadId(Thread* self, uint32_t id) { argument
592 --id; // Zero is reserved to mean "invalid".
593 DCHECK(allocated_ids_[id]) << id;
594 allocated_ids_.reset(id);
H A Ddex_file.cc694 uint32_t id = DecodeUnsignedLeb128P1(&stream); local
696 if (need_locals && id != kDexNoIndex) {
697 const char* name = StringDataByIdx(id);
H A Ddebugger.cc217 static mirror::Array* DecodeArray(JDWP::RefTypeId id, JDWP::JdwpError& status)
219 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
232 static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError& status)
234 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
608 JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& class_object_id) { argument
610 mirror::Class* c = DecodeClass(id, status);
618 JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId& superclass_id) { argument
620 mirror::Class* c = DecodeClass(id, status);
625 // http://code.google.com/p/android/issues/detail?id=20856
633 JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDW argument
642 GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) argument
1085 JDWP::ObjectId id = request.ReadObjectId(); local
3058 JDWP::ObjectId id = gRegistry->Add(t->GetPeer()); local
[all...]
/art/jdwpspy/
H A DNet.cpp474 u4 length, id; local
481 id = get4BE(buf+4);
508 printf("%s REQUEST dataLen=%-5u id=0x%08x flags=0x%02x cmd=%d/%d [%02d:%02d]\n",
509 prefix, dataLen, id, flags, cmdSet, cmd, min, sec);
514 printf("%s REPLY dataLen=%-5u id=0x%08x flags=0x%02x err=%d (%s) [%02d:%02d]\n",
515 prefix, dataLen, id, flags, error, ss.str().c_str(), min,sec);
/art/runtime/native/
H A Ddalvik_system_VMDebug.cc225 static void VMDebug_infopoint(JNIEnv*, jclass, jint id) { argument
226 LOG(INFO) << "VMDebug infopoint " << id << " hit";
/art/compiler/
H A Dimage_writer.cc709 const DexFile::MethodId& id = patch->GetDexFile().GetMethodId(patch->GetTargetMethodIdx()); local
710 uint32_t expected = reinterpret_cast<uint32_t>(&id);
/art/compiler/dex/quick/
H A Dcodegen_util.cc104 * Store the Dalvik register id in alias_info. Mark the MSB if it is a 64-bit
371 const DexFile::MethodId& id = cu_->dex_file->GetMethodId(target); local
373 uint32_t unique_patch_value = reinterpret_cast<uint32_t>(&id);
387 const DexFile::MethodId& id = cu_->dex_file->GetMethodId(target); local
389 uint32_t unique_patch_value = reinterpret_cast<uint32_t>(&id);
/art/compiler/dex/portable/
H A Dmir_to_gbc.cc45 ::llvm::BasicBlock* MirConverter::GetLLVMBlock(int id) { argument
46 return id_to_block_map_.Get(id);
55 art::llvm::IntrinsicHelper::IntrinsicId id = art::llvm::IntrinsicHelper::SetVReg; local
56 ::llvm::Function* func = intrinsic_helper_->GetIntrinsicFunction(id);
123 return GetLLVMBlock(bb->id);
135 irb_->CreateSwitch(value, GetLLVMBlock(bb->fall_through->id),
162 irb_->CreateSwitch(value, GetLLVMBlock(bb->fall_through->id),
178 art::llvm::IntrinsicHelper::IntrinsicId id, RegLocation rl_dest) {
180 ::llvm::Function* intr = intrinsic_helper_->GetIntrinsicFunction(id);
186 art::llvm::IntrinsicHelper::IntrinsicId id, RegLocatio
177 ConvertSget(int32_t field_index, art::llvm::IntrinsicHelper::IntrinsicId id, RegLocation rl_dest) argument
185 ConvertSput(int32_t field_index, art::llvm::IntrinsicHelper::IntrinsicId id, RegLocation rl_src) argument
195 art::llvm::IntrinsicHelper::IntrinsicId id; local
206 art::llvm::IntrinsicHelper::IntrinsicId id; local
234 art::llvm::IntrinsicHelper::IntrinsicId id; local
268 ConvertMonitorEnterExit(int opt_flags, art::llvm::IntrinsicHelper::IntrinsicId id, RegLocation rl_src) argument
290 art::llvm::IntrinsicHelper::IntrinsicId id = local
348 art::llvm::IntrinsicHelper::IntrinsicId id; local
408 ConvertShift(art::llvm::IntrinsicHelper::IntrinsicId id, RegLocation rl_dest, RegLocation rl_src1, RegLocation rl_src2) argument
418 ConvertShiftLit(art::llvm::IntrinsicHelper::IntrinsicId id, RegLocation rl_dest, RegLocation rl_src, int shift_amount) argument
471 art::llvm::IntrinsicHelper::IntrinsicId id; local
498 ConvertConstObject(uint32_t idx, art::llvm::IntrinsicHelper::IntrinsicId id, RegLocation rl_dest) argument
507 art::llvm::IntrinsicHelper::IntrinsicId id; local
517 art::llvm::IntrinsicHelper::IntrinsicId id; local
527 art::llvm::IntrinsicHelper::IntrinsicId id; local
537 ConvertAget(int opt_flags, art::llvm::IntrinsicHelper::IntrinsicId id, RegLocation rl_dest, RegLocation rl_array, RegLocation rl_index) argument
549 ConvertAput(int opt_flags, art::llvm::IntrinsicHelper::IntrinsicId id, RegLocation rl_src, RegLocation rl_array, RegLocation rl_index) argument
561 ConvertIget(int opt_flags, art::llvm::IntrinsicHelper::IntrinsicId id, RegLocation rl_dest, RegLocation rl_obj, int field_index) argument
573 ConvertIput(int opt_flags, art::llvm::IntrinsicHelper::IntrinsicId id, RegLocation rl_src, RegLocation rl_obj, int field_index) argument
587 art::llvm::IntrinsicHelper::IntrinsicId id; local
621 ConvertWideComparison(art::llvm::IntrinsicHelper::IntrinsicId id, RegLocation rl_dest, RegLocation rl_src1, RegLocation rl_src2) argument
634 ConvertIntNarrowing(RegLocation rl_dest, RegLocation rl_src, art::llvm::IntrinsicHelper::IntrinsicId id) argument
654 ConvertFPToInt(art::llvm::IntrinsicHelper::IntrinsicId id, RegLocation rl_dest, RegLocation rl_src) argument
1517 art::llvm::IntrinsicHelper::IntrinsicId id; local
1652 art::llvm::IntrinsicHelper::IntrinsicId id = local
[all...]
/art/runtime/hprof/
H A Dhprof.cc541 size_t id = (*it).second; local
552 err = rec->AddU4(id);
606 HprofStringId id = next_string_id_++; local
607 strings_.Put(string, id);
608 return id;
848 rec->AddU4((uint32_t)desiredHeap); // uint32_t: heap id
/art/compiler/dex/
H A Dmir_graph.h255 int id; member in struct:art::BasicBlock
356 * Parse dex method and add MIR at current insert point. Returns id (which is

Completed in 383 milliseconds