OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pReq
(Results
1 - 13
of
13
) sorted by null
/dalvik/vm/jdwp/
JdwpEvent.cpp
597
DebugInvokeReq*
pReq
= dvmDbgGetInvokeReq();
599
pReq
->ready = true;
601
pReq
->ready = false;
607
if (!
pReq
->invokeNeeded) {
615
/* leave
pReq
->invokeNeeded raised so we can check reentrancy */
617
dvmDbgExecuteMethod(
pReq
);
619
pReq
->err = ERR_NONE;
622
pReq
->invokeNeeded = false;
625
dvmDbgLockMutex(&
pReq
->lock);
626
dvmDbgCondSignal(&
pReq
->cv)
[
all
...]
JdwpPriv.h
61
bool (*sendRequest)(struct JdwpState* state, ExpandBuf*
pReq
);
183
INLINE bool dvmJdwpSendRequest(JdwpState* state, ExpandBuf*
pReq
) {
184
return (*state->transport->sendRequest)(state,
pReq
);
JdwpEvent.h
123
* Send an event, formatted into "
pReq
", to the debugger.
127
bool dvmJdwpSendRequest(JdwpState* state, ExpandBuf*
pReq
);
JdwpAdb.cpp
664
static bool sendRequest(JdwpState* state, ExpandBuf*
pReq
)
676
ssize_t cc = netState->writePacket(
pReq
);
678
if (cc != (ssize_t) expandBufGetLength(
pReq
)) {
680
strerror(errno), (int) cc, (int) expandBufGetLength(
pReq
));
JdwpSocket.cpp
824
static bool sendRequest(JdwpState* state, ExpandBuf*
pReq
)
828
/*dumpPacket(expandBufGetBuffer(
pReq
));*/
836
ssize_t cc = netState->writePacket(
pReq
);
838
if (cc != (ssize_t) expandBufGetLength(
pReq
)) {
840
strerror(errno), (int) cc, (int) expandBufGetLength(
pReq
));
/art/runtime/jdwp/
jdwp_event.cc
514
DebugInvokeReq*
pReq
= Dbg::GetInvokeReq();
516
pReq
->ready = true;
518
pReq
->ready = false;
524
if (!
pReq
->invoke_needed_) {
532
/* leave
pReq
->invoke_needed_ raised so we can check reentrancy */
533
Dbg::ExecuteMethod(
pReq
);
535
pReq
->error = ERR_NONE;
538
pReq
->invoke_needed_ = false;
542
MutexLock mu(self,
pReq
->lock_);
543
pReq
->cond_.Signal(self)
[
all
...]
jdwp.h
230
void SendRequest(ExpandBuf*
pReq
);
275
void SendRequestAndPossiblySuspend(ExpandBuf*
pReq
, JdwpSuspendPolicy suspend_policy,
282
void EventFinish(ExpandBuf*
pReq
);
jdwp_main.cc
168
void JdwpState::SendRequest(ExpandBuf*
pReq
) {
176
ssize_t actual = netState->WritePacket(
pReq
);
177
if (static_cast<size_t>(actual) != expandBufGetLength(
pReq
)) {
179
actual, expandBufGetLength(
pReq
));
/dalvik/vm/
Debugger.cpp
[
all
...]
Debugger.h
288
void dvmDbgExecuteMethod(DebugInvokeReq*
pReq
);
/art/runtime/
debugger.cc
[
all
...]
debugger.h
369
static void ExecuteMethod(DebugInvokeReq*
pReq
);
/external/chromium_org/third_party/sqlite/src/src/
expr.c
[
all
...]
Completed in 1449 milliseconds