Symbol: StateEntry
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
115
StateEntry* entry = fStates->Clear(true);
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
118
StateEntry* next = entry->next;
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
145
StateEntry* stateEntry = fStates->Lookup(Key(threadID, functionID));
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
151
StateEntry* stateEntry = fStates->Lookup(Key(-1, functionID));
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
159
StateEntry* stateEntry = fStates->Lookup(Key(-1, functionID));
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
169
StateEntry* defaultEntry = fStates->Lookup(Key(-1, functionID));
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
173
defaultEntry = new(std::nothrow) StateEntry(-1, functionID);
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
182
StateEntry* threadEntry = NULL;
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
187
threadEntry = new(std::nothrow) StateEntry(threadID, functionID);
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
45
StateEntry* next;
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
48
StateEntry(thread_id threadID, FunctionID* functionID)
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
81
typedef StateEntry ValueType;
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
88
size_t Hash(const StateEntry* value) const
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
93
bool Compare(const Key& key, const StateEntry* value) const
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
98
StateEntry*& GetLink(StateEntry* value) const
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.h
33
struct StateEntry;