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

  /art/runtime/jdwp/
jdwp_handler.cc 55 static void WriteValue(ExpandBuf* pReply, int width, uint64_t value) {
57 case 1: expandBufAdd1(pReply, value); break;
58 case 2: expandBufAdd2BE(pReply, value); break;
59 case 4: expandBufAdd4BE(pReply, value); break;
60 case 8: expandBufAdd8BE(pReply, value); break;
94 static JdwpError FinishInvoke(JdwpState*, Request& request, ExpandBuf* pReply,
141 expandBufAdd1(pReply, resultTag);
143 WriteValue(pReply, width, resultValue);
145 expandBufAdd1(pReply, JT_OBJECT);
146 expandBufAddObjectId(pReply, exceptObjId)
    [all...]
jdwp.h 67 static inline void expandBufAddFieldId(ExpandBuf* pReply, FieldId id) { expandBufAdd4BE(pReply, id); }
68 static inline void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { expandBufAdd4BE(pReply, id); }
69 static inline void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) { expandBufAdd8BE(pReply, id); }
70 static inline void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) { expandBufAdd8BE(pReply, id); }
71 static inline void expandBufAddFrameId(ExpandBuf* pReply, FrameId id) { expandBufAdd8BE(pReply, id);
    [all...]
jdwp_expand_buf.h 64 void expandBufAddLocation(ExpandBuf* pReply, const JdwpLocation& location);
jdwp_priv.h 72 ssize_t WritePacket(ExpandBuf* pReply, size_t length) LOCKS_EXCLUDED(socket_lock_);
jdwp_main.cc 127 ssize_t JdwpNetStateBase::WritePacket(ExpandBuf* pReply, size_t length) {
129 DCHECK_LE(length, expandBufGetLength(pReply));
130 return TEMP_FAILURE_RETRY(write(clientSock, expandBufGetBuffer(pReply), length));
375 ExpandBuf* pReply = expandBufAlloc();
376 size_t replyLength = ProcessRequest(request, pReply);
377 ssize_t cc = netStateBase->WritePacket(pReply, replyLength);
387 expandBufFree(pReply);
390 expandBufFree(pReply);
  /art/runtime/
debugger.h 265 static JDWP::JdwpError GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
267 static JDWP::JdwpError GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
269 static JDWP::JdwpError GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply)
278 static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
291 JDWP::ExpandBuf* pReply)
367 JDWP::ExpandBuf* pReply)
370 JDWP::ExpandBuf* pReply)
373 JDWP::ExpandBuf* pReply)
376 JDWP::ExpandBuf* pReply)
379 JDWP::ExpandBuf* pReply)
    [all...]
debugger.cc 888 JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
893 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
897 JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
913 expandBufAdd4BE(pReply, access_flags);
    [all...]
  /frameworks/wilhelm/src/itf/
IAndroidEffect.cpp 87 void* pCommand, SLuint32 *replySize, void *pReply) {
93 pCommand, replySize, pReply);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
authz.h 82 AUTHZAPI WINBOOL WINAPI AuthzAccessCheck(DWORD Flags,AUTHZ_CLIENT_CONTEXT_HANDLE hAuthzClientContext,PAUTHZ_ACCESS_REQUEST pRequest,AUTHZ_AUDIT_EVENT_HANDLE hAuditEvent,PSECURITY_DESCRIPTOR pSecurityDescriptor,PSECURITY_DESCRIPTOR *OptionalSecurityDescriptorArray,DWORD OptionalSecurityDescriptorCount,PAUTHZ_ACCESS_REPLY pReply,PAUTHZ_ACCESS_CHECK_RESULTS_HANDLE phAccessCheckResults);
83 AUTHZAPI WINBOOL WINAPI AuthzCachedAccessCheck(DWORD Flags,AUTHZ_ACCESS_CHECK_RESULTS_HANDLE hAccessCheckResults,PAUTHZ_ACCESS_REQUEST pRequest,AUTHZ_AUDIT_EVENT_HANDLE hAuditEvent,PAUTHZ_ACCESS_REPLY pReply);
84 AUTHZAPI WINBOOL WINAPI AuthzOpenObjectAudit(DWORD Flags,AUTHZ_CLIENT_CONTEXT_HANDLE hAuthzClientContext,PAUTHZ_ACCESS_REQUEST pRequest,AUTHZ_AUDIT_EVENT_HANDLE hAuditEvent,PSECURITY_DESCRIPTOR pSecurityDescriptor,PSECURITY_DESCRIPTOR *OptionalSecurityDescriptorArray,DWORD OptionalSecurityDescriptorCount,PAUTHZ_ACCESS_REPLY pReply);

Completed in 270 milliseconds