Home
last modified time | relevance | path

Searched refs:InternStringLog (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Dtransaction.cc238 InternStringLog log(s, InternStringLog::kStrongString, InternStringLog::kInsert); in RecordStrongStringInsertion()
243 InternStringLog log(s, InternStringLog::kWeakString, InternStringLog::kInsert); in RecordWeakStringInsertion()
248 InternStringLog log(s, InternStringLog::kStrongString, InternStringLog::kRemove); in RecordStrongStringRemoval()
253 InternStringLog log(s, InternStringLog::kWeakString, InternStringLog::kRemove); in RecordWeakStringRemoval()
257 void Transaction::LogInternedString(InternStringLog&& log) { in LogInternedString()
299 for (const InternStringLog& string_log : intern_string_logs_) { in UndoInternStringTableModifications()
377 for (InternStringLog& log : intern_string_logs_) { in VisitInternStringLogs()
547 void Transaction::InternStringLog::Undo(InternTable* intern_table) const { in Undo()
550 case InternStringLog::kInsert: { in Undo()
552 case InternStringLog::kStrongString: in Undo()
[all …]
Dtransaction.h227 class InternStringLog : public ValueObject {
237 InternStringLog(ObjPtr<mirror::String> s, StringKind kind, StringOp op);
244 InternStringLog() = default;
245 InternStringLog(InternStringLog&& log) = default;
252 DISALLOW_COPY_AND_ASSIGN(InternStringLog);
270 void LogInternedString(InternStringLog&& log)
306 std::list<InternStringLog> intern_string_logs_ GUARDED_BY(log_lock_);