Searched defs:lookup_name (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxFsDxe/
H A Dfsw_iso9660.c88 struct fsw_string *lookup_name, struct fsw_iso9660_dnode **child_dno);
466 struct fsw_string *lookup_name, struct fsw_iso9660_dnode **child_dno_out)
498 if (fsw_streq(lookup_name, &dirrec_buffer.name)) // TODO: compare case-insensitively
465 fsw_iso9660_dir_lookup(struct fsw_iso9660_volume *vol, struct fsw_iso9660_dnode *dno, struct fsw_string *lookup_name, struct fsw_iso9660_dnode **child_dno_out) argument
H A Dfsw_core.c512 struct fsw_string *lookup_name, struct fsw_dnode **child_dno_out)
522 return dno->vol->fstype_table->dir_lookup(dno->vol, dno, lookup_name, child_dno_out);
543 struct fsw_string lookup_name; local
553 fsw_strsplit(&lookup_name, &remaining_path, separator);
556 lookup_name.len, lookup_name.data,
559 if (fsw_strlen(&lookup_name) == 0) { // empty path component
598 if (fsw_streq_cstr(&lookup_name, ".")) { // self directory
602 } else if (fsw_streq_cstr(&lookup_name, "..")) { // parent directory
614 status = vol->fstype_table->dir_lookup(vol, dno, &lookup_name,
511 fsw_dnode_lookup(struct fsw_dnode *dno, struct fsw_string *lookup_name, struct fsw_dnode **child_dno_out) argument
[all...]
H A Dfsw_hfs.c74 struct fsw_string *lookup_name, struct fsw_hfs_dnode **child_dno);
1047 struct fsw_string * lookup_name,
1066 catkey.nodeName.length = (fsw_u16)lookup_name->len;
1069 if (lookup_name->type == FSW_STRING_TYPE_UTF16)
1071 fsw_memcpy(catkey.nodeName.unicode, lookup_name->data, lookup_name->size);
1072 rec_name = *lookup_name;
1075 status = fsw_strdup_coerce(&rec_name, FSW_STRING_TYPE_UTF16, lookup_name);
1045 fsw_hfs_dir_lookup(struct fsw_hfs_volume * vol, struct fsw_hfs_dnode * dno, struct fsw_string * lookup_name, struct fsw_hfs_dnode ** child_dno_out) argument

Completed in 182 milliseconds