@rtype: str @return: Filename of the main module of the process.
(self)
| 176 | return self.dwProcessId |
| 177 | |
| 178 | def get_filename(self): |
| 179 | """ |
| 180 | @rtype: str |
| 181 | @return: Filename of the main module of the process. |
| 182 | """ |
| 183 | if not self.fileName: |
| 184 | self.fileName = self.get_image_name() |
| 185 | return self.fileName |
| 186 | |
| 187 | def open_handle(self, dwDesiredAccess=win32.PROCESS_ALL_ACCESS): |
| 188 | """ |
no test coverage detected