コード例 #1
0
ファイル: init.py プロジェクト: Android-sec/DecLLVM
 def write(self, text):
     # Swap out the unprintable characters
     text = text.decode('ascii', 'replace').encode('ascii', 'replace')
     # Print to IDA message window
     _idaapi.msg(text)
コード例 #2
0
 def write(self, text):
     # NB: in case 'text' is Unicode, msg() will decode it
     # and call umsg() to print it
     _idaapi.msg(text)
コード例 #3
0
 def write(self, text):
     _idaapi.msg(text.replace("%", "%%"))
コード例 #4
0
ファイル: init.py プロジェクト: Hehouhua/idapython
 def write(self, text):
     # NB: in case 'text' is Unicode, msg() will decode it
     # and call umsg() to print it
     _idaapi.msg(text)
コード例 #5
0
 def write(self, text):
     # Swap out the unprintable characters
     text = text.decode('ascii', 'replace').encode('ascii', 'replace')
     _idaapi.msg(text.replace("%", "%%"))
コード例 #6
0
 def write(self, text):
     # Swap out the unprintable characters
     text = text.decode('ascii', 'replace').encode('ascii', 'replace')
     # Print to IDA message window
     _idaapi.msg(text)
コード例 #7
0
 def write(self, text):
     _idaapi.msg(text.replace("%", "%%"))
コード例 #8
0
ファイル: init.py プロジェクト: ImmortalGuardian/MIPT_study
 def write(self, text):
     # Swap out the unprintable characters
     text = text.decode('ascii', 'replace').encode('ascii', 'replace')
     _idaapi.msg(text.replace("%", "%%"))