Home
last modified time | relevance | path

Searched refs:s_entry (Results 1 – 11 of 11) sorted by relevance

/netbsd-src/external/gpl2/mkhybrid/dist/
H A Dtree.c157 struct directory_entry * s_entry; in FDECL1() local
196 s_entry = this_dir->contents; in FDECL1()
197 while(s_entry) in FDECL1()
200 if (s_entry->de_flags & INHIBIT_ISO9660_ENTRY) in FDECL1()
202 s_entry = s_entry->next; in FDECL1()
209 if(!(s_entry1 = find_file_hash(s_entry->isorec.name))) in FDECL1()
211 add_file_hash(s_entry); in FDECL1()
212 s_entry = s_entry->next; in FDECL1()
218 if(apple_both && s_entry1->assoc && s_entry1->assoc == s_entry) in FDECL1()
220 s_entry = s_entry->next; in FDECL1()
[all …]
H A Dwrite.c457 struct directory_entry * s_entry; in FDECL1() local
461 s_entry = *sort_dir; in FDECL1()
462 while(s_entry) in FDECL1()
464 if (s_entry->de_flags & INHIBIT_ISO9660_ENTRY) in FDECL1()
467 s_entry = s_entry->next; in FDECL1()
483 s_entry = *sort_dir; in FDECL1()
484 while(s_entry) in FDECL1()
486 if(s_entry->de_flags & INHIBIT_ISO9660_ENTRY) in FDECL1()
489 sortlist[j--] = s_entry; in FDECL1()
493 sortlist[dcount] = s_entry; in FDECL1()
[all …]
H A Dapple.c214 get_none_dir(char *hname, const char *dname, dir_ent *s_entry, int ret) in get_none_dir() argument
217 hstrncpy(s_entry->hfs_ent->name, dname, HFS_MAX_FLEN); in get_none_dir()
226 get_none_info(char *hname, char *dname, dir_ent *s_entry, int ret) in get_none_info() argument
229 hfsdirent *hfs_ent = s_entry->hfs_ent; in get_none_info()
231 map_ext(dname, &t, &c, &s_entry->hfs_ent->fdflags, s_entry->whole_name); in get_none_info()
273 get_cap_dir(char *hname, const char *dname, dir_ent *s_entry, int ret) in get_cap_dir() argument
289 cstrncpy(s_entry->hfs_ent->name, info.fi_macfilename, HFS_MAX_FLEN); in get_cap_dir()
294 hstrncpy(s_entry->hfs_ent->name, dname, HFS_MAX_FLEN); in get_cap_dir()
303 get_cap_info(char *hname, char *dname, dir_ent *s_entry, int ret) in get_cap_info() argument
312 hfsdirent *hfs_ent = s_entry->hfs_ent; in get_cap_info()
[all …]
H A Djoliet.c513 struct directory_entry * s_entry; in FDECL2() local
525 s_entry = dpnt->jcontents; in FDECL2()
526 while(s_entry) in FDECL2()
528 if(s_entry->de_flags & INHIBIT_JOLIET_ENTRY) { in FDECL2()
529 s_entry = s_entry->jnext; in FDECL2()
539 if( (s_entry->de_flags & RELOCATED_DIRECTORY) != 0 ) in FDECL2()
543 if( s_entry1->parent_rec == s_entry ) in FDECL2()
559 s_entry1 = s_entry; in FDECL2()
620 if( (s_entry->de_flags & RELOCATED_DIRECTORY) != 0 ) in FDECL2()
685 s_entry = s_entry->jnext; in FDECL2()
[all …]
H A Dvolume.c276 struct directory_entry * s_entry; /* ISO directory entry */ in FDECL2() local
299 for(s_entry = node->contents; s_entry; s_entry = s_entry->next) in FDECL2()
302 if(s_entry->isorec.flags[0]) in FDECL2()
306 if(!s_entry->hfs_ent) in FDECL2()
310 fprintf(stderr," Name = %s", s_entry->whole_name); in FDECL2()
311 fprintf(stderr," Startb = %d\n", s_entry->starting_block); in FDECL2()
314 ent = s_entry->hfs_ent; in FDECL2()
335 s_entry->whole_name); in FDECL2()
367 s_entry->whole_name); in FDECL2()
374 s_entry->whole_name); in FDECL2()
[all …]
H A Drock.c146 struct directory_entry * s_entry, in generate_rock_ridge_attributes() argument
152 s_entry, in generate_rock_ridge_attributes()
156 char * whole_name; char * name; struct directory_entry * s_entry; in generate_rock_ridge_attributes()
169 if (s_entry->de_flags & INHIBIT_ISO9660_ENTRY)
175 currlen = sizeof(s_entry->isorec);
179 if (S_ISREG(lstatbuf->st_mode) && apple_ext && s_entry->hfs_ent) {
184 Rock[ipnt++] = s_entry->hfs_ent->type[0];
185 Rock[ipnt++] = s_entry->hfs_ent->type[1];
186 Rock[ipnt++] = s_entry->hfs_ent->type[2];
187 Rock[ipnt++] = s_entry->hfs_ent->type[3];
[all …]
H A Dmulti.c815 struct directory_entry * s_entry; in FDECL3() local
899 for(s_entry = this_dir->contents; s_entry; s_entry = s_entry->next) in FDECL3()
905 if( s_entry->name != NULL && strcmp(s_entry->name, ".") == 0 ) in FDECL3()
909 if( s_entry->name != NULL && strcmp(s_entry->name, "..") == 0 ) in FDECL3()
913 if( strcmp(s_entry->name, "<translation table>") == 0) in FDECL3()
917 if( (s_entry->de_flags & SAFE_TO_REUSE_TABLE_ENTRY) == 0 ) in FDECL3()
928 for(s_entry = this_dir->contents; s_entry; s_entry = s_entry->next) in FDECL3()
930 if( strcmp(s_entry->name, "<translation table>") == 0) in FDECL3()
933 set_733(s_entry->isorec.extent, ttbl_extent); in FDECL3()
1134 struct directory_entry * s_entry; in FDECL2() local
[all …]
H A Dmkisofs.c771 struct directory_entry * s_entry; in hide_reloc_dir() local
773 for (s_entry = reloc_dir->contents; s_entry; s_entry = s_entry->next) { in hide_reloc_dir()
774 if(strcmp(s_entry->name,".")==0 || strcmp(s_entry->name,"..")==0) in hide_reloc_dir()
777 if((s_entry->de_flags & INHIBIT_ISO9660_ENTRY) == 0) in hide_reloc_dir()
H A Dmac_label_proto.h29 struct directory_entry *s_entry; member
H A DChangeLog569 filled in the starting_extent field to s_entry before calling
737 * hash.c (add_hash, find_hash, etc): Do not hash s_entry, instead
738 store relevant info in hash structure (we free s_entry structs as
807 * write.c (generate_one_directory): Update s_entry->size for
848 * tree.c (scan_directory_tree): Use s_entry instead of sort_dir,
/netbsd-src/external/bsd/am-utils/dist/amd/
H A Dsun_map.c426 const struct sun_entry *s_entry) in sun_hsfs2amd() argument
433 xstrlcat(dest, s_entry->location_list->path, destlen); in sun_hsfs2amd()
450 const struct sun_entry *s_entry) in sun_nfs2amd() argument
452 if (s_entry->location_list != NULL) { in sun_nfs2amd()
454 sun_locations2amd(dest, destlen, key, s_entry->location_list); in sun_nfs2amd()
472 const struct sun_entry *s_entry) in sun_multi2amd() argument
482 for (mountpt = s_entry->mountpt_list; in sun_multi2amd()
512 struct sun_entry *s_entry = NULL; in sun_entry2amd() local
533 s_entry = sun_map_parse_read(line_buff); in sun_entry2amd()
534 if (s_entry == NULL) { in sun_entry2amd()
[all …]