Lines Matching refs:open
164 uint32_t fdBase = open(fileBasePath, O_RDONLY | O_BINARY);
165 uint32_t fdRun = open(fileRunPath, O_RDONLY | O_BINARY);
167 uint32_t fdBase = open(fileBasePath, O_RDONLY);
168 uint32_t fdRun = open(fileRunPath, O_RDONLY);
209 uint32_t fd = open(filePath, O_RDONLY | O_BINARY);
211 uint32_t fd = open(filePath, O_RDONLY);
284 uint32_t fd = open(filePath, O_WRONLY | O_CREAT | O_BINARY, DEFAULT_FILE_PERMISSION);
286 uint32_t fd = open(filePath, O_WRONLY | O_CREAT, DEFAULT_FILE_PERMISSION);
301 uint32_t fd = open(filePath, O_RDONLY);
344 uint32_t logFd = open(useLogPath, O_WRONLY | O_CREAT | O_APPEND, DEFAULT_FILE_PERMISSION);
346 GRAPHIC_LOGE("open log failed");