예제 #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)
 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
 def write(self, text):
     # Swap out the unprintable characters
     text = text.decode('ascii', 'replace').encode('ascii', 'replace')
     _idaapi.msg(text.replace("%", "%%"))