- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 25 for dfs_name (0.21 sec)
-
src/test/java/jcifs/dcerpc/msrpc/netdfsTest.java
String dfsName = "dfs_name"; int level = 1; int prefmaxlen = 1024; netdfs.DfsEnumStruct info = new netdfs.DfsEnumStruct(); NdrLong totalentries = new NdrLong(0); netdfs.NetrDfsEnumEx enumEx = new netdfs.NetrDfsEnumEx(dfsName, level, prefmaxlen, info, totalentries); assertEquals(dfsName, enumEx.dfs_name); assertEquals(level, enumEx.level);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java
* The DFS name */ public String dfs_name; @Override public void encode(NdrBuffer _dst) throws NdrException { _dst.align(4); _dst.enc_ndr_referent(dfs_name, 1); if (dfs_name != null) { _dst = _dst.deferred; _dst.enc_ndr_string(dfs_name); } } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/netdfs.java
* The DFS name */ public String dfs_name; @Override public void encode(NdrBuffer _dst) throws NdrException { _dst.align(4); _dst.enc_ndr_referent(this.dfs_name, 1); if (this.dfs_name != null) { _dst = _dst.deferred; _dst.enc_ndr_string(this.dfs_name); } } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.8K bytes - Viewed (0) -
src/test/java/jcifs/MsrpcDfsRootEnumTest.java
arrayWithNulls.s = new netdfs.DfsInfo200[2]; netdfs.DfsInfo200 entry1 = new netdfs.DfsInfo200(); entry1.dfs_name = null; arrayWithNulls.s[0] = entry1; netdfs.DfsInfo200 entry2 = new netdfs.DfsInfo200(); entry2.dfs_name = "valid_share"; arrayWithNulls.s[1] = entry2; // Replace the info.e field setDfsEnumArray(dfsRootEnum, arrayWithNulls);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.idl
uint32_t count; [size_is(count)] DfsInfo3 *s; } DfsEnumArray3; typedef struct { [string] wchar_t *dfs_name; } DfsInfo200; typedef struct { uint32_t count; [size_is(count)] DfsInfo200 *s; } DfsEnumArray200; typedef struct { uint32_t flags; [string] wchar_t *dfs_name; } DfsInfo300; typedef struct { uint32_t count; [size_is(count)] DfsInfo300 *s; } DfsEnumArray300;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/netdfs.idl
uint32_t count; [size_is(count)] DfsInfo3 *s; } DfsEnumArray3; typedef struct { [string] wchar_t *dfs_name; } DfsInfo200; typedef struct { uint32_t count; [size_is(count)] DfsInfo200 *s; } DfsEnumArray200; typedef struct { uint32_t flags; [string] wchar_t *dfs_name; } DfsInfo300; typedef struct { uint32_t count; [size_is(count)] DfsInfo300 *s; } DfsEnumArray300;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.7K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcDfsRootEnumTest.java
dfsEnumArray.count = 2; dfsEnumArray.s = new DfsInfo200[2]; dfsEnumArray.s[0] = new DfsInfo200(); dfsEnumArray.s[0].dfs_name = "\\domain\share1"; dfsEnumArray.s[1] = new DfsInfo200(); dfsEnumArray.s[1].dfs_name = "\\domain\share2"; // Manually set the DfsEnumArray200 to the info struct dfsRootEnum.info.e = dfsEnumArray; // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcDfsRootEnum.java
final SmbShareInfo[] entries = new SmbShareInfo[a200.count]; for (int i = 0; i < a200.count; i++) { entries[i] = new SmbShareInfo(a200.s[i].dfs_name, 0, null); } return entries; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcDfsRootEnum.java
final SmbShareInfo[] entries = new SmbShareInfo[a200.count]; for (int i = 0; i < a200.count; i++) { entries[i] = new SmbShareInfo(a200.s[i].dfs_name, 0, null); } return entries; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
docs/debugging/reorder-disks/main.go
} for loc, expectedDiskName := range expectedDisksName { diskName := actualDisksName[loc] if diskName == "" { log.Printf("skipping disk location `%s`, err: %v\n", diskName, err) continue } mami, err := getMajorMinor(diskName) if err != nil { log.Printf("skipping `%s`, err: %v\n", diskName, err) continue } devName := mountMap[mami] uuid := uuidMap[devName]
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 5.4K bytes - Viewed (0)