コード例 #1
0
ファイル: helper.py プロジェクト: IDA-RE-things/idascripts
 def go(self, ea):
     database.go( self.get(ea) )
コード例 #2
0
def go_offset(segment, offset):
    '''Go to the `offset` of the specified `segment`.'''
    seg = by(segment)
    return database.go(offset + interface.range.start(seg))
コード例 #3
0
ファイル: segment.py プロジェクト: heruix/ida-minsc
def go_offset(segment, offset):
    '''Go to the `offset` of the specified `segment`.'''
    seg = by(segment)
    return database.go(seg.startEA + offset)
コード例 #4
0
ファイル: tools.py プロジェクト: perfectswpuboy1/ida-minsc
 def go(self, ea):
     '''Seek the database to the specified remote address.'''
     res = self.get(ea)
     database.go(res)
コード例 #5
0
ファイル: segment.py プロジェクト: arizvisa/idascripts
def go_offset(segment, offset):
    '''Go to the `offset` of the specified `segment`.'''
    seg = by(segment)
    return database.go(seg.startEA + offset)
コード例 #6
0
ファイル: tools.py プロジェクト: k273811702/idascripts
 def go(self, ea):
     database.go(self.get(ea))
コード例 #7
0
ファイル: tools.py プロジェクト: arizvisa/idascripts
 def go(self, ea):
     '''Seek the database to the specified remote address.'''
     res = self.get(ea)
     database.go(res)