7 Star 24 Fork 10

Gitee 极速下载/xposed

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/rovo89/Xposed
克隆/下载
xposed_service.h 849 Bytes
一键复制 编辑 原始数据 按行查看 历史
#ifndef XPOSED_SERVICE_H_
#define XPOSED_SERVICE_H_
#include <sys/stat.h>
#include <unistd.h>
namespace xposed {
namespace service {
bool startAll();
#if XPOSED_WITH_SELINUX
bool startMembased();
namespace membased {
int accessFile(const char* path, int mode);
int statFile(const char* path, struct stat* stat);
char* readFile(const char* path, int* bytesRead);
void restrictMemoryInheritance();
} // namespace membased
#endif // XPOSED_WITH_SELINUX
} // namespace service
static inline int zygote_access(const char *pathname, int mode) {
#if XPOSED_WITH_SELINUX
if (xposed->isSELinuxEnabled)
return xposed::service::membased::accessFile(pathname, mode);
#endif // XPOSED_WITH_SELINUX
return access(pathname, mode);
}
} // namespace xposed
#endif /* XPOSED_SERVICE_H_ */
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C/C++
1
https://gitee.com/mirrors/xposed.git
git@gitee.com:mirrors/xposed.git
mirrors
xposed
xposed
master

搜索帮助