Lines Matching defs:file_path
1019 static int tlogger_chown(const char *file_path, uint32_t file_path_len)
1021 (void)file_path;
1027 static int tlogger_chown(const char *file_path, uint32_t file_path_len)
1047 ret = (int)ksys_chown((const char __user *)file_path, user, group);
1049 ret = (int)sys_chown((const char __user *)file_path, user, group);
1196 const char *file_path, uint32_t file_path_len)
1214 if (strcmp(file_path, CONFIG_TEE_LOG_DUMP_PATH) == 0) {
1223 (void)file_path;
1250 const char *file_path, uint32_t file_path_len)
1255 filep = filp_open(file_path, O_CREAT | O_RDWR | O_TRUNC, OPEN_FILE_MODE);
1265 int tlogger_store_msg(const char *file_path, uint32_t file_path_len)
1275 if (!file_path || file_path_len > TEE_LOG_FILE_NAME_MAX) {
1287 &read_start, &read_end, file_path, file_path_len);
1292 ret = open_msg_file(&filep, file_path, file_path_len);
1296 ret = tlogger_chown(file_path, file_path_len);