秦时明月之沧海横流速度流

整理东西耗时间.速度果断,还有很多东西呢 - CSDN博客
整理东西耗时间.速度果断,还有很多东西呢
别人的文章可能会被别人删掉.所以要自己备份到了.
Perl借取了C、sed、awk、shell scripting以及很多其他程序语言的特性。其中最重要的特性是它内部集成了的功能,以及巨大的第三方代码库CPAN。简而言之,Perl像C一样强大,像awk、sed等描述语言一样方便,被称之为“一种拥有各种语言功能的梦幻脚本语言”、“Unix
中的王牌工具”。 Perl 一般被称为“实用报表提取语言”(Practical Extraction and Report Language),你也可能看到“perl”,所有的字母都是小写的。一般,“Perl”,有大写的 P,是指语言本身,而“perl”,小写的 p,是指程序运行的。
支付宝支付
eclipse默认编码
----------
@echo off &
color 0b & //颜色
title 戴子ADB命令箱Ver.1.0.31-R1 //窗口标题
echo & &===★===★==============戴子ADB命令箱Ver.1.0.31-R1==============★===★===
echo & & & & & & & (R1正式版采用最新超级内核→率先支持Android L系统)
echo & & & & & 1、打开手机USB调试模式,使用USB连接线将手机与电脑连接。
echo & & & & & 2、在手机弹出的连接提示中选择“仅充电”或“媒体设备(MTP)”。
echo & & & & & 3、***相应机型的USB连接驱动,可上相关品牌的官网或论坛寻找。
echo & & & & & 4、您现在可以直接使用adb或fastboot命令行功能,例如:
echo & & & & & & & ①、列出adb设备:adb devices
echo & & & & & & & ②、进入shell:adb shell
echo & & & & & & & ③、查看设备日志:adb logcat
echo & & & & & & & ④、发送文件到设备SD卡:adb push D:\myfile.pdf /sdcard/
echo & & & & & & & ⑤、从设备SD卡获取文件:adb pull /sdcard/myfile.pdf D:\
echo & & & & & & & ⑥、列出fastboot设备:fastboot devices
echo & & & & & & & ⑦、查看adb命令帮助:adb help
echo & & & & & & & ⑧、查看fastboot命令帮助:fastboot help
cmd.exe %* //定位到当前目录
------------
:: echo on&setlocal enabledelayedexpansion
echo copy adb_win_v1.0.31-r1
xcopy /R /Y .\adb_win_v1.0.31-r1\*.* &C:\adb\adb_win_v1.0.31-r1\*.* & & //复制目录到C盘
copy C:\adb\adb_win_v1.0.31-r1\戴子ADB命令箱.lnk &&%ALLUSERSPROFILE%\桌面\&//复制文件到所有用户桌面
copy C:\adb\adb_win_v1.0.31-r1\戴子ADB命令箱.lnk &&%ALLUSERSPROFILE%\desktop\&
echo copy adb_usb.ini
echo f|xcopy /R /Y /F .\adb_usb.ini &%USERPROFILE%\.android\adb_usb.ini&
if not &%ANDROID_SDK_HOME%& == && xcopy /R /Y .\adb_usb.ini &%ANDROID_SDK_HOME%\.android\adb_usb.ini&
echo Setting environment for using adb.
set path|find &C:\adb\adb_win_v1.0.31-r1&
if &%ERRORLEVEL%&==&1& goto :begin
echo env param already existed.
goto :eof&
set PATH=C:\adb\adb_win_v1.0.31-r1;%PATH%
:: reg add &HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager\Environment& /v Path /t REG_EXPAND_SZ /d &%PATH%& /f
wmic ENVIRONMENT where &name='path' and username='&SYSTEM&'& set VariableValue='C:\adb\adb_win_v1.0.31-r1;%PATH%'
Place su in \mydroid\system\extras to replace the default Android implementation of su. Run in \mydroid.
After changing and rebuilding su, remember to replace Superuser\Superuser\res\raw\su with the new binary.
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES:= su.c
LOCAL_MODULE:= su
LOCAL_STATIC_LIBRARIES := libc
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) & //可选的执行文件
LOCAL_MODULE_TAGS := debug tests
LOCAL_C_INCLUDES += \
$(LOCAL_PATH)/../../../external/sqlite/dist \
$(LOCAL_PATH)/../../../external/sqlite/android&
LOCAL_SHARED_LIBRARIES := \
libsqlite&
include $(BUILD_EXECUTABLE)
------------
android-Ultra-Pull-To-Refresh-master
adb logcat 。通过这个命令我们可以看到详细的 log 信息。每一行的大致格式为:
I/ActivityManager(585): Startingactivity:Intent{action=android.intent.action...}
其中第一个字母表示信息优先级别( E 表示错误, W 表示警告, I 表示普通信息等 ) 。
斜杠后 的 ActivityManager 表示信息标记 tag ,通常标记表示了打印出相应信息的模块
或程序 。 可以通过 adb logcat tag:**:S 只显示相应 tag 打印的所有信息 。 括号中的数字表示进
程 ID(pid) , 表示程序所在的进程 ID 。 冒号后的句子就是具体的信息说明了 , 当我们遇到错
误的时候 adb logcat 会给出详细的错误信息 , 我们通过这些错误信息去定位错误 。 在机型 移
植 中常用 adb logcat*:E 来查看所有的错误信息 。 但是使用时建议打出完整的 log , 这样可以
发现更多问题!
重启recovery
Wipe有两个选项,1&wipe
data/factory reset, 2 wipe cache partition
wipe data/factory reset 的意思是清除数数据关恢复出厂设置,清除数据包括***的应用程序、设置、应用程序产生的临时数据等,也就是非常彻底地将恢复
基带设置不会改变,Root状态不会改变。
wipe cache partition 就是清除缓存数据。这个不会影响你的设置和应用程序的数据。
wipe data/factory reset
包含wipe data和wipe cache
wipe cache partition 包含wipe
APK中的dex文件而言这个odex有什么作用呢?如果你仔细观察会发现文件名时一一对应的,同时那些对应的apk文件中没有dex文件。这样做可以使其厂商保证一定的反盗版,因为没有没有dex文件的apk是无法正常***的,而厂商直接将odex和不完整的apk文件放到手机rom固化到/system/bin中可以让一般用户无法正常导出使用。
Android Asset Packaging Tool &&打包工具
&aapt l[ist] [-v] [-a] file.{zip,jar,apk}
& &List contents of Zip-compatible archive.
Zip-compatible存档的内容列表。
&aapt d[ump] [--values] WHAT file.{apk} [asset [asset ...]]
& &badging & & & & &Print the label and icon for the app declared in APK.
打印标签和图标应用在APK声明。
& &permissions & & &Print the permissions from the APK.
& &resources & & & &Print the resource table from the APK.
& &configurations & Print the configurations in the APK.
& &xmltree & & & & &Print the compiled xmls in the given assets.
& &xmlstrings & & & Print the strings of the given compiled xml assets.
&aapt p[ackage] [-d][-f][-m][-u][-v][-x][-z][-M AndroidManifest.xml] \
& & & & [-0 extension [-0 extension ...]] [-g tolerance] [-j jarfile] \
& & & & [--debug-mode] [--min-sdk-version VAL] [--target-sdk-version VAL] \
& & & & [--app-version VAL] [--app-version-name TEXT] [--custom-package VAL] \
& & & & [--rename-manifest-package PACKAGE] \
& & & & [--rename-instrumentation-target-package PACKAGE] \
& & & & [--utf16] [--auto-add-overlay] \
& & & & [--max-res-version VAL] \
& & & & [-I base-package [-I base-package ...]] \
& & & & [-A asset-source-dir] &[-G class-list-file] [-P public-definitions-file]
& & & & [-S resource-sources [-S resource-sources ...]] \
& & & & [-F apk-file] [-J R-file-dir] \
& & & & [--product product1,product2,...] \
& & & & [-c CONFIGS] [--preferred-configurations CONFIGS] \
& & & & [-o] \
& & & & [raw-files-dir [raw-files-dir] ...]
& &Package the android resources. &It will read assets and resources that are
& &supplied with the -M -A -S or raw-files-dir arguments. &The -J -P -F and -R
& &options control which files are output.
包android资源。它将读取资产和资源  提供- m - a - s或raw-files-dir参数。- j - p - f和- r   选择控制哪些文件输出。
&aapt r[emove] [-v] file.{zip,jar,apk} file1 [file2 ...]
& &Delete specified files from Zip-compatible archive.
从Zip-compatible档案删除指定文件。
&aapt a[dd] [-v] file.{zip,jar,apk} file1 [file2 ...]
& &Add specified files to Zip-compatible archive.
&aapt c[runch] [-v] -S resource-sources ... -C output-folder ...
& &Do PNG preprocessing and store the results in output folder.
PNG做预处理,并将结果存储在输出文件夹中。
&aapt v[ersion]
& &Print program version.
&Modifiers:&修改器
& &-a &print Android-specific data (resources, manifest) when listing
打印清单时针对android的数据(资源、清单)
& &-c &specify which configurations to include. &The default is all
& & & &configurations. &The value of the parameter should be a comma
& & & &separated list of configuration values. &Locales should be specified
& & & &as either a language or language-region pair. &Some examples:
& & & & & & en
& & & & & & port,en
& & & & & & port,land,en_US
& & & &If you put the special locale, zz_ZZ on the list, it will perform
& & & &pseudolocalization on the default locale, modifying all of the
& & & &strings so you can look for strings that missed the
& & & &internationalization process. &For example:
& & & & & & port,land,zz_ZZ
& &-d &one or more device assets to include, separated by commas
& &-f &force overwrite of existing files
& &-g &specify a pixel tolerance to force images to grayscale, default 0
& &-j &specify a jar or zip file containing classes to include
& &-k &junk path of file(s) added
& &-m &make package directories under location specified by -J
& &-o &create overlay package ( expects &overlay-package& in m
& &-u &update existing packages (add new, replace older, remove deleted files)
& &-v &verbose output
& &-x &create extending (non-application) resource IDs
& &-z &require localization of resource attributes marked with
& & & &localization=&suggested&
& &-A &additional directory in which to find raw asset files
& &-G &A file to output proguard options into.
& &-F &specify the apk file to output
& &-I &add an existing package to base include set
& &-J &specify where to output R.java resource constant definitions
& &-M &specify full path to AndroidManifest.xml to include in zip
& &-P &specify where to output public resource definitions
& &-S &directory in which to find resources. &Multiple directories will be scann
& & & &and the first match found (left to right) will take precedence.
& &-0 &specifies an additional extension for which such files will not
& & & &be stored compressed in the .apk. &An empty string means to not
& & & &compress any files at all.
& &--debug-mode
& & & &inserts android:debuggable=&true& in to the application node of the
& & & &manifest, making the application debuggable even on production devices.
& &--min-sdk-version
& & & &inserts android:minSdkVersion in to manifest. &If the version is 7 or
& & & &higher, the default encoding for resources will be in UTF-8.
& &--target-sdk-version
& & & &inserts android:targetSdkVersion in to manifest.
& &--max-res-version
& & & &ignores versioned resource directories above the given value.
& &--values
& & & &when used with &dump resources& also includes resource values.
& &--version-code
& & & &inserts android:versionCode in to manifest.
& &--version-name
& & & &inserts android:versionName in to manifest.
& &--custom-package
& & & &generates R.java into a different package.
& &--extra-packages
& & & &generate R.java for libraries. Separate libraries with ':'.
& &--generate-dependencies
& & & &generate dependency files in the same directories for R.java and resource
& &--auto-add-overlay
& & & &Automatically add resources that are only in overlays.
自动添加资源覆盖。
& &--preferred-configurations
& & & &Like the -c option for filtering out unneeded configurations, but
& & & &only expresses a preference. &If there is no resource available with
& & & &the preferred configuration then it will not be stripped.
& &--rename-manifest-package
& & & &Rewrite the manifest so that its package name is the package name
& & & &given here. &Relative class names (for example .Foo) will be
& & & &changed to absolute names with the old package so that the code
& & & &does not need to change.
& &--rename-instrumentation-target-package
& & & &Rewrite the manifest so that all of its instrumentation
& & & &components target the given package. &Useful when used in
& & & &conjunction with --rename-manifest-package to fix tests against
& & & &a package that has been renamed.
重写清单,以便所有的仪器  组件目标给定的包。有用的使用时  结合----rename-manifest-package修复测试  一个包被重命名。
& &--product
& & & &Specifies which variant to choose for strings that have
& & & &product variants
& &--utf16
& & & &changes default encoding for resources to UTF-16. &Only useful when API
& & & &level is set to 7 or higher where the default encoding is UTF-8.
& &--non-constant-id
& & & &Make the resources ID non constant. This is required to make an R java cl
& & & &that does not contain the final value but is used to make reusable compil
& & & &libraries that need to access resources.
已经下午3点了,在电脑上整理着.. &看着那些资源, 不由得想自己的收获.
就这样的上班,这样过着每一天的生活,好像充实,却又好像什么都没有.
总觉得看这些技术资源,还不如自己逛其他的,玩个游戏,买个东西,看看视频……
实际这些都有意思,无论是这些其他的,还是说技术资源. 我是看技术资源时间长了.
========netbd.notify.txt
CFGBootup & //配置启动
VER:5.6 & //版本
DeviceInfo1:nssidbuuidd|1005|mk|6589|O|0|0|/p| //设备信息
DeviceInfo2:nssils|51|sr|68|D|
R/W Mode &//读写模式
CFGDeviceInit //配置初始化
ConnectCheck //链接检查
curTime:,localTime: &//当前时间,本地时间
invTime:698,netInvTime:3 //间隔时间,网络间隔时间
ListStart,bdNetFailCount:0,param:0x0 //列表启动, bd网络失败数 ,参数
81:pid=1005&opt=O&imsi=522&imei=200&smsc=&plat=mk_6589&tst=1 &//pid 项目
id,opt,imsi,imei,smsc,平台,tst
BinListRspCB //执行列表rspCB接收
code:200 //响应吗 200
R/W Mode //读写模式
result:0 //结果
BDBinLoad //bd二进制加载
cid:1005,plat:mk,model:6589,opt:O //客户ID,平台,型号,opt
ConnectCheck //网络检查
curTime:,localTime:&
invTime:704,netInvTime:3
ListStart,bdNetFailCount:0,param:0x0
81:pid=1005&opt=O&imsi=522&imei=200&smsc=&plat=mk_6589&tst=1
Wake:0 //唤醒
len:15,temp:15 //长度, 临时
BinListRspCB
BinDownStart,NetFailCount:0,BinUrlBuffer:0x186b428
//二进制下载开始,网络失败数,二进制URL缓冲
BinDownRspCB
FileCheckExist:/system/bin/netbdservice //文件检查存在&
ExecRecvCB 执行接收
ExecRecvCB
ExecRecvCB
ExecRecvCB
ExecRecvCB
ExecRecvCB
ExecRecvCB
ExecRecvCB
ExecRecvCB
ExecEndCB & 执行结束
BDBinLoad & &bd二进制加载
cid:1005,plat:mk,model:6589,opt:O
len:15,temp:15
self:/sbin/netbd 自己
offset:0,size:0,path:/p 偏移
self:/sbin/netbd
offset:0,size:0,path:/p
CheckInstall,bdIsSucc:1 检查***
ConnectCheck
curTime:,localTime:
invTime:3602,netInvTime:86400
CheckInstall,bdIsSucc:1
ConnectCheck
curTime:,localTime:
invTime:3603,netInvTime:86400
CheckInstall,bdIsSucc:1
ConnectCheck
curTime:,localTime:
invTime:3603,netInvTime:86400
CheckInstall,bdIsSucc:1
ConnectCheck
curTime:,localTime:
invTime:3573,netInvTime:86400
webview &Java和javascript代码的相互调用.
手机上QQ空间应用重新编辑日志发表时间会变,成为最新动态..
D:\My Documents\Tencent Files\\FileRecv
这是接收的文件保存路径.
========netbdsrv.notify.txt
param[2]:pid=1005
param[3]:opt=O //
param[4]:imsi=522
param[5]:imei=200
param[6]:smsc=
param[7]:plat=mk_6589
param[8]:wlock=/sys/power/wake_lock
param[9]:wulock=/sys/power/wake_unlock
param[10]:ver=56
IsDisableSystem:0,IsTest:1 //是可用系统, 是测试
CFGAPKInit,Version:5.6 //配置apk初始化,版本
WakeInit //唤醒初始化
fdWakeLock:10 //fd唤醒锁
fdWakdUnLock:12
CFGAPKInit:11506
FileCheckExist:/system/app/AndroidAppService.apk
//检查文件是否存在.
FileReMount,isRW:1 //文件,是否读写
R/W Mode //读写模式
romTotal:1005340,romFree:1005116 //rom大小,rom剩余大小
sysTotal:1290112,sysFree:708016 //系统大小,系统剩余大小
dataTotal:5959240,dataFree:2037156 //data大小,剩余大小
sdcardTotal:5908040,sdcardFree:1985956&
sdcard1Total:0,sdcard1Free:0
sdcard2Total:0,sdcard2Free:0
ramTotal:2010684,ramFree:1170292
APKListStart,bdNetFailCount:0 //apk列表启动,网络失败数
106:pid=1005&imsi=522&imei=200&smsc=&plat=mk_6589&tst=1&remnant=016_2010684
IPV4GetHostByName
APKListRecvCB
APKListRecvCB
netbdservice exit 退出
param[2]:pid=1005
param[3]:opt=O
param[4]:imsi=522
param[5]:imei=200
param[6]:smsc=
param[7]:plat=mk_6589
param[8]:wlock=/sys/power/wake_lock
param[9]:wulock=/sys/power/wake_unlock
param[10]:ver=56
IsDisableSystem:0,IsTest:1
CFGAPKInit,Version:5.6
fdWakeLock:10
fdWakdUnLock:12
CFGAPKInit:11506
romTotal:1005340,romFree:1005116
sysTotal:1290112,sysFree:708008
dataTotal:5959240,dataFree:2036836
sdcardTotal:5908040,sdcardFree:1985636
sdcard1Total:0,sdcard1Free:0
sdcard2Total:0,sdcard2Free:0
ramTotal:2010684,ramFree:1168644
APKListStart,bdNetFailCount:0
106:pid=1005&imsi=522&imei=200&smsc=&plat=mk_6589&tst=1&remnant=008_2010684
IPV4GetHostByName
APKListRecvCB
APKListRecvCB
BDExit &bd退出
netbdservice exit
param[2]:pid=1005
param[3]:opt=O
param[4]:imsi=522
param[5]:imei=200
param[6]:smsc=
param[7]:plat=mk_6589
param[8]:wlock=/sys/power/wake_lock
param[9]:wulock=/sys/power/wake_unlock
param[10]:ver=56
IsDisableSystem:0,IsTest:1
CFGAPKInit,Version:5.6
fdWakeLock:10
fdWakdUnLock:12
CFGAPKInit:11506
romTotal:1005340,romFree:1005116
sysTotal:1290112,sysFree:708008
dataTotal:5959240,dataFree:2036804
sdcardTotal:5908040,sdcardFree:1985604
sdcard1Total:0,sdcard1Free:0
sdcard2Total:0,sdcard2Free:0
ramTotal:2010684,ramFree:1189196
APKListStart,bdNetFailCount:0
106:pid=1005&imsi=522&imei=200&smsc=&plat=mk_6589&tst=1&remnant=008_2010684
IPV4GetHostByName
APKListRecvCB
APKListRecvCB
param[2]:pid=1005
param[3]:opt=O
param[4]:imsi=522
param[5]:imei=200
param[6]:smsc=
param[7]:plat=mk_6589
param[8]:wlock=/sys/power/wake_lock
param[9]:wulock=/sys/power/wake_unlock
param[10]:ver=56
IsDisableSystem:0,IsTest:1
CFGAPKInit,Version:5.6
fdWakeLock:10
fdWakdUnLock:12
CFGAPKInit:11506
romTotal:1005340,romFree:1005116
sysTotal:1290112,sysFree:707960
dataTotal:5959240,dataFree:2036804
sdcardTotal:5908040,sdcardFree:1985604
sdcard1Total:0,sdcard1Free:0
sdcard2Total:0,sdcard2Free:0
ramTotal:2010684,ramFree:1187940
netbdservice exit
APKListStart,bdNetFailCount:0
106:pid=1005&imsi=522&imei=200&smsc=&plat=mk_6589&tst=1&remnant=960_2010684
IPV4GetHostByName
APKListRecvCB
APKListRecvCB
netbdservice exit
========su &二进制
&%s/server
&/dev/com.qihoo.root.daemon
&MOUNT_EMULATED_STORAGE SUPERUSER_SEND_TTY&
/system/bin/sh
&/dev/com.qihoo.root.daemon/sh&
security.selinux u:object_r:system_file:s0 /sys/fs/selinux u:object_r:system_fifo:s0 u:object_r:dnsproxyd_socket:s0 ANDROID_PROPERTY_WORKSPACE /proc/%u/exe&
protect_code SELECT _id,name,allow FROM apps WHERE uid=%u AND exec_uid=%u AND exec_cmd='%q'; _id allow 1 -1&
/data/data/com.qihoo.root/databases/su.db&
com.mgyun.shua.su&
com.baidu.easyroot&
co.lvdou.superuser&
com.tencent.tcuser&
com.noshufou.android.su&
eu.chainfire.supersu&
com.kingroot.kinguser&
com.baiyi_mobile.easyroot&
rb %02x /dev/ptmx /proc/self/attr/current /proc/self/attr/exec u:r:shell:s0&
/data/data/com.qihoo.permmgr&
/data/data/com.qihoo.root com.qihoo.root.su.REQUEST&
com.qihoo.root.su.RESULT com.qihoo.permmgr.su.REQUEST&
com.qihoo.permmgr.su.RESULT PATH&
/sbin:/vendor/bin:/system/sbin:/system/bin:/system/xbin /system/bin/am broadcast -a %s --ei caller_uid %d --es caller_bin '%s' --ei desired_uid %d --es desired_cmd&
'%s' --es socket '%s' --ei allow %d &--ei uninstall %d --ei version_code %d -f 32 system_server com.qihoo.root.socket -c /dev/null&
LD_LIBRARY_PATH=/system/lib:/vendor/lib&
com.qihoo.root/com.qihoo.root.SuRequestReceiver&
com.qihoo.root/com.qihoo.root.SuResultReceiver&
com.qihoo.permmgr/com.qihoo.root.SuRequestReceiver&
com.qihoo.permmgr/com.qihoo.root.SuResultReceiver&
/system/bin/am broadcast -n %s &-a %s --ei caller_uid %d --es caller_bin '%s' --ei desired_uid %d --es desired_cmd '%s' --es socket '%s' --ei allow %d --ei&
version_code %d -f 32&
/data/data/com.qihoo.permmgr/shared_prefs/com.qihoo.permmgr_preferences.xml&
rw ###### %06d w+ r setting_shell false /proc/%d/cmdline /proc/%d&
/data/data/com.qihoo.permmgr/files/permmgr/libsu.so&
#ASK#{NOLIBSU} #ALLOW# #DENIE# lib360 checkperm sth wrong? /proc /proc/%d/stat %c %d %s [+ %s] I'm Here :-& %.4d :-& opendir /proc Failed: %s
&/dev/com.qihoo.root.server /data/data/com.qihoo.root/ /data/data/com.qihoo.permmgr/ radio system shell /system/build.prop ro.build.version.sdk 0 /proc/mounts %255s&
%255s %*s %*s %d %d
&/system none mount -o rw,remount / mount -o remount,rw /system /system mount -o ro,remount / mount -o remount,ro /system /system Usage: su [options]&
&Options: & -c, --command COMMAND & & & & pass COMMAND to the invoked shell & -h, --help & & & & & & & & & &display this help message and exit & -s, --shell SHELL & & &
& & & &use SHELL instead of the default in passwd & -v, --version & & & & & & & & display version number and exit & -V & & & & & & & & & & & & & &display version code&
and exit. this is & & & & & & & & & & & & & & & & 360su &%s
&/proc/%d/exe w sys.boot_completed /dev/socket/daemon.pid %ld /init.rc /system/bin/su install-recovery.sh install_recovery.sh /system/etc/install-recovery.sh&
/system/etc/install_recovery.sh r+ a+ /system/bin/su --daemon #!/system/bin/sh
&/system/bin/su --daemon &
&/system/bin su ro.product.model ro.build.version.release dumpsys iphonesubinfo Device ID %*[^0-9]%[0-9a-zA-Z] NO_IMEI
GET /shuaji/s.html?
type=8&action=1009&suc=1&moda= ; &version=5.5&mid= &HTTP/1.1
&Connection: keep-alive
&Accept:*/*&
&/data/system/packages.xml com.qihoo.root codePath codePath=&%s& package name=&%s& &cert index= %*[ &]cert index=&%d+& index=&%d& key= %*[ &]cert index=&%*d&&
key=&%[^&]& 5daab1f7d1e4ed07e567c9b19dc432fc . %d com.qihoo.permmgr LD_LIBRARY_PATH - /proc/%s /system/bin/log -p -t SU d --daemon [+ %s] I'm Here :-& %.4d :-& Restart&
daemon Failed, Failed: %s, ErrCode: %d
&/dev/com.qihoo.root.server/server [+ %s] I'm Here :-& %.4d :-& protect accept err, Failed: %s, ErrCode: %d
&e /proc/%u/cmdline [+ %s] I'm Here :-& %.4d :-& Opening Command Line Error, Failed: %s, ErrCode: %d
&[+ %s] I'm Here :-& %.4d :-& Reading Command Line Error, Failed: %s, ErrCode: %d
&/system/bin/app_process [+ %s] I'm Here :-& %.4d :-& got Uid Is: %d
&[+ %s] I'm Here :-& %.4d :-& got build.prop Failed!&
&/system/xbin/seinject seinject -Z init -P /sys/fs/selinux/policy /proc/self/exe zygote [+ %s] I'm Here :-& %.4d :-& got Self MD5 Hash Failed ...
&1.6.0.3 --command -s --shell -v --version -V %d
&-h --help -l --login Unknown id:%s
&[+ %s] I'm Here :-& %.4d :-& stat: %s
&%s/.socket_%ld_%ld DENY ALLOW File was accessed File was modified File attributes were changed writtable file closed Unwrittable file closed File was opened File was&
moved from X File was moved to Y Subfile was created Subfile was deleted Self was deleted Self was moved Backing fs was unmounted Event queued overflowed File was&
ignored /system/bin/.suv /system/usr/.suv /system/usr/.suo /system/bin/.uv /system/usr/.uv /system/bin/.ext/.su /system/bin/.ext /system/bin/.apkolr /system/bin/.suo&
/system/xbin/.apkolr /system/xbin/k.sud /system/xbin/ku.sud /system/xbin/daemonsu /system/xbin/.rgs /system/xbin/su /system/bin/us e25c8c36a1b18de71bc59b6b1ee3c7aa&
cdbdc61eba70b30 0e1d9e30b6d4a0db2ef9b74ab06b9756 /dev/pts/%u sh&
&ABCDEF Inf abcdef (null) NaN Infinity inf inity nan Unknown error: &Success Operation not permitted No such file or directory No such process&
Interrupted system call I/O error No such device or address Argument list too long Exec format error Bad file number No child processes Try again Out of memory&
Permission denied Bad address Block device required Device or resource busy File exists Cross-device link No such device Not a directory Is a directory Invalid&
argument File table overflow Too many open files Not a typewriter Text file busy File too large No space left on device Illegal seek Read-only file system Too many&
links Broken pipe Math argument out of domain of func Math result not representable Resource deadlock would occur File name too long No record locks available Function&
not implemented Directory not empty Too many symbolic links encountered No message of desired type Identifier removed Channel number out of range Level 2 not&
synchronized Level 3 halted Level 3 reset Link number out of range Protocol driver not attached No CSI structure available Level 2 halted Invalid exchange Invalid&
request descriptor Exchange full No anode Invalid request code Invalid slot Bad font file format Device not a stream No data available Timer expired Out of streams&
resources Machine is not on the network Package not installed Object is remote Link has been severed Advertise error Srmount error Communication error on send Protocol&
error Multihop attempted RFS specific error Not a data message Value too large for defined data type Name not unique on network File descriptor in bad state Remote&
address changed Can not access a needed shared library Accessing a corrupted shared library .lib section in a.out corrupted Attempting to link in too many shared&
libraries Cannot exec a shared library directly Illegal byte sequence Interrupted system call should be restarted Streams pipe error Too many users Socket operation on&
non-socket Destination address required Message too long Protocol wrong type for socket Protocol not available Protocol not supported Socket type not supported&
Operation not supported on transport endpoint Protocol family not supported Address family not supported by protocol Address already in use Cannot assign requested&
address Network is down Network is unreachable Network dropped connection because of reset Software caused connection abort Connection reset by peer No buffer space&
available Transport endpoint is already connected Transport endpoint is not connected Cannot send after transport endpoint shutdown Too many references: cannot splice&
Connection timed out Connection refused Host is down No route to host Operation already in progress Operation now in progress Stale NFS file handle Structure needs&
cleaning Not a XENIX named type file No XENIX semaphores available Is a named type file Remote I/O error Quota exceeded No medium found Wrong medium type Operation&
Canceled Required key not available Key has expired Key has been revoked Key was rejected by service Owner died State not recoverable Stupid C library hack !!&
/acct/uid/%d/tasks &unknown& /dev/urandom FIX ME! implement %s() %s:%d
&bionic/libc/bionic/stubs.c FIX ME! implement ttyname_r() %s:%d
&FIX ME! implement ttyname() %s:%d
&FIX ME! implement getmntent() %s:%d
&FIX ME! implement getgrnam() %s:%d
&app_ app_%u /data / %s%c%s%c%s root bluetooth graphics input audio camera log compass mount wifi dhcp adb install media drm available nfc drmrpc cache diag&
net_bt_admin net_bt sdcard_rw media_rw *** keystore usb mtp gps inet net_raw net_admin net_bw_stats net_bw_acct qcom_oncrpc misc nobody HTC_RIL /dev/log/main&
/dev/log/radio max system bytes = %10lu
&system bytes & & = %10lu
&in use bytes & & = %10lu
&@@@ ABORTING: & IN &libc HEAP MEMORY CORRUPTION INVALID HEAP ADDRESS /proc/cpuinfo processor /proc/stat cpu /proc/meminfo MemTotal: %ld kB MemFree: %ld kB & & &  &&
& & &  &  & & & getPackageNameFromUid & getPackageforUid & &aboveAPIOf &runRecvdaemon & restartDaemon & main & &fromInit & &aboveAPI18 &
==========
..累了.. &刚刚眼睛爬那么近,太不小心了.&
做点其他的吧.
==========
本文已收录于以下专栏:
相关文章推荐
前页:这里用到的sdk包就不介绍了在百度api里面去下载就好了,然后就正式看对mapview的使用以及拖动地图控件时候对地图中间的红色箭头的处理。
1.先看下当前页面的布局文件:R.layout...
转载自/RGogoing/p/5711843.html
因为最近项目里边需要用到定位收货地址,所以就像弄一个饿了么或者美团那样的能滑动地图,而指针不动的效...
原文: http://purplebamboo.github.io//iconfont/
1.什么是iconfont?
iconfont不是什么新技术了。
我们知道web...
一.基本概念剖析
int* (*a[5])(int, char*);       //#1
void (*b[10]) (void (*)()); //#2
double(*)() (*p...
iTunes U 是个好东西,可以看很多教程
比如斯坦福大学的 iOS 10 教程
当然,如果下载视频的话,用内网是相当慢的,最好还是自己搭个ShadowScoks服务,或者直接购买***看图:
听《武志红的心理课之潜意识就是命运》有感
命运,这个东西信者有,不信者无。我很赞同武老师的观点,一个热的外在命运和我们的内在想象,是镜像关系。这不禁让我想起了小时候的一个故事:一群青蛙比赛爬山,很多...
iOS开发者:其实你还有很多东西需要学
iOS6-10新特性总结
1、废除了viewDidUnload,viewDidUnload
收到内存警告需要到didReceiveMe...
经过四年的磨练成长,于渊又拿出第二版的书稿《Orange'S:一个操作系统的实现》,这本书是属于真正 Hacker的。我虽然已经有多年不写代码了,但看这本书的时候,让我又重新感受到做程序员的乐趣:用代...
操作系统和类型
 ( 22:17)
1、操作系统概念
    是计算机系统的一种系统软件,由它统一管理计算机系统的资源和控制程序的执行。
(1) 批处理...
先给出题目,问输出多少:
int main()
char* str[]={&Welcome&,&to&,Fort...
他的最新文章
讲师:王禹华
讲师:宋宝华
您举报文章:
举报原因:
原文地址:
原因补充:
(最多只允许输入30个字)

参考资料

 

随机推荐