Home
last modified time | relevance | path

Searched refs:RegistryView (Results 1 – 25 of 78) sorted by relevance

1234

/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/
H A Ddebugresources.properties54 RegistryView.extensionPointPR.id = Id
55 RegistryView.extensionPointPR.name = Name
57 RegistryView.extensionPR.id = Id
58 RegistryView.extensionPR.name = Name
59 RegistryView.extensionPR.point = Point
61 RegistryView.libraryPR.path = Path
66 RegistryView.pluginPR.name = Name
67 RegistryView.pluginPR.id = Unique ID
69 RegistryView.pluginPR.version = Version
83 RegistryView.refresh.label=&Refresh
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Microsoft.Win32.Registry/src/Microsoft/Win32/
H A DRegistry.cs19 … RegistryKey CurrentUser = RegistryKey.OpenBaseKey(RegistryHive.CurrentUser, RegistryView.Default);
22 …egistryKey LocalMachine = RegistryKey.OpenBaseKey(RegistryHive.LocalMachine, RegistryView.Default);
25 … RegistryKey ClassesRoot = RegistryKey.OpenBaseKey(RegistryHive.ClassesRoot, RegistryView.Default);
28 …tic readonly RegistryKey Users = RegistryKey.OpenBaseKey(RegistryHive.Users, RegistryView.Default);
31 …yKey PerformanceData = RegistryKey.OpenBaseKey(RegistryHive.PerformanceData, RegistryView.Default);
34 …istryKey CurrentConfig = RegistryKey.OpenBaseKey(RegistryHive.CurrentConfig, RegistryView.Default);
H A DRegistryKey.cs55 private volatile RegistryView _regView = RegistryView.Default;
60 private RegistryKey(SafeRegistryHandle hkey, bool writable, RegistryView view) : in RegistryKey()
73 …stryHandle hkey, bool writable, bool systemkey, bool remoteKey, bool isPerfData, RegistryView view) in RegistryKey()
324 public static RegistryKey OpenBaseKey(RegistryHive hKey, RegistryView view) in OpenBaseKey()
336 return OpenRemoteBaseKey(hKey, machineName, RegistryView.Default); in OpenRemoteBaseKey()
339 …blic static RegistryKey OpenRemoteBaseKey(RegistryHive hKey, string machineName, RegistryView view) in OpenRemoteBaseKey()
441 public RegistryView View
461 return FromHandle(handle, RegistryView.Default); in FromHandle()
464 public static RegistryKey FromHandle(SafeRegistryHandle handle, RegistryView view) in FromHandle()
799 private static void ValidateKeyView(RegistryView view) in ValidateKeyView()
[all …]
H A DRegistryView.cs14 enum RegistryView enum
17 …Registry64 = Interop.Advapi32.RegistryView.KEY_WOW64_64KEY, // 0x0100 operate on the 64-bit regist…
18 …Registry32 = Interop.Advapi32.RegistryView.KEY_WOW64_32KEY, // 0x0200 operate on the 32-bit regist…
H A DRegistryKey.FileSystem.cs47 private static RegistryKey OpenBaseKeyCore(RegistryHive hKey, RegistryView view) in OpenBaseKeyCore()
52 … static RegistryKey OpenRemoteBaseKeyCore(RegistryHive hKey, string machineName, RegistryView view) in OpenRemoteBaseKeyCore()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Microsoft.Win32.Registry/tests/RegistryKey/
H A DSafeRegistryHandle.cs18 …ows<ArgumentNullException>(() => RegistryKey.FromHandle(handle: null, view: RegistryView.Default)); in NegativeTests()
21 …gumentException>("view", () => RegistryKey.FromHandle(TestRegistryKey.Handle, (RegistryView)(-1))); in NegativeTests()
22 …<ArgumentException>("view", () => RegistryKey.FromHandle(TestRegistryKey.Handle, (RegistryView)3)); in NegativeTests()
43 rk = RegistryKey.FromHandle(handle, RegistryView.Default); in TestDeletedRegistryKey()
53 rk = RegistryKey.FromHandle(handle, RegistryView.Default); in TestDeletedRegistryKey()
H A DRegistryKey_OpenRemoteBaseKey_rh_str_rv.cs17 …ption>(() => RegistryKey.OpenRemoteBaseKey(RegistryHive.LocalMachine, null, RegistryView.Default)); in NegativeTests()
20 …tryKey.OpenRemoteBaseKey(RegistryHive.LocalMachine, "Non-Existing-Machine", RegistryView.Default)); in NegativeTests()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/src/Microsoft/Win32/
H A DRegistryKey.cs52 private volatile RegistryView _regView = RegistryView.Default;
57 private RegistryKey(SafeRegistryHandle hkey, bool writable, RegistryView view) : in RegistryKey()
70 …stryHandle hkey, bool writable, bool systemkey, bool remoteKey, bool isPerfData, RegistryView view) in RegistryKey()
170 public static RegistryKey OpenBaseKey(RegistryHive hKey, RegistryView view) in OpenBaseKey()
218 public RegistryView View
238 return FromHandle(handle, RegistryView.Default); in FromHandle()
241 public static RegistryKey FromHandle(SafeRegistryHandle handle, RegistryView view) in FromHandle()
456 private static void ValidateKeyView(RegistryView view) in ValidateKeyView()
540 return GetBaseKey(hKey, RegistryView.Default); in GetBaseKey()
543 internal static RegistryKey GetBaseKey(IntPtr hKey, RegistryView view) in GetBaseKey()
H A DRegistryView.cs14 enum RegistryView enum
17 …Registry64 = Interop.mincore.RegistryView.KEY_WOW64_64KEY, // 0x0100 operate on the 64-bit registr…
18 …Registry32 = Interop.mincore.RegistryView.KEY_WOW64_32KEY, // 0x0200 operate on the 32-bit registr…
/dports/devel/msbuild/msbuild-0.06/src/Deprecated/Engine/Engine/
H A DIntrinsicFunctions.cs184 views = new object[] { RegistryView.Default }; in GetRegistryValueFromView()
193 string typeLeafName = typeof(RegistryView).Name + "."; in GetRegistryValueFromView()
194 string typeFullName = typeof(RegistryView).FullName + "."; in GetRegistryValueFromView()
201RegistryView view = (RegistryView)Enum.Parse(typeof(RegistryView), viewAsString, true); in GetRegistryValueFromView()
334 …private static RegistryKey GetBaseKeyFromKeyName(string keyName, RegistryView view, out string sub… in GetBaseKeyFromKeyName()
/dports/devel/msbuild/msbuild-0.06/src/Build/Evaluation/
H A DIntrinsicFunctions.cs199 views = new object[] { RegistryView.Default }; in GetRegistryValueFromView()
208 string typeLeafName = typeof(RegistryView).Name + "."; in GetRegistryValueFromView()
209 string typeFullName = typeof(RegistryView).FullName + "."; in GetRegistryValueFromView()
216RegistryView view = (RegistryView)Enum.Parse(typeof(RegistryView), viewAsString, true); in GetRegistryValueFromView()
512 …private static RegistryKey GetBaseKeyFromKeyName(string keyName, RegistryView view, out string sub… in GetBaseKeyFromKeyName()
/dports/devel/msbuild/msbuild-0.06/src/Shared/AssemblyFolders/
H A DAssemblyFoldersEx.cs98 …FindDirectories(RegistryView.Default, RegistryHive.CurrentUser, registryKeyRoot, targetRuntimeVers… in AssemblyFoldersEx()
106 …FindDirectories(RegistryView.Registry64, RegistryHive.LocalMachine, registryKeyRoot, targetRuntime… in AssemblyFoldersEx()
107 …FindDirectories(RegistryView.Registry32, RegistryHive.LocalMachine, registryKeyRoot, targetRuntime… in AssemblyFoldersEx()
111 …FindDirectories(RegistryView.Registry32, RegistryHive.LocalMachine, registryKeyRoot, targetRuntime… in AssemblyFoldersEx()
112 …FindDirectories(RegistryView.Registry64, RegistryHive.LocalMachine, registryKeyRoot, targetRuntime… in AssemblyFoldersEx()
117 …FindDirectories(RegistryView.Default, RegistryHive.LocalMachine, registryKeyRoot, targetRuntimeVer… in AssemblyFoldersEx()
136 RegistryView view, in FindDirectories()
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/Microsoft.Win32/
H A DRegistryKey.cs130 public static RegistryKey FromHandle (SafeRegistryHandle handle, RegistryView view) in FromHandle()
175 public static RegistryKey OpenBaseKey (RegistryHive hKey, RegistryView view) in OpenBaseKey()
210 …public static RegistryKey OpenRemoteBaseKey (RegistryHive hKey, string machineName, RegistryView v… in OpenRemoteBaseKey()
244 public RegistryView View {
402 public RegistryView View {
404 return RegistryView.Default;
713 public static RegistryKey FromHandle (SafeRegistryHandle handle, RegistryView view)
729 …public static RegistryKey OpenRemoteBaseKey (RegistryHive hKey, string machineName, RegistryView v…
738 public static RegistryKey OpenBaseKey (RegistryHive hKey, RegistryView view)
H A DRegistryView.cs30 public enum RegistryView { enum
/dports/devel/msbuild/msbuild-0.06/src/Build/Definition/
H A DToolset.cs555 ….KeyExists(Dev10OverallInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32))
560 …yExists(Dev10UltimateInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32) ||
561 …eyExists(Dev10PremiumInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32) ||
562 …sts(Dev10ProfessionalInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32) ||
563 …xists(Dev10VCSExpressInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32) ||
564 …Exists(Dev10VBExpressInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32) ||
565 …Exists(Dev10VCExpressInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32) ||
566 …xists(Dev10VWDExpressInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32) ||
567 …yExists(Dev10LightSwitchInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32)
/dports/devel/msbuild/msbuild-0.06/src/Utilities/AssemblyFolders/
H A DAssemblyFoldersExInfo.cs22 …public AssemblyFoldersExInfo(RegistryHive hive, RegistryView view, string registryKey, string dire… in AssemblyFoldersExInfo()
47 public RegistryView View
/dports/devel/msbuild/msbuild-0.06/src/Shared/
H A DFrameworkLocationHelper.cs451 RegistryView.Registry32);
1092 RegistryView view = RegistryView.Default; in GetPathToBuildToolsFromRegistry()
1097 view = RegistryView.Registry32; in GetPathToBuildToolsFromRegistry()
1100 view = RegistryView.Registry64; in GetPathToBuildToolsFromRegistry()
1103 view = RegistryView.Default; in GetPathToBuildToolsFromRegistry()
1141 RegistryView registryView = RegistryView.Default) in FindRegistryValueUnderKey()
1472RegistryView registryView = visualStudioSpec.Version == visualStudioVersion100 ? RegistryView.Defa… in GetPathToDotNetFrameworkSdkTools()
1590 RegistryView.Registry32); in GetPathToWindowsSdk()
H A DRegistryDelegates.cs17 internal delegate RegistryKey OpenBaseKey(RegistryHive hive, RegistryView view); in OpenBaseKey()
/dports/devel/msbuild/msbuild-0.06/src/Deprecated/Engine/Solution/
H A DVCWrapperProject.cs205 path = GenerateFullPathToTool(RegistryView.Default);
209 path = GenerateFullPathToTool(RegistryView.Registry32);
263 private static string GenerateFullPathToTool(RegistryView registryView) in GenerateFullPathToTool()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/microsoft/win32/
H A Dregistrykey.cs160 private volatile RegistryView regView = RegistryView.Default;
189 private RegistryKey(SafeRegistryHandle hkey, bool writable, RegistryView view) in RegistryKey()
623 return GetBaseKey(hKey, RegistryView.Default); in GetBaseKey()
627 internal static RegistryKey GetBaseKey(IntPtr hKey, RegistryView view) { in GetBaseKey()
648 public static RegistryKey OpenBaseKey(RegistryHive hKey, RegistryView view) { in OpenBaseKey()
675 return OpenRemoteBaseKey(hKey, machineName, RegistryView.Default); in OpenRemoteBaseKey()
873 public RegistryView View {
947 return FromHandle(handle, RegistryView.Default); in FromHandle()
955 public static RegistryKey FromHandle(SafeRegistryHandle handle, RegistryView view) { in FromHandle()
2184 static private void ValidateKeyView(RegistryView view) { in ValidateKeyView()
[all …]
H A DRegistryView.cs18 public enum RegistryView { enum
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Microsoft.Win32.Registry/ref/
H A DMicrosoft.Win32.Registry.cs39 public Microsoft.Win32.RegistryView View { get { throw null; } }
57 …icrosoft.Win32.SafeHandles.SafeRegistryHandle handle, Microsoft.Win32.RegistryView view) { throw n… in FromHandle()
64 …tryKey OpenBaseKey(Microsoft.Win32.RegistryHive hKey, Microsoft.Win32.RegistryView view) { throw n… in OpenBaseKey()
66 …icrosoft.Win32.RegistryHive hKey, string machineName, Microsoft.Win32.RegistryView view) { throw n… in OpenRemoteBaseKey()
102 public enum RegistryView enum
/dports/devel/msbuild/msbuild-0.06/src/Build/Utilities/
H A DRegistryKeyWrapper.cs60 …internal RegistryKeyWrapper(string registryKeyPath, RegistryHive registryHive, RegistryView regist… in RegistryKeyWrapper()
102 …static bool KeyExists(string registryKeyPath, RegistryHive registryHive, RegistryView registryView) in KeyExists()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/Common/src/Interop/Windows/mincore/
H A DInterop.RegistryOptions.cs17 internal partial class RegistryView class in Interop.mincore
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/Interop/Windows/advapi32/
H A DInterop.RegistryOptions.cs17 internal partial class RegistryView class in Interop.Advapi32

1234