Searched refs:InternStringLog (Results 1 – 2 of 2) sorted by relevance
/art/runtime/ |
D | transaction.cc | 271 InternStringLog log(s, InternStringLog::kStrongString, InternStringLog::kInsert); in RecordStrongStringInsertion() 276 InternStringLog log(s, InternStringLog::kWeakString, InternStringLog::kInsert); in RecordWeakStringInsertion() 281 InternStringLog log(s, InternStringLog::kStrongString, InternStringLog::kRemove); in RecordStrongStringRemoval() 286 InternStringLog log(s, InternStringLog::kWeakString, InternStringLog::kRemove); in RecordWeakStringRemoval() 290 void Transaction::LogInternedString(InternStringLog&& log) { in LogInternedString() 333 for (const InternStringLog& string_log : intern_string_logs_) { in UndoInternStringTableModifications() 411 for (InternStringLog& log : intern_string_logs_) { in VisitInternStringLogs() 581 void Transaction::InternStringLog::Undo(InternTable* intern_table) const { in Undo() 584 case InternStringLog::kInsert: { in Undo() 586 case InternStringLog::kStrongString: in Undo() [all …]
|
D | transaction.h | 236 class InternStringLog : public ValueObject { 246 InternStringLog(ObjPtr<mirror::String> s, StringKind kind, StringOp op); 253 InternStringLog() = default; 254 InternStringLog(InternStringLog&& log) = default; 261 DISALLOW_COPY_AND_ASSIGN(InternStringLog); 279 void LogInternedString(InternStringLog&& log) 315 std::list<InternStringLog> intern_string_logs_ GUARDED_BY(log_lock_);
|