Home
last modified time | relevance | path

Searched refs:RegistryOptions (Results 1 – 25 of 46) sorted by relevance

12

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Microsoft.Win32.Registry/tests/RegistryKey/
H A DRegistryKey_CreateSubKey_str_rkpc.cs88 …stry.CurrentUser.CreateSubKey(TestRegistryKeyName, writable: false, options: RegistryOptions.None)) in NegativeTests()
139 [InlineData(false, RegistryOptions.Volatile)]
140 [InlineData(true, RegistryOptions.Volatile)]
141 [InlineData(false, RegistryOptions.None)]
142 [InlineData(true, RegistryOptions.None)]
143 public void RegistryOptionsTestsValid(bool alreadyExists, RegistryOptions options) in RegistryOptionsTestsValid()
156 [InlineData(false, RegistryOptions.Volatile)]
157 [InlineData(true, RegistryOptions.Volatile)]
158 [InlineData(false, RegistryOptions.None)]
159 [InlineData(true, RegistryOptions.None)]
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/src/Microsoft/Win32/
H A DRegistryOptions.cs15 enum RegistryOptions enum
17 None = Interop.mincore.RegistryOptions.REG_OPTION_NON_VOLATILE, // 0x0000
18 Volatile = Interop.mincore.RegistryOptions.REG_OPTION_VOLATILE, // 0x0001
H A DRegistryKey.cs135 return CreateSubKeyInternal(subkey, writable, RegistryOptions.None); in CreateSubKey()
138 public RegistryKey CreateSubKey(string subkey, bool writable, RegistryOptions options) in CreateSubKey()
143 …private RegistryKey CreateSubKeyInternal(string subkey, bool writable, RegistryOptions registryOpt… in CreateSubKeyInternal()
452 private static void ValidateKeyOptions(RegistryOptions options) in ValidateKeyOptions()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Microsoft.Win32.Registry/src/Microsoft/Win32/
H A DRegistryOptions.cs15 enum RegistryOptions enum
17 None = Interop.Advapi32.RegistryOptions.REG_OPTION_NON_VOLATILE, // 0x0000
18 Volatile = Interop.Advapi32.RegistryOptions.REG_OPTION_VOLATILE, // 0x0001
H A DRegistryKey.cs143 …issionCheck.ReadWriteSubTree : RegistryKeyPermissionCheck.ReadSubTree, null, RegistryOptions.None); in CreateSubKey()
146 public RegistryKey CreateSubKey(string subkey, bool writable, RegistryOptions options) in CreateSubKey()
153 return CreateSubKeyInternal(subkey, permissionCheck, null, RegistryOptions.None); in CreateSubKey()
156 …ateSubKey(string subkey, RegistryKeyPermissionCheck permissionCheck, RegistryOptions registryOptio… in CreateSubKey()
161 …ateSubKey(string subkey, RegistryKeyPermissionCheck permissionCheck, RegistryOptions registryOptio… in CreateSubKey()
168 … return CreateSubKeyInternal(subkey, permissionCheck, registrySecurity, RegistryOptions.None); in CreateSubKey()
171 …istryKeyPermissionCheck permissionCheck, object registrySecurityObj, RegistryOptions registryOptio… in CreateSubKeyInternal()
791 private static void ValidateKeyOptions(RegistryOptions options) in ValidateKeyOptions()
793 if (options < RegistryOptions.None || options > RegistryOptions.Volatile) in ValidateKeyOptions()
H A DRegistryKey.FileSystem.cs27 …istryKeyPermissionCheck permissionCheck, object registrySecurityObj, RegistryOptions registryOptio… in CreateSubKeyInternalCore()
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/Microsoft.Win32/
H A DRegistryKey.cs72 public RegistryKey CreateSubKey (String subkey, bool writable, RegistryOptions options) in CreateSubKey()
82 …teSubKey (string subkey, RegistryKeyPermissionCheck permissionCheck, RegistryOptions registryOptio… in CreateSubKey()
92 …teSubKey (string subkey, RegistryKeyPermissionCheck permissionCheck, RegistryOptions registryOptio… in CreateSubKey()
534 …y CreateSubKey (string subkey, RegistryKeyPermissionCheck permissionCheck, RegistryOptions options)
548 …teSubKey (string subkey, RegistryKeyPermissionCheck permissionCheck, RegistryOptions registryOptio…
561 public RegistryKey CreateSubKey (string subkey, bool writable, RegistryOptions options)
H A DRegistryOptions.cs31 public enum RegistryOptions { enum
H A DIRegistryApi.cs64 RegistryKey CreateSubKey (RegistryKey rkey, string keyname, RegistryOptions options); in CreateSubKey()
H A DWin32RegistryApi.cs496 public RegistryKey CreateSubKey (RegistryKey rkey, string keyName, RegistryOptions options) in CreateSubKey()
502 options == RegistryOptions.Volatile ? RegOptionsVolatile : RegOptionsNonVolatile, in CreateSubKey()
H A DUnixRegistryApi.cs855 public RegistryKey CreateSubKey (RegistryKey rkey, string keyname, RegistryOptions options) in CreateSubKey()
857 return CreateSubKey (rkey, keyname, true, options == RegistryOptions.Volatile); in CreateSubKey()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Microsoft.Win32.Registry/ref/
H A DMicrosoft.Win32.Registry.cs42 …gistryKey CreateSubKey(string subkey, bool writable, Microsoft.Win32.RegistryOptions options) { th… in CreateSubKey()
44 …ft.Win32.RegistryKeyPermissionCheck permissionCheck, Microsoft.Win32.RegistryOptions registryOptio… in CreateSubKey()
45 …ft.Win32.RegistryKeyPermissionCheck permissionCheck, Microsoft.Win32.RegistryOptions registryOptio… in CreateSubKey()
80 public enum RegistryOptions enum
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/microsoft/win32/
H A DRegistryOptions.cs19 public enum RegistryOptions { enum
H A Dregistrykey.cs297 return CreateSubKeyInternal(subkey, permissionCheck, null, RegistryOptions.None); in CreateSubKey()
303 …y CreateSubKey(String subkey, RegistryKeyPermissionCheck permissionCheck, RegistryOptions options) in CreateSubKey()
311 …issionCheck.ReadWriteSubTree : RegistryKeyPermissionCheck.ReadSubTree, null, RegistryOptions.None); in CreateSubKey()
315 public RegistryKey CreateSubKey(String subkey, bool writable, RegistryOptions options) in CreateSubKey()
327 … return CreateSubKeyInternal(subkey, permissionCheck, registrySecurity, RegistryOptions.None); in CreateSubKey()
333 …teSubKey(String subkey, RegistryKeyPermissionCheck permissionCheck, RegistryOptions registryOptio… in CreateSubKey()
343 …istryKeyPermissionCheck permissionCheck, object registrySecurityObj, RegistryOptions registryOptio… in CreateSubKeyInternal()
2178 static private void ValidateKeyOptions(RegistryOptions options) { in ValidateKeyOptions()
2179 if (options < RegistryOptions.None || options > RegistryOptions.Volatile) { in ValidateKeyOptions()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/Common/src/Interop/Windows/mincore/
H A DInterop.RegistryOptions.cs9 internal partial class RegistryOptions class in Interop.mincore
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/Interop/Windows/advapi32/
H A DInterop.RegistryOptions.cs9 internal partial class RegistryOptions class in Interop.Advapi32
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/grafana/loki/vendor/github.com/digitalocean/godo/
H A Dregistry.go35 GetOptions(context.Context) (*RegistryOptions, *Response, error)
152 type RegistryOptions struct { struct
157 Options *RegistryOptions `json:"options"`
455 func (svc *RegistryServiceOp) GetOptions(ctx context.Context) (*RegistryOptions, *Response, error) {
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/digitalocean/godo/
H A Dregistry.go35 GetOptions(context.Context) (*RegistryOptions, *Response, error)
152 type RegistryOptions struct { struct
157 Options *RegistryOptions `json:"options"`
455 func (svc *RegistryServiceOp) GetOptions(ctx context.Context) (*RegistryOptions, *Response, error) {
/dports/sysutils/doctl/doctl-1.68.0/vendor/github.com/digitalocean/godo/
H A Dregistry.go37 GetOptions(context.Context) (*RegistryOptions, *Response, error)
193 type RegistryOptions struct {
198 Options *RegistryOptions `json:"options"`
544 func (svc *RegistryServiceOp) GetOptions(ctx context.Context) (*RegistryOptions, *Response, error) {
/dports/lang/mono/mono-5.10.1.57/mcs/class/Facades/Microsoft.Win32.Registry/
H A DTypeForwarders.cs27 … System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(Microsoft.Win32.RegistryOptions))]
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monotouch/Facades/
H A DMicrosoft.Win32.Registry.cs21 …:System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(Microsoft.Win32.RegistryOptions))]
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/net_4_x/Facades/
H A DMicrosoft.Win32.Registry.cs21 …:System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(Microsoft.Win32.RegistryOptions))]
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monodroid/Facades/
H A DMicrosoft.Win32.Registry.cs21 …:System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(Microsoft.Win32.RegistryOptions))]
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/status-im/keycard-go/vendor/github.com/ethereum/go-ethereum/swarm/network/stream/
H A Dstream.go66 type RegistryOptions struct { struct
74 …hunkStore storage.SyncChunkStore, intervalsStore state.Store, options *RegistryOptions) *Registry { argument
76 options = &RegistryOptions{}
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/Test/Microsoft.Win32/
H A DRegistryKeyTest.cs670 …urrentUser.CreateSubKey (subKeyName, RegistryKeyPermissionCheck.Default, RegistryOptions.Volatile); in CreateSubKey_Volatile()
671 … subkey = key.CreateSubKey ("Child", RegistryKeyPermissionCheck.Default, RegistryOptions.Volatile); in CreateSubKey_Volatile()
694 …urrentUser.CreateSubKey (subKeyName, RegistryKeyPermissionCheck.Default, RegistryOptions.Volatile); in CreateSubKey_Volatile_Child()
720 …er.CreateSubKey (subKeyNameVolatile, RegistryKeyPermissionCheck.Default, RegistryOptions.Volatile); in CreateSubKey_Volatile_Conflict()
721 …ntUser.CreateSubKey (subKeyNameVolatile, RegistryKeyPermissionCheck.Default, RegistryOptions.None); in CreateSubKey_Volatile_Conflict()
724 …subkey = key2.CreateSubKey ("Child", RegistryKeyPermissionCheck.Default, RegistryOptions.Volatile); in CreateSubKey_Volatile_Conflict()
735 …ser.CreateSubKey (subKeyNameNonVolatile, RegistryKeyPermissionCheck.Default, RegistryOptions.None); in CreateSubKey_Volatile_Conflict()
774 …urrentUser.CreateSubKey (subKeyName, RegistryKeyPermissionCheck.Default, RegistryOptions.Volatile); in DeleteSubKey_Volatile()
775 …key.CreateSubKey ("VolatileKeyChild", RegistryKeyPermissionCheck.Default, RegistryOptions.Volatile… in DeleteSubKey_Volatile()
803 … key.CreateSubKey (volChildKeyName, RegistryKeyPermissionCheck.Default, RegistryOptions.Volatile); in GetSubKeyNames_Volatile()
[all …]

12