Searched refs:modified (Results 1 - 3 of 3) sorted by relevance

/art/runtime/
H A Dinstrumentation.cc416 std::list<InstrumentationListener*>* modified; local
418 modified = new std::list<InstrumentationListener*>(*dex_pc_listeners_.get());
420 modified = new std::list<InstrumentationListener*>();
422 modified->push_back(listener);
423 dex_pc_listeners_.reset(modified);
427 std::list<InstrumentationListener*>* modified; local
429 modified = new std::list<InstrumentationListener*>(*field_read_listeners_.get());
431 modified = new std::list<InstrumentationListener*>();
433 modified->push_back(listener);
434 field_read_listeners_.reset(modified);
438 std::list<InstrumentationListener*>* modified; local
449 std::list<InstrumentationListener*>* modified; local
482 std::list<InstrumentationListener*>* modified = local
494 std::list<InstrumentationListener*>* modified = local
506 std::list<InstrumentationListener*>* modified = local
518 std::list<InstrumentationListener*>* modified = local
[all...]
/art/runtime/gc/accounting/
H A Dcard_table-inl.h130 * Visitor is expected to take in a card and return the new value. When a value is modified, the
134 * modified: Whenever the visitor modifies a card, this visitor is called on the card. Enables
139 const ModifiedVisitor& modified) {
153 modified(card_cur, expected, new_value);
167 modified(card_end, expected, new_value);
200 modified(reinterpret_cast<uint8_t*>(word_cur) + i, expected_byte, new_byte);
138 ModifyCardsAtomic(uint8_t* scan_begin, uint8_t* scan_end, const Visitor& visitor, const ModifiedVisitor& modified) argument
H A Dcard_table.h93 * Visitor is expected to take in a card and return the new value. When a value is modified, the
97 * modified: Whenever the visitor modifies a card, this visitor is called on the card. Enables
102 const ModifiedVisitor& modified);

Completed in 53 milliseconds