Emulated binary path as specified in argv. Example: >>> ql = Qiling([r'myrootfs/path/to/target.bin', 'arg1'], 'myrootfs') >>> ql.targetname 'myrootfs/path/to/target.bin'
(self)
| 333 | |
| 334 | @property |
| 335 | def path(self) -> str: |
| 336 | """Emulated binary path as specified in argv. |
| 337 | |
| 338 | Example: |
| 339 | >>> ql = Qiling([r'myrootfs/path/to/target.bin', 'arg1'], 'myrootfs') |
| 340 | >>> ql.targetname |
| 341 | 'myrootfs/path/to/target.bin' |
| 342 | """ |
| 343 | return self.argv[0] |
| 344 | |
| 345 | @property |
| 346 | def targetname(self) -> str: |
no outgoing calls
no test coverage detected