- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 39 for policy_handle (0.08 sec)
-
src/test/java/jcifs/dcerpc/rpcTest.java
rpc.policy_handle policyHandle = new rpc.policy_handle(); policyHandle.type = 123; policyHandle.uuid = new rpc.uuid_t(); policyHandle.uuid.time_low = 0x11111111; policyHandle.uuid.time_mid = (short) 0x2222; policyHandle.uuid.time_hi_and_version = (short) 0x3333; policyHandle.uuid.clock_seq_hi_and_reserved = (byte) 0x44;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcLsarCloseTest.java
import jcifs.dcerpc.DcerpcConstants; import jcifs.dcerpc.rpc.policy_handle; /** * Tests for the {@link MsrpcLsarClose} class. */ class MsrpcLsarCloseTest { private policy_handle mockHandle; @BeforeEach void setUp() { // Create a mock policy_handle for each test mockHandle = mock(policy_handle.class); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 1.5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcSamrCloseHandleTest.java
import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.mockito.Mock; import org.mockito.MockitoAnnotations; import jcifs.dcerpc.rpc.policy_handle; class MsrpcSamrCloseHandleTest { @Mock private policy_handle mockPolicyHandle; @BeforeEach void setUp() { MockitoAnnotations.openMocks(this); } @Test void constructorShouldInitializeCorrectly() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
final rpc.policy_handle policy_handle) { this.system_name = system_name; this.object_attributes = object_attributes; this.desired_access = desired_access; this.policy_handle = policy_handle; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 44.5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java
rpc.policy_handle mockHandle = mock(rpc.policy_handle.class); lsarpc.LsarClose lsarClose = new lsarpc.LsarClose(mockHandle); assertEquals(mockHandle, lsarClose.handle); assertEquals(0x00, lsarClose.getOpnum()); } @Test void testLsarCloseEncodeIn() throws NdrException { rpc.policy_handle mockHandle = mock(rpc.policy_handle.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 60.8K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/samr.java
public int retval; /** The handle to be closed */ public rpc.policy_handle handle; /** * Constructs a SamrCloseHandle request. * * @param handle The policy handle to close */ public SamrCloseHandle(final rpc.policy_handle handle) { this.handle = handle; } @Override
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
public int retval; /** The handle to be closed */ public rpc.policy_handle handle; /** * Constructs a SamrCloseHandle request. * * @param handle The policy handle to close */ public SamrCloseHandle(final rpc.policy_handle handle) { this.handle = handle; } @Override
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/smb1/dcerpc/msrpc/lsarpc.java
final rpc.policy_handle policy_handle) { this.system_name = system_name; this.object_attributes = object_attributes; this.desired_access = desired_access; this.policy_handle = policy_handle; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 42.5K bytes - Viewed (0) -
src/test/java/jcifs/MsrpcLsarCloseTest.java
import org.junit.jupiter.api.Test; import org.mockito.Mock; import org.mockito.MockitoAnnotations; import jcifs.dcerpc.DcerpcConstants; import jcifs.dcerpc.rpc.policy_handle; import jcifs.dcerpc.msrpc.MsrpcLsarClose; class MsrpcLsarCloseTest { @Mock private policy_handle mockPolicyHandle; @BeforeEach void setUp() { MockitoAnnotations.openMocks(this); } @Test void testConstructor() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcLsarClose.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.dcerpc.msrpc; import jcifs.dcerpc.rpc.policy_handle; import jcifs.dcerpc.msrpc.lsarpc.LsarClose; /** * Microsoft RPC LSA close handle request. * This class implements the LSARPC close handle operation. */ public class MsrpcLsarClose extends LsarClose {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.4K bytes - Viewed (0)