当前位置: 首页>>代码示例>>Python>>正文


Python idc.Exit方法代码示例

本文整理汇总了Python中idc.Exit方法的典型用法代码示例。如果您正苦于以下问题:Python idc.Exit方法的具体用法?Python idc.Exit怎么用?Python idc.Exit使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在idc的用法示例。


在下文中一共展示了idc.Exit方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: run

# 需要导入模块: import idc [as 别名]
# 或者: from idc import Exit [as 别名]
def run():

    # Get the path of the idb:
    idb_path = idaapi.cvar.database_idb

    # Set up logging:
    log_file_path = gen_logfile_path(idb_path)
    fh = logging.FileHandler(log_file_path)
    loglevel = logging.INFO
    fh.setLevel(loglevel)
    logger.setLevel(loglevel)
    formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - '
        ' %(message)s')
    fh.setFormatter(formatter)
    logger.addHandler(fh)

    logger.info('Run was called')

    try:
        logger.info('Calling index_idb')
        gen_sdb(sdb_path=None,overwrite=True)
        logger.info('Indexing completed successfully!')
    except:
        logger.exception('Unhandled exception inside run().')
    finally:
        idc.Exit(0) 
开发者ID:xorpd,项目名称:idsearch,代码行数:28,代码来源:standalone_index.py

示例2: exit

# 需要导入模块: import idc [as 别名]
# 或者: from idc import Exit [as 别名]
def exit(code=0):
    if __idascript_active__:
        idc.Exit(code) 
开发者ID:devttys0,项目名称:idascript,代码行数:5,代码来源:idascript.py

示例3: request

# 需要导入模块: import idc [as 别名]
# 或者: from idc import Exit [as 别名]
def request(self, service, output):
        if service not in self.services:
            raise ServiceIsNotRegistered(service)

        idc.Wait()
        with open(output, 'w') as out:
            self.services[service](out)
        idc.Exit(0) 
开发者ID:BinaryAnalysisPlatform,项目名称:bap-ida-python,代码行数:10,代码来源:_service.py


注:本文中的idc.Exit方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。