Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/MdeModulePkg/Universal/SetupBrowserDxe/
DIfrParse.c183 NAME_VALUE_NODE *NameValueNode; in CreateQuestion() local
251 NameValueNode = NAME_VALUE_NODE_FROM_LINK (Link); in CreateQuestion()
253 if (StrCmp (Statement->VariableName, NameValueNode->Name) == 0) { in CreateQuestion()
266 NameValueNode = AllocateZeroPool (sizeof (NAME_VALUE_NODE)); in CreateQuestion()
267 ASSERT (NameValueNode != NULL); in CreateQuestion()
268 NameValueNode->Signature = NAME_VALUE_NODE_SIGNATURE; in CreateQuestion()
269NameValueNode->Name = AllocateCopyPool (StrSize (Statement->VariableName), Statement->VariableName… in CreateQuestion()
270 ASSERT (NameValueNode->Name != NULL); in CreateQuestion()
271 NameValueNode->Value = AllocateZeroPool (0x10); in CreateQuestion()
272 ASSERT (NameValueNode->Value != NULL); in CreateQuestion()
[all …]