OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CreateValueFromAddress
(Results
1 - 10
of
10
) sorted by null
/external/lldb/examples/summaries/cocoa/
Selector.py
14
return valobj.
CreateValueFromAddress
('text',valobj.GetValueAsUnsigned(0),valobj.GetType().GetBasicType(lldb.eBasicTypeChar)).AddressOf().GetSummary()
CFString.py
38
child_ptr = valobj.
CreateValueFromAddress
("string_ptr",pointee,valobj.GetType())
39
child = child_ptr.
CreateValueFromAddress
("string_data",child_ptr.GetValueAsUnsigned(),valobj.GetType()).AddressOf()
132
vopointer = self.valobj.
CreateValueFromAddress
("dummy",pointer,char_type);
166
return self.valobj.
CreateValueFromAddress
("content",
NSIndexSet.py
78
count_vo = self.valobj.
CreateValueFromAddress
("count",
/external/lldb/test/python_api/watchpoint/watchlocation/
TestTargetWatchAddress.py
83
pointee = value.
CreateValueFromAddress
("pointee",
142
pointee = value.
CreateValueFromAddress
("pointee",
TestSetWatchlocation.py
68
pointee = value.
CreateValueFromAddress
("pointee",
/external/lldb/test/python_api/default-constructor/
sb_value.py
54
obj.
CreateValueFromAddress
("x", 0x123, invalid_type)
/external/lldb/test/python_api/sbdata/
TestSBData.py
136
# lldb::SBValue::
CreateValueFromAddress
does not verify SBType::GetPointerType succeeds
138
nothing = foobar.
CreateValueFromAddress
("nothing", foobar_addr, star_foobar.GetType().GetBasicType(lldb.eBasicTypeInvalid))
140
new_foobar = foobar.
CreateValueFromAddress
("f00", foobar_addr, star_foobar.GetType())
/external/lldb/include/lldb/API/
SBValue.h
162
CreateValueFromAddress
(const char* name,
/external/lldb/scripts/Python/interface/
SBValue.i
245
CreateValueFromAddress
(const char* name, lldb::addr_t address, lldb::SBType type);
/external/lldb/source/API/
SBValue.cpp
755
SBValue::
CreateValueFromAddress
(const char* name, lldb::addr_t address, SBType sb_type)
792
log->Printf ("SBValue(%p)::
CreateValueFromAddress
=> \"%s\"", value_sp.get(), new_value_sp->GetName().AsCString());
794
log->Printf ("SBValue(%p)::
CreateValueFromAddress
=> NULL", value_sp.get());
[
all
...]
Completed in 483 milliseconds