Lines Matching refs:logs_hdr
1053 struct snd_sof_logs_header * const logs_hdr = malloc(sizeof(*logs_hdr)); in convert() local
1061 if (!logs_hdr) in convert()
1067 config->logs_header = logs_hdr; in convert()
1069 count = fread(logs_hdr, sizeof(*logs_hdr), 1, config->ldc_fd); in convert()
1075 if (strncmp((char *)logs_hdr->sig, SND_SOF_LOGS_SIG, SND_SOF_LOGS_SIG_SIZE)) { in convert()
1082 ret = verify_ldc_checksum(logs_hdr->version.src_hash); in convert()
1089 logs_hdr->version.abi_version)) { in convert()
1097 SOF_ABI_VERSION_MAJOR(logs_hdr->version.abi_version), in convert()
1098 SOF_ABI_VERSION_MINOR(logs_hdr->version.abi_version), in convert()
1099 SOF_ABI_VERSION_PATCH(logs_hdr->version.abi_version)); in convert()
1104 fseek(config->ldc_fd, logs_hdr->data_offset + logs_hdr->data_length, SEEK_SET); in convert()