Searched refs:i_namep (Results 1 - 3 of 3) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/isofs/cd9660/
H A Dcd9660_node.h139 u_char *i_namep; /* node name buffer */ member in struct:iso_node
H A Dcd9660_vfsops.c1023 if (strlen(ip->i_namep) != 11 || /* Wrong length? */
1024 bcmp(ip->i_namep+7, ".DAT", 4) || /* Wrong extension? */
1025 (bcmp(ip->i_namep, "AVSEQ", 5) && /* Wrong beginning? */
1026 bcmp(ip->i_namep, "MUSIC", 5)))
1037 track = (ip->i_namep[5] - '0') * 10 + ip->i_namep[6] - '0';
1102 ip->i_namep = &isonullname[0];
1227 * if we have a valid name, fill in i_namep with UTF-8 name
1255 MALLOC(ip->i_namep, u_char *, namelen + 1, M_TEMP, M_WAITOK);
1256 bcopy(utf8namep, ip->i_namep, namele
[all...]
H A Dcd9660_node.c312 if (ip->i_namep != isonullname)
313 FREE(ip->i_namep, M_TEMP);

Completed in 15 milliseconds