Home
last modified time | relevance | path

Searched refs:system_id (Results 1 – 12 of 12) sorted by relevance

/reactos/sdk/tools/mkisofs/schilytools/mkisofs/
H A Diso9660.h69 char system_id [ISODCL(9, 40)]; /* achars */ member
108 char system_id [ISODCL(9, 40)]; /* achars */ member
144 char system_id [ISODCL(8, 39)]; member
285 char system_id [ISODCL(85, 116)]; /* achars */ member
H A Dwrite.c2053 memset(vol_desc.system_id, ' ', sizeof (vol_desc.system_id));
2054 memcpy_max(vol_desc.system_id, system_id, strlen(system_id));
H A Dmkisofs.c167 char *system_id = SYSTEM_ID_DEFAULT; variable
353 {"SYSI", &system_id},
1296 {{"sysid*", &system_id },
2443 if (system_id) {
2444 if (strlen(system_id) > 32) {
H A Djoliet.c467 convert_to_unicode((Uchar *)jvol_desc->system_id,
468 sizeof (jvol_desc->system_id), NULL, in_nls);
H A Deltorito.c275 memcpy(boot_desc->system_id, EL_TORITO_ID, sizeof (EL_TORITO_ID));
H A Dmkisofs.h711 extern char *system_id;
/reactos/sdk/lib/fslib/vfatlib/check/
H A Dfsck.fat.h90 uint8_t system_id[8]; /* Name - can be used to special case member
128 uint8_t system_id[8]; /* Name - can be used to special case member
H A Dboot.c81 strncpy(id, (const char *)b->system_id, 8); in dump_boot()
88 b->system_id[5] | (b->system_id[6] << 8) | (b-> in dump_boot()
89 system_id[7] << 16)); in dump_boot()
/reactos/modules/rosapps/applications/explorer-old/utility/
H A Dxmlstorage.h2729 XMLReader reader(this, (const XMLByte*)buffer, len, system_id);
2731 return read(reader, system_id);
2734 bool read_buffer(const std::string& in, const std::string& system_id=std::string())
2736 return read_buffer(in.c_str(), in.length(), system_id);
2758 return read_buffer(std::string(buffer, len), system_id);
2761 bool read_buffer(const std::string& buffer, const std::string& system_id=std::string())
2765 return read_stream(istr, system_id);
2768 bool read_stream(std::istream& in, const std::string& system_id=std::string())
2772 return read(reader, system_id);
2876 read_buffer(xml_str.c_str(), xml_str.length(), system_id);
[all …]
/reactos/modules/rosapps/applications/sysutils/mkdosfs/
H A Dmkdosfs.c421 __u8 system_id[8]; /* Name - can be used to special case member
1120 strncpy( bs.system_id-1, "mkdosf", 6 ); in setup_tables()
1122 strcpy (bs.system_id, "mkdosfs"); in setup_tables()
1142 bs.system_id[5] = (unsigned char) (volume_id & 0x000000ff); in setup_tables()
1143 bs.system_id[6] = (unsigned char) ((volume_id & 0x0000ff00) >> 8); in setup_tables()
1144 bs.system_id[7] = (unsigned char) ((volume_id & 0x00ff0000) >> 16); in setup_tables()
/reactos/sdk/include/psdk/
H A Dxmllite.idl92 [in] LPCWSTR system_id,
/reactos/modules/rostests/winetests/xmllite/
H A Dreader.c519 const WCHAR *public_id, const WCHAR *system_id, IUnknown **input) in resolver_ResolveUri() argument