Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for LsarQueryInformationPolicy2 (0.53 sec)

  1. src/main/java/jcifs/dcerpc/msrpc/lsarpc.idl

    	int LsarOpenPolicy2([in,string,unique] wchar_t *system_name,
    			[in] LsarObjectAttributes *object_attributes,
    			[in] uint32_t desired_access,
    			[out] policy_handle *policy_handle);
    
    	[op(0x2e)]
    	int LsarQueryInformationPolicy2([in] policy_handle *handle,
    			[in] uint16_t level,
    			[out,switch_is(level),unique] LsarPolicyInfo *info);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.1K bytes
    - Viewed (3)
  2. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.idl

    	int LsarOpenPolicy2([in,string,unique] wchar_t *system_name,
    			[in] LsarObjectAttributes *object_attributes,
    			[in] uint32_t desired_access,
    			[out] policy_handle *policy_handle);
    
    	[op(0x2e)]
    	int LsarQueryInformationPolicy2([in] policy_handle *handle,
    			[in] uint16_t level,
    			[out,switch_is(level),unique] LsarPolicyInfo *info);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java

        }
    
        // Test for LsarQueryInformationPolicy2
        @Test
        void testLsarQueryInformationPolicy2ConstructorAndGetOpnum() {
            rpc.policy_handle mockHandle = mock(rpc.policy_handle.class);
            lsarpc.LsarQosInfo mockInfo = mock(lsarpc.LsarQosInfo.class);
            lsarpc.LsarQueryInformationPolicy2 queryInfoPolicy2 = new lsarpc.LsarQueryInformationPolicy2(mockHandle, (short) 1, mockInfo);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 60.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

            public NdrObject info;
    
            /**
             * Creates a new LsarQueryInformationPolicy2 message.
             *
             * @param handle the policy handle
             * @param level the information level
             * @param info the information object
             */
            public LsarQueryInformationPolicy2(final rpc.policy_handle handle, final short level, final NdrObject info) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 44.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

            public NdrObject info;
    
            /**
             * Creates a new LsarQueryInformationPolicy2 message.
             *
             * @param handle the policy handle
             * @param level the information level
             * @param info the information object
             */
            public LsarQueryInformationPolicy2(final rpc.policy_handle handle, final short level, final NdrObject info) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 42.5K bytes
    - Viewed (0)
Back to top