Symbol: ObjectID
headers/private/debugger/ids/FunctionID.h
15
class FunctionID : public ObjectID, public BArchivable {
headers/private/debugger/ids/FunctionID.h
51
virtual bool operator==(const ObjectID& other) const;
headers/private/debugger/ids/FunctionID.h
66
virtual bool operator==(const ObjectID& other) const;
headers/private/debugger/ids/FunctionParameterID.h
12
class FunctionParameterID : public ObjectID {
headers/private/debugger/ids/LocalVariableID.h
12
class LocalVariableID : public ObjectID {
headers/private/debugger/ids/ObjectID.h
12
class ObjectID : public BReferenceable {
headers/private/debugger/ids/ObjectID.h
14
ObjectID();
headers/private/debugger/ids/ObjectID.h
15
virtual ~ObjectID();
headers/private/debugger/ids/ObjectID.h
19
virtual bool operator==(const ObjectID& other) const = 0;
headers/private/debugger/ids/ObjectID.h
20
inline bool operator!=(const ObjectID& other) const;
headers/private/debugger/ids/ObjectID.h
31
ObjectID::HashValue() const
headers/private/debugger/ids/ObjectID.h
40
ObjectID::operator!=(const ObjectID& other) const
headers/private/debugger/ids/ReturnValueID.h
12
class ReturnValueID : public ObjectID {
headers/private/debugger/model/StackFrameValueInfos.h
14
class ObjectID;
headers/private/debugger/model/StackFrameValueInfos.h
27
bool GetInfo(ObjectID* variable,
headers/private/debugger/model/StackFrameValueInfos.h
32
inline bool GetInfo(ObjectID* variable,
headers/private/debugger/model/StackFrameValueInfos.h
37
bool HasInfo(ObjectID* variable,
headers/private/debugger/model/StackFrameValueInfos.h
39
inline bool HasInfo(ObjectID* variable,
headers/private/debugger/model/StackFrameValueInfos.h
41
status_t SetInfo(ObjectID* variable,
headers/private/debugger/model/StackFrameValueInfos.h
63
StackFrameValueInfos::GetInfo(ObjectID* variable, const TypeComponentPath& path,
headers/private/debugger/model/StackFrameValueInfos.h
71
StackFrameValueInfos::HasInfo(ObjectID* variable, const TypeComponentPath& path)
headers/private/debugger/model/StackFrameValues.h
14
class ObjectID;
headers/private/debugger/model/StackFrameValues.h
27
bool GetValue(ObjectID* variable,
headers/private/debugger/model/StackFrameValues.h
30
inline bool GetValue(ObjectID* variable,
headers/private/debugger/model/StackFrameValues.h
33
bool HasValue(ObjectID* variable,
headers/private/debugger/model/StackFrameValues.h
35
inline bool HasValue(ObjectID* variable,
headers/private/debugger/model/StackFrameValues.h
37
status_t SetValue(ObjectID* variable,
headers/private/debugger/model/StackFrameValues.h
59
StackFrameValues::GetValue(ObjectID* variable, const TypeComponentPath& path,
headers/private/debugger/model/StackFrameValues.h
67
StackFrameValues::HasValue(ObjectID* variable, const TypeComponentPath& path)
headers/private/debugger/model/Variable.h
15
class ObjectID;
headers/private/debugger/model/Variable.h
22
Variable(ObjectID* id, const BString& name,
headers/private/debugger/model/Variable.h
27
ObjectID* ID() const { return fID; }
headers/private/debugger/model/Variable.h
34
ObjectID* fID;
src/add-ons/kernel/file_systems/btrfs/BTree.cpp
556
if (ObjectID() > key.ObjectID())
src/add-ons/kernel/file_systems/btrfs/BTree.cpp
558
if (ObjectID() < key.ObjectID())
src/add-ons/kernel/file_systems/btrfs/BTree.cpp
577
B_PRId64 " \n", key.ObjectID(), key.Type(), key.Offset());
src/add-ons/kernel/file_systems/btrfs/BTree.cpp
633
wanted.ObjectID(), wanted.Type(), wanted.Offset(), found.ObjectID(),
src/add-ons/kernel/file_systems/btrfs/BTree.cpp
672
B_PRIu64 ")\n", num, startKey.ObjectID(), startKey.Type(),
src/add-ons/kernel/file_systems/btrfs/BTree.cpp
732
B_PRIu64 ")\n", num, startKey.ObjectID(), startKey.Type(),
src/add-ons/kernel/file_systems/btrfs/BTree.cpp
965
fKey.SetObjectID(found.ObjectID());
src/add-ons/kernel/file_systems/btrfs/ExtentAllocator.cpp
458
if (key.ObjectID() != Start())
src/add-ons/kernel/file_systems/btrfs/ExtentAllocator.cpp
469
insert = CachedExtent::Create(key.ObjectID(), extentSize, flags);
src/add-ons/kernel/file_systems/btrfs/ExtentAllocator.cpp
472
extentSize = key.ObjectID() - start;
src/add-ons/kernel/file_systems/btrfs/ExtentAllocator.cpp
477
start = key.ObjectID() + extentSize;
src/add-ons/kernel/file_systems/btrfs/ExtentAllocator.h
119
uint64 Start() const { return fKey.ObjectID(); }
src/add-ons/kernel/file_systems/btrfs/ExtentAllocator.h
121
{ return fKey.ObjectID() + fKey.Offset(); }
src/add-ons/kernel/file_systems/btrfs/Volume.cpp
175
B_PRIx64 " type 0x%x\n", key->ObjectID(), key->Offset(),
src/add-ons/kernel/file_systems/btrfs/Volume.cpp
293
fLargestInodeID = search_key.ObjectID();
src/add-ons/kernel/file_systems/btrfs/btrfs.h
371
ino_t InodeID() const { return location.ObjectID(); }
src/add-ons/kernel/file_systems/btrfs/btrfs.h
82
uint64 ObjectID() const { return B_LENDIAN_TO_HOST_INT64(object_id); }
src/apps/debugger/user_interface/gui/model/VariablesViewState.cpp
109
ObjectID* variable;
src/apps/debugger/user_interface/gui/model/VariablesViewState.cpp
112
Key(ObjectID* variable, TypeComponentPath* path)
src/apps/debugger/user_interface/gui/model/VariablesViewState.cpp
137
InfoEntry(ObjectID* variable, TypeComponentPath* path)
src/apps/debugger/user_interface/gui/model/VariablesViewState.cpp
242
VariablesViewState::GetNodeInfo(ObjectID* variable,
src/apps/debugger/user_interface/gui/model/VariablesViewState.cpp
250
VariablesViewState::SetNodeInfo(ObjectID* variable, TypeComponentPath* path,
src/apps/debugger/user_interface/gui/model/VariablesViewState.h
102
VariablesViewState::GetNodeInfo(ObjectID* variable,
src/apps/debugger/user_interface/gui/model/VariablesViewState.h
16
class ObjectID;
src/apps/debugger/user_interface/gui/model/VariablesViewState.h
74
const VariablesViewNodeInfo* GetNodeInfo(ObjectID* variable,
src/apps/debugger/user_interface/gui/model/VariablesViewState.h
76
inline const VariablesViewNodeInfo* GetNodeInfo(ObjectID* variable,
src/apps/debugger/user_interface/gui/model/VariablesViewState.h
79
status_t SetNodeInfo(ObjectID* variable,
src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp
219
class VariablesView::ExpressionVariableID : public ObjectID {
src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp
233
virtual bool operator==(const ObjectID& other) const
src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp
3052
ObjectID* id = variable->ID();
src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp
3095
ObjectID* objectID = node->GetVariable()->ID();
src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp
3281
BReference<ObjectID> idReference(id, true);
src/kits/debugger/debug_info/DwarfStackFrameDebugInfo.cpp
141
virtual bool operator==(const ObjectID& other) const
src/kits/debugger/debug_info/DwarfStackFrameDebugInfo.cpp
315
DwarfStackFrameDebugInfo::_CreateVariable(ObjectID* id, const BString& name,
src/kits/debugger/debug_info/DwarfStackFrameDebugInfo.cpp
53
virtual bool operator==(const ObjectID& other) const
src/kits/debugger/debug_info/DwarfStackFrameDebugInfo.cpp
95
virtual bool operator==(const ObjectID& other) const
src/kits/debugger/debug_info/DwarfStackFrameDebugInfo.h
30
class ObjectID;
src/kits/debugger/debug_info/DwarfStackFrameDebugInfo.h
74
status_t _CreateVariable(ObjectID* id,
src/kits/debugger/ids/FunctionID.cpp
111
SourceFunctionID::operator==(const ObjectID& _other) const
src/kits/debugger/ids/FunctionID.cpp
163
ImageFunctionID::operator==(const ObjectID& _other) const
src/kits/debugger/ids/ObjectID.cpp
10
ObjectID::ObjectID()
src/kits/debugger/ids/ObjectID.cpp
17
ObjectID::~ObjectID()
src/kits/debugger/model/StackFrameValueInfos.cpp
132
StackFrameValueInfos::GetInfo(ObjectID* variable,
src/kits/debugger/model/StackFrameValueInfos.cpp
156
StackFrameValueInfos::HasInfo(ObjectID* variable,
src/kits/debugger/model/StackFrameValueInfos.cpp
164
StackFrameValueInfos::SetInfo(ObjectID* variable, TypeComponentPath* path,
src/kits/debugger/model/StackFrameValueInfos.cpp
18
ObjectID* variable;
src/kits/debugger/model/StackFrameValueInfos.cpp
21
Key(ObjectID* variable, TypeComponentPath* path)
src/kits/debugger/model/StackFrameValueInfos.cpp
45
InfoEntry(ObjectID* variable, TypeComponentPath* path)
src/kits/debugger/model/StackFrameValues.cpp
131
StackFrameValues::GetValue(ObjectID* variable, const TypeComponentPath* path,
src/kits/debugger/model/StackFrameValues.cpp
145
StackFrameValues::HasValue(ObjectID* variable, const TypeComponentPath* path)
src/kits/debugger/model/StackFrameValues.cpp
153
StackFrameValues::SetValue(ObjectID* variable, TypeComponentPath* path,
src/kits/debugger/model/StackFrameValues.cpp
16
ObjectID* variable;
src/kits/debugger/model/StackFrameValues.cpp
19
Key(ObjectID* variable, TypeComponentPath* path)
src/kits/debugger/model/StackFrameValues.cpp
42
ValueEntry(ObjectID* variable, TypeComponentPath* path)
src/kits/debugger/model/Variable.cpp
15
Variable::Variable(ObjectID* id, const BString& name, Type* type,
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
151
class CLanguageExpressionEvaluator::InternalVariableID : public ObjectID {
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
163
virtual bool operator==(const ObjectID& other) const
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1978
BReference<ObjectID> idReference(id, true);