Lines Matching defs:le
530 struct legacy_entry *le;
544 le = (struct legacy_entry*)data->data;
546 if (le->version != LEGACY_ENTRY_VERSION) {
551 if (!memchr(le->port, 0, sizeof(le->port))) {
558 channel_map = le->channel_map;
559 volume = le->volume;
561 if (le->volume_valid && !pa_channel_map_valid(&channel_map)) {
566 if (le->volume_valid && (!pa_cvolume_valid(&volume) || !pa_cvolume_compatible_with_channel_map(&volume, &channel_map))) {
572 (*entry)->port_valid = le->port_valid;
573 (*entry)->port = pa_xstrdup(le->port);
576 (*perportentry)->muted_valid = le->muted_valid;
577 (*perportentry)->volume_valid = le->volume_valid;
578 (*perportentry)->muted = le->muted;
579 (*perportentry)->channel_map = le->channel_map;
580 (*perportentry)->volume = le->volume;