當前位置: 首頁>>代碼示例>>Python>>正文


Python idautils.DataRefsTo方法代碼示例

本文整理匯總了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) 
開發者ID:tmr232,項目名稱:Sark,代碼行數:5,代碼來源:function.py

示例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 
開發者ID:lifting-bits,項目名稱:mcsema,代碼行數:9,代碼來源:exception.py

示例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) 
開發者ID:tmr232,項目名稱:Sark,代碼行數:5,代碼來源:line.py

示例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 
開發者ID:arizvisa,項目名稱:ida-minsc,代碼行數:7,代碼來源:quicktime.py

示例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 
開發者ID:mxmssh,項目名稱:IDAmetrics,代碼行數:13,代碼來源:IDAMetrics_static.py


注:本文中的idautils.DataRefsTo方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。