1 Star 0 Fork 1

10808012/TWRP_CN

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
fixPermissions.hpp 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
syhost 提交于 2012-11-26 23:54 . first commit
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <vector>
#include <string.h>
#include <libgen.h>
#include <unistd.h>
#include <sys/stat.h>
#include <dirent.h>
#include "gui/rapidxml.hpp"
#include "twrp-functions.hpp"
using namespace std;
class fixPermissions {
public:
int fixPerms(bool enable_debug, bool remove_data_for_missing_apps);
private:
int pchown(std::string fn, int puid, int pgid);
int pchmod(std::string fn, string mode);
vector <string> listAllDirectories(std::string path);
vector <string> listAllFiles(std::string path);
int removeDir(const std::string path);
int getPackages();
int fixSystemApps();
int fixDataApps();
int fixAllFiles(string directory, int gid, int uid, string file_perms);
int fixDataData(string dataDir);
struct package {
string pkgName;
string codePath;
string appDir;
string app;
string dDir;
int gid;
int uid;
package *next;
};
bool debug;
bool remove_data;
bool multi_user;
package* head;
package* temp;
string packageFile;
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/ubuntu-flyme/TWRP_CN.git
git@gitee.com:ubuntu-flyme/TWRP_CN.git
ubuntu-flyme
TWRP_CN
TWRP_CN
master

搜索帮助