本文整理匯總了Python中idautils.DataRefsTo方法的典型用法代碼示例。如果您正苦於以下問題:Python idautils.DataRefsTo方法的具體用法?Python idautils.DataRefsTo怎麽用?Python idautils.DataRefsTo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類idautils
的用法示例。
在下文中一共展示了idautils.DataRefsTo方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: drefs_to
# 需要導入模塊: import idautils [as 別名]
# 或者: from idautils import DataRefsTo [as 別名]
def drefs_to(self):
"""Source addresses of data xrefs to this function."""
return idautils.DataRefsTo(self.start_ea)
示例2: find_xrefs
# 需要導入模塊: import idautils [as 別名]
# 或者: from idautils import DataRefsTo [as 別名]
def find_xrefs(addr):
lrefs = list(idautils.DataRefsTo(addr))
if len(lrefs) == 0:
lrefs = list(idautils.refs(addr, first, next))
lrefs = [r for r in lrefs if not idc.isCode(idc.GetFlags(r))]
return lrefs
示例3: drefs_to
# 需要導入模塊: import idautils [as 別名]
# 或者: from idautils import DataRefsTo [as 別名]
def drefs_to(self):
"""Source addresses of data references from this line."""
return idautils.DataRefsTo(self.ea)
示例4: nameAllDispatches
# 需要導入模塊: import idautils [as 別名]
# 或者: from idautils import DataRefsTo [as 別名]
def nameAllDispatches(ea):
'''Using the address of {theQuickTimeDispatcher}, name and tag all discovered dispatch calls in quicktime.qts'''
for address in idautils.DataRefsTo(ea):
nameDispatch(address)
return
示例5: is_var_global
# 需要導入模塊: import idautils [as 別名]
# 或者: from idautils import DataRefsTo [as 別名]
def is_var_global(self, operand, head):
'''
The function checks whether operand global or not.
@return - True if global
'''
if operand == -1:
return False
refs = idautils.DataRefsTo(operand)
if len(list(refs)) > 1:
return True
return False