Home
last modified time | relevance | path

Searched refs:subkey (Results 1 - 18 of 18) sorted by relevance

/third_party/gn/src/base/win/
H A Dregistry.cc45 RegKey::RegKey(HKEY rootkey, const char16_t* subkey, REGSAM access) in RegKey() argument
49 Create(rootkey, subkey, access); in RegKey()
51 Open(rootkey, subkey, access); in RegKey()
53 DCHECK(!subkey); in RegKey()
62 LONG RegKey::Create(HKEY rootkey, const char16_t* subkey, REGSAM access) { in Create() argument
64 return CreateWithDisposition(rootkey, subkey, &disposition_value, access); in Create()
68 const char16_t* subkey, in CreateWithDisposition()
71 DCHECK(rootkey && subkey && access && disposition); in CreateWithDisposition()
73 LONG result = RegCreateKeyEx(rootkey, ToWCharT(subkey), 0, NULL, in CreateWithDisposition()
96 HKEY subkey in CreateKey() local
67 CreateWithDisposition(HKEY rootkey, const char16_t* subkey, DWORD* disposition, REGSAM access) CreateWithDisposition() argument
109 Open(HKEY rootkey, const char16_t* subkey, REGSAM access) Open() argument
134 HKEY subkey = NULL; OpenKey() local
197 HKEY subkey = NULL; DeleteKey() local
[all...]
H A Dregistry.h31 RegKey(HKEY rootkey, const char16_t* subkey, REGSAM access);
34 LONG Create(HKEY rootkey, const char16_t* subkey, REGSAM access);
37 const char16_t* subkey,
41 // Creates a subkey or open it if it already exists.
45 LONG Open(HKEY rootkey, const char16_t* subkey, REGSAM access);
77 // Deletes an empty subkey. If the subkey has subkeys or values then this
/third_party/python/Lib/test/test_importlib/
H A Dtest_windows.py39 def delete_registry_tree(root, subkey):
41 hkey = OpenKey(root, subkey, access=KEY_ALL_ACCESS)
43 # subkey does not exist
53 DeleteKey(root, subkey)
77 subkey = CreateKey(HKEY_CURRENT_USER, key)
80 SetValue(subkey, "", REG_SZ, path)
/third_party/typescript/tests/baselines/reference/
H A DreturnInfiniteIntersection.js3 let x = <T>(subkey: T) => recursive();
12 var x = function (subkey) { return recursive(); };
/third_party/node/tools/icu/
H A Diculslocs.cc308 icu::LocalUResourceBundlePointer subkey; in list() local
312 subkey.adoptInstead(ures_getByIndex( in list()
313 installedLocales.getAlias(), i, subkey.orphan(), &status)); in list()
316 const char* key = ures_getKey(subkey.getAlias()); in list()
/third_party/python/Tools/msi/bundle/bootstrap/
H A DPythonBootstrapperApplication.cpp2843 __in LPCWSTR subkey in LoadOptionalFeatureStatesFromKey()
2849 res = RegOpenKeyExW(hkHive, subkey, 0, KEY_READ | KEY_WOW64_64KEY, &hKey); in LoadOptionalFeatureStatesFromKey()
2851 res = RegOpenKeyExW(hkHive, subkey, 0, KEY_READ | KEY_WOW64_32KEY, &hKey); in LoadOptionalFeatureStatesFromKey()
2879 __in LPCWSTR subkey in LoadTargetDirFromKey()
2888 res = RegOpenKeyExW(hkHive, subkey, 0, KEY_READ | KEY_WOW64_64KEY, &hKey); in LoadTargetDirFromKey()
2890 res = RegOpenKeyExW(hkHive, subkey, 0, KEY_READ | KEY_WOW64_32KEY, &hKey); in LoadTargetDirFromKey()
2911 const LPCWSTR subkey = L"Software\\Python\\PyLauncher"; in LoadAssociateFilesStateFromKey() local
2916 res = RegOpenKeyExW(hkHive, subkey, 0, KEY_READ | KEY_WOW64_32KEY, &hKey); in LoadAssociateFilesStateFromKey()
2940 WCHAR subkey[256]; in LoadOptionalFeatureStates() local
2952 subkeyLen = sizeof(subkey) / sizeo in LoadOptionalFeatureStates()
[all...]
/third_party/python/PC/
H A Dlauncher2.c1389 _registryReadString(const wchar_t **dest, HKEY root, const wchar_t *subkey, const wchar_t *value) in _registryReadString() argument
1395 if (ERROR_SUCCESS != RegGetValueW(root, subkey, value, flags, NULL, NULL, &cbData)) { in _registryReadString()
1404 if (ERROR_SUCCESS == RegGetValueW(root, subkey, value, flags, NULL, buffer, &cbData)) { in _registryReadString()
1594 HKEY subkey; in _registrySearchTags() local
1595 if (ERROR_SUCCESS == RegOpenKeyExW(root, buffer, 0, KEY_READ, &subkey)) { in _registrySearchTags()
1598 exitCode = _registryReadEnvironment(search, subkey, env, fallbackArch); in _registrySearchTags()
1599 RegCloseKey(subkey); in _registrySearchTags()
1637 HKEY subkey; in registrySearch() local
1638 if (ERROR_SUCCESS == RegOpenKeyExW(root, buffer, 0, KEY_READ, &subkey)) { in registrySearch()
1639 exitCode = _registrySearchTags(search, result, subkey, sortKe in registrySearch()
1804 const wchar_t *subkey; global() member
[all...]
H A Dlauncher.c249 _locate_pythons_for_key(HKEY root, LPCWSTR subkey, REGSAM flags, int bits, in _locate_pythons_for_key() argument
253 LSTATUS status = RegOpenKeyExW(root, subkey, 0, flags, &core_root); in _locate_pythons_for_key()
294 L"%ls\\%ls\\InstallPath", subkey, ip_version); in _locate_pythons_for_key()
/third_party/python/Lib/test/
H A Dtest_getpath.py1003 def OpenKeyEx(self, hkey, subkey):
1005 print(f"OpenKeyEx({hkey}, {subkey})")
1006 key = f"{hkey}\\{subkey}".casefold()
1036 def QueryValue(self, hkey, subkey):
1038 print(f"QueryValue({hkey}, {subkey})")
1042 if subkey:
1043 subkey = subkey.casefold()
1044 hkey = f'{hkey}\\{subkey}'
H A Dtest_winreg.py59 def delete_tree(self, root, subkey):
61 hkey = OpenKey(root, subkey, 0, KEY_ALL_ACCESS)
63 # subkey does not exist
73 DeleteKey(root, subkey)
147 self.assertEqual(read_val, subkeystr, "Read subkey value wrong")
166 self.assertEqual(nkeys, 0, "subkey not empty before delete")
167 self.assertEqual(nvalues, 0, "subkey not empty before delete")
205 self._test_all(HKEY_CURRENT_USER, "日本-subkey")
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DValidIdentifiers.java137 Datasubtype subkey = Datasubtype.valueOf(rawsubkey);
147 values.put(subkey, new ValiditySet(subvalues, key == Datatype.subdivision));
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DValidIdentifiers.java148 Datasubtype subkey = Datasubtype.valueOf(rawsubkey);
158 values.put(subkey, new ValiditySet(subvalues, key == Datatype.subdivision));
/third_party/node/tools/gyp/pylib/gyp/
H A DMSVSVersion.py224 root, subkey = key.split("\\", 1)
226 with OpenKey(HKEY_LOCAL_MACHINE, subkey) as hkey:
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A DMSVSVersion.py224 root, subkey = key.split("\\", 1)
226 with OpenKey(HKEY_LOCAL_MACHINE, subkey) as hkey:
/third_party/python/Lib/
H A Dmimetypes.py274 with _winreg.OpenKey(hkcr, subkeyname) as subkey:
280 subkey, 'Content Type')
/third_party/python/Modules/
H A D_winapi.c2022 HKEY subkey; in _winapi__mimetypes_read_windows_registry_impl() local
2030 err = RegOpenKeyExW(hkcr, ext, 0, KEY_READ, &subkey); in _winapi__mimetypes_read_windows_registry_impl()
2038 err = RegQueryValueExW(subkey, L"Content Type", NULL, in _winapi__mimetypes_read_windows_registry_impl()
2040 RegCloseKey(subkey); in _winapi__mimetypes_read_windows_registry_impl()
/third_party/gn/src/gn/
H A Dvisual_studio_writer.cc113 for (const char16_t* subkey : subkeys) { in GetWindowsKitsIncludeDirs()
114 base::win::RegKey key(HKEY_LOCAL_MACHINE, subkey, KEY_READ); in GetWindowsKitsIncludeDirs()
/third_party/skia/third_party/externals/sfntly/java/lib/
H A Dicu4j-4_8_1_1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ibm/ com/ibm/icu/ com/ibm/icu/impl/ ...

Completed in 22 milliseconds