Lines Matching defs:perm
40 static FILE* fopen_win(const char* utf8path, const char* perm) {
42 return fopen(utf8path, perm);
63 wchar_t wperms[4] = {(wchar_t)perm[0], (wchar_t)perm[1], (wchar_t)perm[2], (wchar_t)perm[3]};
69 char perm[4] = {0, 0, 0, 0};
70 char* p = perm;
82 file = fopen_win(path, perm);
84 file = fopen(path, perm);
91 file = fopen(bundlePath.c_str(), perm);
98 path, perm, errno, strerror(errno));