HomeSort by relevance Sort by last modified time
    Searched refs:ObjectId (Results 1 - 20 of 20) sorted by null

  /art/runtime/jdwp/
object_registry.h 48 JDWP::ObjectId id;
65 JDWP::ObjectId Add(mirror::Object* o)
74 JDWP::ObjectId Add(Handle<T> obj_h)
82 template<typename T> T Get(JDWP::ObjectId id, JDWP::JdwpError* error)
93 void DisableCollection(JDWP::ObjectId id)
96 void EnableCollection(JDWP::ObjectId id)
99 bool IsCollected(JDWP::ObjectId id)
102 void DisposeObject(JDWP::ObjectId id, uint32_t reference_count)
107 jobject GetJObject(JDWP::ObjectId id) SHARED_REQUIRES(Locks::mutator_lock_) REQUIRES(!lock_);
111 JDWP::ObjectId InternalAdd(Handle<T> obj_h
    [all...]
jdwp_event.h 45 ObjectId threadId;
76 ObjectId threadId;
82 ObjectId objectId;
jdwp_request.cc 101 ObjectId Request::ReadObjectId(const char* specific_kind) {
102 ObjectId id = Read8BE();
107 ObjectId Request::ReadArrayId() {
111 ObjectId Request::ReadObjectId() {
115 ObjectId Request::ReadThreadId() {
119 ObjectId Request::ReadThreadGroupId() {
jdwp.h 53 * ObjectId and RefTypeId must be the same size.
59 typedef uint64_t ObjectId; /* any object (threadID, stringID, arrayID, etc) */
60 typedef uint64_t RefTypeId; /* like ObjectID, but unique for Class objects */
63 ObjectId ReadObjectId(const uint8_t** pBuf);
67 static inline void SetObjectId(uint8_t* buf, ObjectId val) { return Set8BE(buf, val); }
72 static inline void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) { expandBufAdd8BE(pReply, id); }
168 void AcquireJdwpTokenForEvent(ObjectId threadId) REQUIRES(!jdwp_token_lock_);
302 void SuspendByPolicy(JdwpSuspendPolicy suspend_policy, JDWP::ObjectId thread_self_id)
305 ObjectId threadId)
349 void SetWaitForJdwpToken(ObjectId threadId) REQUIRES(!jdwp_token_lock_)
    [all...]
object_registry.cc 46 JDWP::ObjectId ObjectRegistry::Add(mirror::Object* o) {
57 JDWP::ObjectId ObjectRegistry::Add(Handle<T> obj_h) {
68 JDWP::ObjectId ObjectRegistry::Add(Handle<mirror::Object> obj_h);
73 JDWP::ObjectId ObjectRegistry::Add(Handle<mirror::Throwable> obj_h);
76 JDWP::ObjectId ObjectRegistry::InternalAdd(Handle<T> obj_h) {
170 mirror::Object* ObjectRegistry::InternalGet(JDWP::ObjectId id, JDWP::JdwpError* error) {
183 jobject ObjectRegistry::GetJObject(JDWP::ObjectId id) {
195 void ObjectRegistry::DisableCollection(JDWP::ObjectId id) {
203 void ObjectRegistry::EnableCollection(JDWP::ObjectId id) {
233 bool ObjectRegistry::IsCollected(JDWP::ObjectId id)
    [all...]
jdwp_handler.cc 56 static JdwpError WriteTaggedObject(ExpandBuf* reply, ObjectId object_id)
67 static JdwpError WriteTaggedObjectList(ExpandBuf* reply, const std::vector<ObjectId>& objects)
86 ObjectId thread_id, ObjectId object_id,
184 std::vector<ObjectId> thread_ids;
208 ObjectId thread_group_id = Dbg::GetSystemThreadGroupId();
221 expandBufAdd4BE(pReply, sizeof(ObjectId));
272 ObjectId string_id;
306 ObjectId object_id = request->ReadObjectId();
487 ObjectId class_object_id
    [all...]
jdwp_event.cc 511 if (!Dbg::MatchInstance(pMod->instanceOnly.objectId, basket.thisPtr.Get())) {
584 void JdwpState::SuspendByPolicy(JdwpSuspendPolicy suspend_policy, JDWP::ObjectId thread_self_id) {
620 ObjectId threadId) {
625 JDWP::ObjectId thread_self_id = Dbg::GetThreadSelfId();
660 void JdwpState::AcquireJdwpTokenForEvent(ObjectId threadId) {
678 void JdwpState::SetWaitForJdwpToken(ObjectId threadId) {
766 ObjectId threadId = Dbg::GetThreadSelfId();
785 ObjectId thread_id)
891 ObjectId thread_id = Dbg::GetThreadId(basket.thread);
953 ObjectId thread_id = Dbg::GetThreadId(basket.thread)
    [all...]
jdwp_main.cc 493 debug_thread_id_ = static_cast<ObjectId>(-1);
  /art/runtime/
debugger.h 55 DebugInvokeReq(uint32_t invoke_request_id, JDWP::ObjectId invoke_thread_id,
70 const JDWP::ObjectId thread_id;
266 static JDWP::JdwpError GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id)
283 static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
289 static JDWP::JdwpError GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag)
293 static JDWP::JdwpError GetArrayLength(JDWP::ObjectId array_id, int32_t* length)
295 static JDWP::JdwpError OutputArray(JDWP::ObjectId array_id, int offset, int count,
298 static JDWP::JdwpError SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
302 static JDWP::JdwpError CreateString(const std::string& str, JDWP::ObjectId* new_string_id)
304 static JDWP::JdwpError CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object_id
    [all...]
debugger.cc 380 static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id,
732 JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) {
790 JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) {
820 JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
821 std::vector<JDWP::ObjectId>* monitors,
825 std::vector<JDWP::ObjectId>* monitor_vector,
851 std::vector<JDWP::ObjectId>* const monitors;
870 JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
871 JDWP::ObjectId* contended_monitor) {
909 std::vector<JDWP::ObjectId>* instances)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rpcdcep.h 39 typedef RPC_STATUS RPC_ENTRY RPC_FORWARD_FUNCTION(UUID *InterfaceId,RPC_VERSION *InterfaceVersion,UUID *ObjectId,unsigned char *Rpcpro,void **ppDestEndpoint);
wtypes.h 310 } OBJECTID;
824 GUID ObjectId;
winternl.h 551 UCHAR ObjectId[16];
    [all...]
ntmsapi.h     [all...]
winioctl.h     [all...]
winbase.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntifs.h     [all...]
ntddk.h     [all...]
  /prebuilts/sdk/tools/jills/
jill-3.36.CANDIDATE.jar 
jill-4.7.BETA.jar 

Completed in 204 milliseconds