- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 268 for uuid_t (0.32 sec)
-
src/main/java/jcifs/smb1/dcerpc/rpc.java
public int type; public uuid_t uuid; public void encode(NdrBuffer _dst) throws NdrException { _dst.align(4); _dst.enc_ndr_long(type); _dst.enc_ndr_long(uuid.time_low); _dst.enc_ndr_short(uuid.time_mid); _dst.enc_ndr_short(uuid.time_hi_and_version); _dst.enc_ndr_small(uuid.clock_seq_hi_and_reserved);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 8K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/rpc.idl
uint16_t time_mid; uint16_t time_hi_and_version; uint8_t clock_seq_hi_and_reserved; uint8_t clock_seq_low; uint8_t node[6]; } uuid_t; /* win32 stuff */ typedef struct { uint32_t type; uuid_t uuid; } policy_handle; /* * typedef struct _UNICODE_STRING * USHORT Length; * USHORT MaximumLength;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/rpc.idl
uint16_t time_mid; uint16_t time_hi_and_version; uint8_t clock_seq_hi_and_reserved; uint8_t clock_seq_low; uint8_t node[6]; } uuid_t; /* win32 stuff */ typedef struct { uint32_t type; uuid_t uuid; } policy_handle; /* * typedef struct _UNICODE_STRING * USHORT Length; * USHORT MaximumLength;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/UUID.java
public UUID(rpc.uuid_t uuid) { time_low = uuid.time_low; time_mid = uuid.time_mid; time_hi_and_version = uuid.time_hi_and_version; clock_seq_hi_and_reserved = uuid.clock_seq_hi_and_reserved; clock_seq_low = uuid.clock_seq_low; node = new byte[6]; node[0] = uuid.node[0]; node[1] = uuid.node[1]; node[2] = uuid.node[2];
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/rpc.java
if ( this.uuid == null ) { this.uuid = new uuid_t(); } this.uuid.time_low = _src.dec_ndr_long(); this.uuid.time_mid = (short) _src.dec_ndr_short(); this.uuid.time_hi_and_version = (short) _src.dec_ndr_short(); this.uuid.clock_seq_hi_and_reserved = (byte) _src.dec_ndr_small(); this.uuid.clock_seq_low = (byte) _src.dec_ndr_small();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:40:13 UTC 2019 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/UUID.java
} /** * * @param uuid * wrapped uuid */ public UUID ( rpc.uuid_t uuid ) { this.time_low = uuid.time_low; this.time_mid = uuid.time_mid; this.time_hi_and_version = uuid.time_hi_and_version; this.clock_seq_hi_and_reserved = uuid.clock_seq_hi_and_reserved; this.clock_seq_low = uuid.clock_seq_low; this.node = new byte[6];
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.idl
} LsarObjectAttributes; typedef struct { unicode_string name; sid_t *sid; } LsarDomainInfo; typedef struct { unicode_string name; unicode_string dns_domain; unicode_string dns_forest; uuid_t domain_guid; sid_t *sid; } LsarDnsDomainInfo; enum { POLICY_INFO_AUDIT_EVENTS = 2, POLICY_INFO_PRIMARY_DOMAIN = 3, POLICY_INFO_ACCOUNT_DOMAIN = 5, POLICY_INFO_SERVER_ROLE = 6,
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.idl
} LsarObjectAttributes; typedef struct { unicode_string name; sid_t *sid; } LsarDomainInfo; typedef struct { unicode_string name; unicode_string dns_domain; unicode_string dns_forest; uuid_t domain_guid; sid_t *sid; } LsarDnsDomainInfo; enum { POLICY_INFO_AUDIT_EVENTS = 2, POLICY_INFO_PRIMARY_DOMAIN = 3, POLICY_INFO_ACCOUNT_DOMAIN = 5, POLICY_INFO_SERVER_ROLE = 6,
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
public rpc.unicode_string name; public rpc.unicode_string dns_domain; public rpc.unicode_string dns_forest; public rpc.uuid_t domain_guid; public rpc.sid_t sid; @Override public void encode ( NdrBuffer _dst ) throws NdrException { _dst.align(4); _dst.enc_ndr_short(this.name.length); _dst.enc_ndr_short(this.name.maximum_length);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:40:13 UTC 2019 - 35.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java
public rpc.unicode_string dns_domain; public rpc.unicode_string dns_forest; public rpc.uuid_t domain_guid; public rpc.sid_t sid; public void encode(NdrBuffer _dst) throws NdrException { _dst.align(4); _dst.enc_ndr_short(name.length); _dst.enc_ndr_short(name.maximum_length); _dst.enc_ndr_referent(name.buffer, 1);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 33K bytes - Viewed (0)