- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 66 for ridx (0.58 sec)
-
src/main/java/jcifs/smb/NetServerEnumIterator.java
final int n = this.response.getStatus() == WinError.ERROR_MORE_DATA ? this.response.getNumEntries() - 1 : this.response.getNumEntries(); while (this.ridx < n) { final FileEntry itm = this.response.getResults()[this.ridx]; this.ridx++; if (filter(itm)) { return itm; } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.7K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/samrTest.java
} @Test @DisplayName("Should encode array with null RIDs") void testEncodeNullRids() throws NdrException { // Given: Array with null RIDs samr.SamrRidWithAttributeArray array = new samr.SamrRidWithAttributeArray(); array.count = 0; array.rids = null; // When: Encoding array
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 33.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.idl
SE_GROUP_RESOURCE = 0x20000000, SE_GROUP_LOGON_ID = 0xC0000000 } SamrGroupAttrs; typedef struct { uint32_t rid; SamrGroupAttrs attributes; } SamrRidWithAttribute; typedef struct { uint32_t count; [size_is(count)] SamrRidWithAttribute *rids; } SamrRidWithAttributeArray;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 3.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/msrpc/samrTest.java
} @Test @DisplayName("Should encode array with null RIDs") void testEncodeNullRids() throws NdrException { // Given: Array with null RIDs samr.SamrRidWithAttributeArray array = new samr.SamrRidWithAttributeArray(); array.count = 0; array.rids = null; // When: Encoding array
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 33.6K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/samr.java
} /** The number of RIDs in the array */ public int count; /** The array of RIDs with attributes */ public SamrRidWithAttribute[] rids; @Override public void encode(NdrBuffer _dst) throws NdrException { _dst.align(4); _dst.enc_ndr_long(this.count); _dst.enc_ndr_referent(this.rids, 1); if (this.rids != null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java
} /** The number of RIDs in the array */ public int count; /** The array of RIDs with attributes */ public SamrRidWithAttribute[] rids; @Override public void encode(NdrBuffer _dst) throws NdrException { _dst.align(4); _dst.enc_ndr_long(count); _dst.enc_ndr_referent(rids, 1); if (rids != null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.1K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/samr.idl
SE_GROUP_RESOURCE = 0x20000000, SE_GROUP_LOGON_ID = 0xC0000000 } SamrGroupAttrs; typedef struct { uint32_t rid; SamrGroupAttrs attributes; } SamrRidWithAttribute; typedef struct { uint32_t count; [size_is(count)] SamrRidWithAttribute *rids; } SamrRidWithAttributeArray;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
} /** * Construct a SID from a domain SID and an RID * (relative identifier). For example, a domain SID * {@code S-1-5-21-1496946806-2192648263-3843101252} and RID {@code 1029} would * yield the SID {@code S-1-5-21-1496946806-2192648263-3843101252-1029}. */ /** * Construct a SID from a domain SID and an RID (relative identifier). * * @param domsid the domain SID
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SIDCacheImpl.java
final samr.SamrSamEntry entry = rpc.sam.entries[ei]; final SID[] mems = getGroupMemberSids(tc, authorityServerName, domSid, entry.idx, flags); final SID groupSid = new SID(domSid, entry.idx); groupSid.type = jcifs.SID.SID_TYPE_ALIAS; groupSid.domainName = domSid.getDomainName();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 13.6K bytes - Viewed (0)