发布时间:2014-08-18 17:07:18
转载自:http://www.2cto.com/kf/201404/293243.html 在Android native编写代码时,会经常接触到sp、wp,sp并不是smart pointer的意思,而是strong point;wp就是weak pointer。这两个概念比较像JAVA中的强弱引用,使用sp和wp可以让编程人员不需要再关系内存的释放问题,防止内存泄露。下面先来看.........【阅读全文】
发布时间:2014-08-05 20:29:32
一、重要结构体1.模块hardware/libhardware/include/hardware/camera_common.h点击(此处)折叠或打开typedef struct camera_module { hw_module_t common; int (*get_number_of_cameras).........【阅读全文】
发布时间:2014-07-29 16:33:42
一 Vold工作机制分析 vold进程:管理和控制Android平台外部存储设备,包括SD插拨、挂载、卸载、格式化等; vold进程接收来自内核的外部设备消息。Vold框架图如下: .........【阅读全文】
发布时间:2014-07-24 09:27:42
在UserName/bin/目录下新建一个git-diff-wrapper.sh#!/bin/sh# diff is called by git with 7 parameters:# path old-file old-hex old-mode new-file new-hex new-mode"bcompare" "$2" "$5" | cat 在UserName/目录下修改.gitconfig文件[user]name = wanqiemail = wanqi@hymost.com[col.........【阅读全文】