Lines Matching defs:s_entry
513 struct directory_entry * s_entry;
525 s_entry = dpnt->jcontents;
526 while(s_entry)
528 if(s_entry->de_flags & INHIBIT_JOLIET_ENTRY) {
529 s_entry = s_entry->jnext;
539 if( (s_entry->de_flags & RELOCATED_DIRECTORY) != 0 )
543 if( s_entry1->parent_rec == s_entry )
559 s_entry1 = s_entry;
620 if( (s_entry->de_flags & RELOCATED_DIRECTORY) != 0 )
685 s_entry = s_entry->jnext;
701 struct directory_entry * s_entry;
710 for(s_entry = this_dir->contents; s_entry; s_entry = s_entry->next)
713 if( (s_entry->de_flags & INHIBIT_JOLIET_ENTRY) != 0 )
727 if(s_entry->isorec.flags[0] == 2)
729 if (strcmp(s_entry->name,".") && strcmp(s_entry->name,".."))
732 if (USE_MAC_NAME(mac_name, s_entry))
734 jpath_table_size += joliet_strlen(s_entry->hfs_ent->name) + sizeof(struct iso_path_table) - 1;
737 jpath_table_size += joliet_strlen(s_entry->name) + sizeof(struct iso_path_table) - 1;
745 if (this_dir == root && strlen(s_entry->name) == 1)
753 if (strcmp(s_entry->name,".") && strcmp(s_entry->name,".."))
756 if (USE_MAC_NAME(mac_name, s_entry))
758 s_entry->jreclen = sizeof(struct iso_directory_record)
759 - sizeof(s_entry->isorec.name)
760 + joliet_strlen(s_entry->hfs_ent->name)
764 s_entry->jreclen = sizeof(struct iso_directory_record)
765 - sizeof(s_entry->isorec.name)
766 + joliet_strlen(s_entry->name)
775 s_entry->jreclen = sizeof(struct iso_directory_record)
776 - sizeof(s_entry->isorec.name)
795 s_entry = this_dir->jcontents;
800 for(s_entry = this_dir->jcontents; s_entry; s_entry = s_entry->jnext)
804 if( (s_entry->de_flags & INHIBIT_JOLIET_ENTRY) != 0 )
809 jreclen = s_entry->jreclen;
892 struct directory_entry * s_entry;
895 s_entry = *sort_dir;
896 while(s_entry)
899 if (!(s_entry->de_flags & INHIBIT_JOLIET_ENTRY))
901 s_entry = s_entry->next;
911 s_entry = *sort_dir;
912 while(s_entry)
915 if (!(s_entry->de_flags & INHIBIT_JOLIET_ENTRY)) {
916 sortlist[dcount] = s_entry;
919 s_entry = s_entry->next;