Home | History | Annotate | Download | only in cd9660

Lines Matching refs:ER

312 	/* Check for root directory, add SP and ER if needed. */
382 * Handle ER - should be the only entry to appear on
786 SUSP_ENTRY_SUSP_ER, "ER", SUSP_LOC_DOT);
789 r->attr.su_entry.ER.h.length[0] = 8;
790 r->attr.su_entry.ER.h.version[0] = 1;
792 r->attr.su_entry.ER.len_id[0] = (u_char)strlen(ext_id);
793 r->attr.su_entry.ER.len_des[0] = (u_char)strlen(ext_des);
794 r->attr.su_entry.ER.len_src[0] = (u_char)strlen(ext_src);
796 l = r->attr.su_entry.ER.len_id[0] +
797 r->attr.su_entry.ER.len_src[0] +
798 r->attr.su_entry.ER.len_des[0];
801 assert(l + r->attr.su_entry.ER.h.length[0] <= 254);
803 r->attr.su_entry.ER.h.length[0] += (u_char)l;
806 r->attr.su_entry.ER.ext_ver[0] = ext_version;
807 memcpy(r->attr.su_entry.ER.ext_data, ext_id,
808 (int)r->attr.su_entry.ER.len_id[0]);
809 l = (int) r->attr.su_entry.ER.len_id[0];
810 memcpy(r->attr.su_entry.ER.ext_data + l,ext_des,
811 (int)r->attr.su_entry.ER.len_des[0]);
813 l += (int)r->attr.su_entry.ER.len_des[0];
814 memcpy(r->attr.su_entry.ER.ext_data + l,ext_src,
815 (int)r->attr.su_entry.ER.len_src[0]);