资源简介
不要打开Reveal,然后打开Patcher,把Reveal拖动到Patcher的窗口中,看到success就代表成功了
代码片段和文件信息
#!/usr/bin/python
import lldb
import sys
import os
import shlex
import argparse
# Global constants
# This path assumes that the script is stored in Contents/SharedSupport/scripts inside Reveal bundle.
revealLocalSharedSupportPath = os.path.dirname(os.path.dirname(__file__))
# Entry point
def __lldb_init_module(debugger internal_dict):
# Make the options parser so we can generate the help text for the LLDB command prior to registering it below
HandleRevealCommand.__doc__ = CreateRevealCommandOptionsParser().format_help()
# Install the debugger command
debugger.HandleCommand(“command script add -f {0}.HandleRevealCommand reveal“.format(__name__))
# Command options parsing
def CreateRevealCommandOptionsParser():
subcommands = {}
subcommands[“load“] = { “func“ : HandleRevealLoadCommand “help“ : “Load the Reveal Server library.“ }
subcommands[“start“] = { “func“ : HandleRevealStartCommand “help“ : “Start Reveal Server if it‘s loaded.“ }
subcommands[“stop“] = { “func“ : HandleRevealStopCommand “help“ : “Stop Reveal Server.“ }
subcommands[“status“] = { “func“ : HandleRevealStatusCommand “help“ : “Print the current status of Reveal Server.“ }
description = “Commands for loading and controlling Reveal Server in the current debugging session.“
parser = argparse.ArgumentParser(prog=“reveal“ description=description)
subparsers = parser.add_subparsers(title=“Available actions“ metavar=“action“)
subparsersMap = {}
for key info in subcommands.iteritems():
subparser = subparsers.add_parser(key help=info[“help“])
subparser.set_defaults(func=info[“func“])
subparsersMap[key] = subparser
subparsersMap[“load“].add_argument(“-a“ “--autostart“ action=“store_true“ help=“Automatically start Reveal Server after loading.“)
return parser
# Command handlers
def HandleRevealCommand(debugger command exe_ctx result internal_dict):
# Parse the command
parser = CreateRevealCommandOptionsParser()
commandArgs = shlex.split(command)
if len(commandArgs) == 0:
parser.print_help()
return
try:
args = parser.parse_args(commandArgs)
except:
return
# Bail out if running an incompatible target
target = exe_ctx.target
if TargetIsCompatible(target) == False:
result.SetError(“target {0} is not supported by Reveal Server.“.format(target.triple))
return
# Check that process is already in the right state
process = exe_ctx.process
if lldb.SBDebugger.StateIsStoppedState(process.state) == False:
result.SetError(“process must be paused to execute Reveal Server commands.“)
return
if ProcessMainThreadContainsframeWithName(process “UIApplicationMain“) == False:
if ProcessMainThreadContainsframeWithName(process “NSExtensionMain“) == False:
result.SetError(“process is not yet ready to execute Reveal Server commands.“)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 0 2018-12-20 17:23 Reavel 20鐮磋В鐗?
目录 0 2018-11-19 12:52 Reavel 20鐮磋В鐗?Reveal.app\
目录 0 2018-11-19 12:52 Reavel 20鐮磋В鐗?Reveal.app\Contents\
目录 0 2018-11-19 12:52 Reavel 20鐮磋В鐗?Reveal.app\Contents\_CodeSignature\
文件 111969 2018-11-19 12:54 Reavel 20鐮磋В鐗?Reveal.app\Contents\_CodeSignature\CodeResources
目录 0 2018-12-20 17:23 __MACOSX\
文件 0 2018-12-20 17:23 __MACOSX\Reavel 20鐮磋В鐗?
目录 0 2018-12-20 17:23 __MACOSX\Reavel 20鐮磋В鐗?Reveal.app\
目录 0 2018-12-20 17:23 __MACOSX\Reavel 20鐮磋В鐗?Reveal.app\Contents\
目录 0 2018-12-20 17:23 __MACOSX\Reavel 20鐮磋В鐗?Reveal.app\Contents\_CodeSignature\
文件 212 2018-11-19 12:54 __MACOSX\Reavel 20鐮磋В鐗?Reveal.app\Contents\_CodeSignature\._CodeResources
文件 212 2018-11-19 12:52 __MACOSX\Reavel 20鐮磋В鐗?Reveal.app\Contents\.__CodeSignature
目录 0 2018-12-20 17:22 Reavel 20鐮磋В鐗?Reveal.app\Contents\MacOS\
文件 6109968 2018-12-20 17:22 Reavel 20鐮磋В鐗?Reveal.app\Contents\MacOS\Reveal_
文件 160 2018-12-20 17:22 Reavel 20鐮磋В鐗?Reveal.app\Contents\MacOS\Reveal
文件 3449140 2018-12-20 17:22 Reavel 20鐮磋В鐗?Reveal.app\Contents\MacOS\libChinaPYG.dylib
文件 212 2018-12-20 17:22 __MACOSX\Reavel 20鐮磋В鐗?Reveal.app\Contents\._MacOS
目录 0 2018-11-19 12:52 Reavel 20鐮磋В鐗?Reveal.app\Contents\Resources\
文件 15445 2018-11-19 12:52 Reavel 20鐮磋В鐗?Reveal.app\Contents\Resources\IBANumberInspectorViewController.nib
目录 0 2018-12-20 17:23 __MACOSX\Reavel 20鐮磋В鐗?Reveal.app\Contents\Resources\
文件 212 2018-11-19 12:52 __MACOSX\Reavel 20鐮磋В鐗?Reveal.app\Contents\Resources\._IBANumberInspectorViewController.nib
目录 0 2018-11-19 12:52 Reavel 20鐮磋В鐗?Reveal.app\Contents\Resources\Connection.storyboardc\
文件 4153 2018-11-19 12:52 Reavel 20鐮磋В鐗?Reveal.app\Contents\Resources\Connection.storyboardc\IBARevealConnectionPopoverWindowController.nib
目录 0 2018-12-20 17:23 __MACOSX\Reavel 20鐮磋В鐗?Reveal.app\Contents\Resources\Connection.storyboardc\
文件 212 2018-11-19 12:52 __MACOSX\Reavel 20鐮磋В鐗?Reveal.app\Contents\Resources\Connection.storyboardc\._IBARevealConnectionPopoverWindowController.nib
文件 2352 2018-11-19 12:52 Reavel 20鐮磋В鐗?Reveal.app\Contents\Resources\Connection.storyboardc\ConnectionPopoverViewController.nib
文件 212 2018-11-19 12:52 __MACOSX\Reavel 20鐮磋В鐗?Reveal.app\Contents\Resources\Connection.storyboardc\._ConnectionPopoverViewController.nib
文件 16138 2018-11-19 12:52 Reavel 20鐮磋В鐗?Reveal.app\Contents\Resources\Connection.storyboardc\aU9-KH-5hx-view-vru-cD-Kdt.nib
文件 212 2018-11-19 12:52 __MACOSX\Reavel 20鐮磋В鐗?Reveal.app\Contents\Resources\Connection.storyboardc\._aU9-KH-5hx-view-vru-cD-Kdt.nib
文件 507 2018-11-19 12:52 Reavel 20鐮磋В鐗?Reveal.app\Contents\Resources\Connection.storyboardc\Info.plist
文件 212 2018-11-19 12:52 __MACOSX\Reavel 20鐮磋В鐗?Reveal.app\Contents\Resources\Connection.storyboardc\._Info.plist
............此处省略1617个文件信息
- 上一篇:百度百科百万级问答语料集
- 下一篇:osg3.4.0帮助文档
相关资源
- SOLIDWORKS 2012中文版从入门到精通.pdf
- Visio 2010科学图形包
- 网站、APP、社交网站真实头像打包2
- 瑞萨Renesas RH850/F1L UM 用户手册 r01uh0
- 品职教育2020年6月CFA三级知识框架图
- OpenCV-vs2013-vc12-x64
- 2018年天津大学媒体计算课程大作业
- 东南大学研究生慕课答案-英文技术协
- 代码阅读方法与实践.2004.中文版(3
- 手把手教你学CAN总线 来清民2010.pdf
- 2013年建模美赛O奖论文集(全部
- UML面向对象需求分析与建模教程 ppt
- 计算机系统结构ppt课件李学干2012年
- 结构方程模型的原理与应用邱皓正2
- 等保2.0--GB-T22239-2019信息安全技术网络
- GBT22239-2019信息安全技术网络安全等级
- Git-1.9.4-preview20140929和GitHub
- 2018年下半年项目管理师题目书pdf_密码
- 移远mc20(芯片mt2503)模块开发资料
- 2018年下半年信息系统项目管理师考试
- 北京市2004年村界shp矢量图
- OpenCV4.0+contrib_installVS2017
- GB35114-2017
- RN4926-OS-V2.2-20140730.zip
- 2011-2015年8套中科院考博英语真题
- ippicv_2017u3_lnx_intel64_general_20170822.tar
- 2011年中国大学生物联网创新创业大赛
- Springer-Modern.Multivariate.Statistical.Techn
- E3200 编程器固件
- 文泉驿字体大全包括18、20、22、24、
评论
共有 条评论