Searched defs:eventFlags (Results 1 - 4 of 4) sorted by relevance
/dalvik/vm/mterp/portable/ |
H A D | debug.c | 30 int eventFlags = 0; local 35 * eventFlags != 0 here, or somebody manually requests a suspend 42 eventFlags |= DBG_METHOD_ENTRY; 52 eventFlags |= DBG_BREAKPOINT; 127 eventFlags |= DBG_SINGLE_STEP; 146 eventFlags |= DBG_METHOD_EXIT; 153 if (eventFlags != 0) { 168 eventFlags);
|
/dalvik/vm/jdwp/ |
H A D | JdwpEvent.c | 795 * "eventFlags" indicates the type of event(s) that have happened. 810 ObjectId thisPtr, int eventFlags) 859 if ((eventFlags & DBG_BREAKPOINT) != 0) 862 if ((eventFlags & DBG_SINGLE_STEP) != 0) 865 if ((eventFlags & DBG_METHOD_ENTRY) != 0) 868 if ((eventFlags & DBG_METHOD_EXIT) != 0) 809 dvmJdwpPostLocationEvent(JdwpState* state, const JdwpLocation* pLoc, ObjectId thisPtr, int eventFlags) argument
|
/dalvik/vm/mterp/out/ |
H A D | InterpC-portdbg.c | 1219 int eventFlags = 0; local 1224 * eventFlags != 0 here, or somebody manually requests a suspend 1231 eventFlags |= DBG_METHOD_ENTRY; 1241 eventFlags |= DBG_BREAKPOINT; 1316 eventFlags |= DBG_SINGLE_STEP; 1335 eventFlags |= DBG_METHOD_EXIT; 1342 if (eventFlags != 0) { 1357 eventFlags);
|
/dalvik/vm/ |
H A D | Debugger.c | 2523 Object* thisPtr, int eventFlags) 2542 objectToObjectIdNoReg(thisPtr), eventFlags)) 2522 dvmDbgPostLocationEvent(const Method* method, int pcOffset, Object* thisPtr, int eventFlags) argument
|
Completed in 255 milliseconds