Searched refs:sid (Results 1 - 18 of 18) sorted by relevance

/haiku-fatelf/src/add-ons/kernel/file_systems/ntfs/utils/
H A Dsd.c28 SID *sid; local
77 aa_ace->sid.revision = 1;
78 aa_ace->sid.sub_authority_count = 1;
79 aa_ace->sid.identifier_authority.value[0] = 0;
80 aa_ace->sid.identifier_authority.value[1] = 0;
81 aa_ace->sid.identifier_authority.value[2] = 0;
82 aa_ace->sid.identifier_authority.value[3] = 0;
83 aa_ace->sid.identifier_authority.value[4] = 0;
85 aa_ace->sid.identifier_authority.value[5] = 5;
86 aa_ace->sid
176 SID *sid; local
411 SID *sid; local
[all...]
H A Dmkntfs.c2603 idx_entry_q2_data->sid.revision = 1;
2604 idx_entry_q2_data->sid.sub_authority_count = 2;
2606 idx_entry_q2_data->sid.identifier_authority.value[i] = 0;
2607 idx_entry_q2_data->sid.identifier_authority.value[5] = 0x05;
2608 idx_entry_q2_data->sid.sub_authority[0] =
2610 idx_entry_q2_data->sid.sub_authority[1] =
2628 idx_entry_o->key.sid.revision = 0x01;
2629 idx_entry_o->key.sid.sub_authority_count = 0x02;
2631 idx_entry_o->key.sid.identifier_authority.value[i] = 0;
2632 idx_entry_o->key.sid
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dacls.c206 int ntfs_sid_size(const SID * sid) argument
208 return (sid->sub_authority_count * 4 + 8);
326 BOOL ntfs_valid_sid(const SID *sid) argument
328 return ((sid->revision == SID_REVISION)
329 && (sid->sub_authority_count >= 1)
330 && (sid->sub_authority_count <= 8));
343 BOOL ntfs_valid_pattern(const SID *sid) argument
349 cnt = sid->sub_authority_count;
350 leauth = sid->sub_authority[cnt-1];
420 const SID *sid; local
464 const SID *sid; local
1394 const SID *sid; local
1556 const SID *sid; local
1638 const SID *sid; local
1905 const SID *sid; local
3926 SID *sid; local
4134 SID *sid; local
4209 SID *sid; local
[all...]
H A Dsecurity.h56 SID *sid; /* Windows id : usid or gsid */ member in struct:MAPPING
227 * @sid: SID for which to determine if it is valid
229 * Determine if the SID pointed to by @sid is valid.
233 static __inline__ BOOL ntfs_sid_is_valid(const SID *sid) argument
235 if (!sid || sid->revision != SID_REVISION ||
236 sid->sub_authority_count > SID_MAX_SUB_AUTHORITIES)
241 extern int ntfs_sid_to_mbs_size(const SID *sid);
242 extern char *ntfs_sid_to_mbs(const SID *sid, char *sid_str,
H A Dacls.h129 char *sidstr; /* sid text from the same record */
147 BOOL ntfs_valid_pattern(const SID *sid);
148 BOOL ntfs_valid_sid(const SID *sid);
154 int ntfs_sid_size(const SID * sid);
H A Dsecurity.c218 * @sid: [IN] SID for which to determine the maximum string size
221 * store the standard textual representation of the SID pointed to by @sid.
227 int ntfs_sid_to_mbs_size(const SID *sid) argument
231 if (!ntfs_sid_is_valid(sid)) {
250 if (!sid->identifier_authority.high_part)
258 size += (1 + 10) * sid->sub_authority_count;
266 * @sid: [IN] SID to convert
270 * Convert the SID pointed to by @sid to its standard textual representation.
294 char *ntfs_sid_to_mbs(const SID *sid, char *sid_str, size_t sid_str_size) argument
302 * No need to check @sid i
3186 SID *sid; local
3903 SID *sid; local
[all...]
H A Dlayout.h1643 /* 8*/ SID sid; /* The SID associated with the ACE. */ member in struct:__anon2380
1668 /* 44*/ SID sid; /* The SID associated with the ACE. */ member in struct:__anon2382
1950 /* 20*/ SECURITY_DESCRIPTOR_RELATIVE sid; /* The self-relative security member in struct:__anon2391
2224 SID sid; /* The SID of the user/object associated with member in struct:__anon2404
2228 the data_length field. If the sid is present
2337 SID sid; /* $O index in FILE_Extend/$Quota: member in union:__anon2411::__anon2414
2579 u32 sid_offset; /* Offset in bytes to the user's sid from start
2580 of this structure. Zero if no sid is
/haiku-fatelf/src/libs/pdflib/libs/pdcore/
H A Dpc_unicode.h104 const char *pdc_sid2name(unsigned int sid);
/haiku-fatelf/src/bin/fwcontrol/
H A Dfwcontrol.c529 union fw_self_id sid; local
547 sid = tmap->self_id[i];
548 if (sid.p0.sequel) {
549 printf("%02d sequel packet\n", sid.p0.phy_id);
554 sid.p0.phy_id,
555 sid.p0.link_active,
556 sid.p0.gap_count,
557 speed[sid.p0.phy_speed],
558 sid.p0.contender,
559 pwr_class[sid
[all...]
/haiku-fatelf/src/servers/print/
H A DConfigWindow.cpp252 sem_id sid = create_sem(0, "finished"); local
253 if (sid >= 0) {
254 fFinished = sid;
256 acquire_sem(sid);
257 delete_sem(sid);
/haiku-fatelf/src/bin/gdb/
H A DMakefile.def88 host_modules= { module= sid; };
346 dependencies = { module=all-sid; on=all-libiberty; };
347 dependencies = { module=all-sid; on=all-bfd; };
348 dependencies = { module=all-sid; on=all-opcodes; };
349 dependencies = { module=all-sid; on=all-tcl; };
350 dependencies = { module=all-sid; on=all-tk; };
351 dependencies = { module=install-sid; on=install-tcl; };
352 dependencies = { module=install-sid; on=install-tk; };
/haiku-fatelf/headers/private/bluetooth/
H A DbtCoreData.h170 uint16 sid);
/haiku-fatelf/src/add-ons/kernel/bus_managers/firewire/
H A Dfirewire.cpp1341 fw_print_sid(uint32_t sid) argument
1344 s = (union fw_self_id *) &sid;
1373 void fw_sidrcv(struct firewire_comm* fc, uint32_t *sid, u_int len) argument
1391 if (sid[1] != ~sid[0]) {
1394 sid += 2;
1397 *self_id = *((union fw_self_id *)sid);
1403 fw_print_sid(sid[0]);
1435 sid += 2;
/haiku-fatelf/3rdparty/mmu_man/onlinedemo/
H A Dhaiku.php176 $sid = file_get_contents($sessfile); variable
177 if ($sid != session_id())
/haiku-fatelf/src/libs/pdflib/libs/pdflib/
H A Dp_truetype.h250 tt_ushort sid; member in struct:__anon4992
/haiku-fatelf/src/add-ons/kernel/drivers/network/wlan/marvell88w8363/dev/mwl/
H A Dmwlhal.h556 uint16_t aid, uint16_t sid, const MWL_HAL_PEERINFO *,
H A Dmwlhal.c1703 const uint8_t addr[IEEE80211_ADDR_LEN], uint16_t aid, uint16_t sid,
1713 pCmd->StnId = htole16(sid);
1702 mwl_hal_newstation(struct mwl_hal_vap *vap, const uint8_t addr[IEEE80211_ADDR_LEN], uint16_t aid, uint16_t sid, const MWL_HAL_PEERINFO *peer, int isQosSta, int wmeInfo) argument
/haiku-fatelf/src/add-ons/media/media-add-ons/dvb/
H A DDVBMediaNode.cpp2533 char sid[50]; local
2539 name, freq, para, src, srate, vpid, apid, tpid, ca, sid, nid, tid, rid);

Completed in 249 milliseconds