Symbol: InfoEntry
headers/private/debugger/model/StackFrameValueInfos.h
47
struct InfoEntry;
src/apps/debugger/user_interface/gui/model/VariablesViewState.cpp
135
InfoEntry* next;
src/apps/debugger/user_interface/gui/model/VariablesViewState.cpp
160
typedef InfoEntry ValueType;
src/apps/debugger/user_interface/gui/model/VariablesViewState.cpp
167
size_t Hash(const InfoEntry* value) const
src/apps/debugger/user_interface/gui/model/VariablesViewState.cpp
172
bool Compare(const Key& key, const InfoEntry* value) const
src/apps/debugger/user_interface/gui/model/VariablesViewState.cpp
177
InfoEntry*& GetLink(InfoEntry* value) const
src/apps/debugger/user_interface/gui/model/VariablesViewState.cpp
253
InfoEntry* entry = fNodeInfos->Lookup(Key(variable, path));
src/apps/debugger/user_interface/gui/model/VariablesViewState.cpp
255
entry = new(std::nothrow) InfoEntry(variable, path);
src/apps/debugger/user_interface/gui/model/VariablesViewState.cpp
270
InfoEntry* entry = fNodeInfos->Clear(true);
src/apps/debugger/user_interface/gui/model/VariablesViewState.cpp
273
InfoEntry* next = entry->next;
src/apps/debugger/user_interface/gui/model/VariablesViewState.h
86
struct InfoEntry;
src/kits/debugger/model/StackFrameValueInfos.cpp
100
InfoEntry*& GetLink(InfoEntry* value) const
src/kits/debugger/model/StackFrameValueInfos.cpp
136
InfoEntry* entry = fValues->Lookup(
src/kits/debugger/model/StackFrameValueInfos.cpp
167
InfoEntry* entry = fValues->Lookup(Key(variable, path));
src/kits/debugger/model/StackFrameValueInfos.cpp
169
entry = new(std::nothrow) InfoEntry(variable, path);
src/kits/debugger/model/StackFrameValueInfos.cpp
184
InfoEntry* entry = fValues->Clear(true);
src/kits/debugger/model/StackFrameValueInfos.cpp
187
InfoEntry* next = entry->next;
src/kits/debugger/model/StackFrameValueInfos.cpp
43
InfoEntry* next;
src/kits/debugger/model/StackFrameValueInfos.cpp
45
InfoEntry(ObjectID* variable, TypeComponentPath* path)
src/kits/debugger/model/StackFrameValueInfos.cpp
83
typedef InfoEntry ValueType;
src/kits/debugger/model/StackFrameValueInfos.cpp
90
size_t Hash(const InfoEntry* value) const
src/kits/debugger/model/StackFrameValueInfos.cpp
95
bool Compare(const Key& key, const InfoEntry* value) const