Home
last modified time | relevance | path

Searched refs:KeyValueInfo (Results 1 – 4 of 4) sorted by relevance

/reactos/sdk/lib/rtl/
H A Dregistry.c149 if (KeyValueInfo->DataOffset == MAXULONG) in RtlpCallQueryRegistryRoutine()
157 SpareData = (PCHAR)KeyValueInfo; in RtlpCallQueryRegistryRoutine()
162 if ((KeyValueInfo->Type == REG_NONE) || in RtlpCallQueryRegistryRoutine()
163 (!(KeyValueInfo->DataLength) && in RtlpCallQueryRegistryRoutine()
200 if (KeyValueInfo->DataLength) in RtlpCallQueryRegistryRoutine()
231 RtlCopyMemory(Name, KeyValueInfo->Name, KeyValueInfo->NameLength); in RtlpCallQueryRegistryRoutine()
246 Type = KeyValueInfo->Type; in RtlpCallQueryRegistryRoutine()
247 Data = (PVOID)((ULONG_PTR)KeyValueInfo + KeyValueInfo->DataOffset); in RtlpCallQueryRegistryRoutine()
248 Length = KeyValueInfo->DataLength; in RtlpCallQueryRegistryRoutine()
1036 if (!KeyValueInfo) in RtlQueryRegistryValues()
[all …]
/reactos/ntoskrnl/vdm/
H A Dvdmmain.c48 UCHAR KeyValueInfo[sizeof(KEY_VALUE_BASIC_INFORMATION) + 30]; in KeI386VdmInitialize() local
68 &KeyValueInfo, in KeI386VdmInitialize()
69 sizeof(KeyValueInfo), in KeI386VdmInitialize()
/reactos/drivers/network/tcpip/datalink/
H A Dlan.c572 PKEY_VALUE_PARTIAL_INFORMATION KeyValueInfo; in ReadIpConfiguration() local
613 KeyValueInfo = ExAllocatePoolWithTag(PagedPool, in ReadIpConfiguration()
616 if (!KeyValueInfo) in ReadIpConfiguration()
626 KeyValueInfo, in ReadIpConfiguration()
629 …if (NT_SUCCESS(Status) && KeyValueInfo->DataLength == sizeof(ULONG) && (*(PULONG)KeyValueInfo->Dat… in ReadIpConfiguration()
632 RegistryDataU.Buffer = (PWCHAR)KeyValueInfo->Data; in ReadIpConfiguration()
638 KeyValueInfo, in ReadIpConfiguration()
643 RegistryDataU.Length = KeyValueInfo->DataLength; in ReadIpConfiguration()
659 KeyValueInfo, in ReadIpConfiguration()
688 KeyValueInfo, in ReadIpConfiguration()
[all …]
/reactos/ntoskrnl/io/pnpmgr/
H A Dpnpmgr.c1301 PKEY_VALUE_FULL_INFORMATION KeyValueInfo = NULL; in PiGetDeviceRegistryProperty() local
1332 &KeyValueInfo); in PiGetDeviceRegistryProperty()
1343 Length = KeyValueInfo->DataLength; in PiGetDeviceRegistryProperty()
1347 if (KeyValueInfo->Type == ValueType) in PiGetDeviceRegistryProperty()
1351 (PVOID)((ULONG_PTR)KeyValueInfo + in PiGetDeviceRegistryProperty()
1352 KeyValueInfo->DataOffset), in PiGetDeviceRegistryProperty()
1369 ExFreePool(KeyValueInfo); in PiGetDeviceRegistryProperty()