OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:JdwpEvent
(Results
1 - 4
of
4
) sorted by null
/art/runtime/jdwp/
jdwp_event.h
31
* Event modifiers. A
JdwpEvent
may have zero or more of these.
91
struct
JdwpEvent
{
92
JdwpEvent
* prev; /* linked list */
93
JdwpEvent
* next;
106
JdwpEvent
* EventAlloc(int numMods);
107
void EventFree(
JdwpEvent
* pEvent);
jdwp_event.cc
189
JdwpError JdwpState::RegisterEvent(
JdwpEvent
* pEvent) {
258
std::vector<
JdwpEvent
*> to_remove;
260
for (
JdwpEvent
* cur_event = event_list_; cur_event != nullptr; cur_event = cur_event->next) {
285
for (
JdwpEvent
* event : to_remove) {
295
* Does not free the
JdwpEvent
.
299
void JdwpState::UnregisterEvent(
JdwpEvent
* pEvent) {
361
for (
JdwpEvent
* pEvent = event_list_; pEvent != nullptr; pEvent = pEvent->next) {
388
JdwpEvent
* pEvent = event_list_;
390
JdwpEvent
* pNextEvent = pEvent->next;
401
* Allocate a
JdwpEvent
struct with enough space to hold the specifie
[
all
...]
jdwp.h
120
struct
JdwpEvent
;
283
JdwpError RegisterEvent(
JdwpEvent
* pEvent)
316
void CleanupMatchList(const std::vector<
JdwpEvent
*>& match_list)
320
std::vector<
JdwpEvent
*>* match_list)
323
std::vector<
JdwpEvent
*>* match_list)
325
void UnregisterEvent(
JdwpEvent
* pEvent)
395
JdwpEvent
* event_list_ GUARDED_BY(event_list_lock_);
jdwp_handler.cc
[
all
...]
Completed in 90 milliseconds