Symbol: Node
bin/cpdup/cpdup.c
109
static Node *IterateList(List *list, Node *node, int n);
bin/cpdup/cpdup.c
1480
Node *node = NULL;
bin/cpdup/cpdup.c
1564
Node *node;
bin/cpdup/cpdup.c
1575
static Node *
bin/cpdup/cpdup.c
1576
IterateList(List *list, Node *node, int n)
bin/cpdup/cpdup.c
1590
Node *node;
bin/cpdup/cpdup.c
1616
node = malloc(sizeof(Node) + strlen(name) + 1);
bin/cpdup/cpdup.c
1642
Node *node;
bin/cpdup/cpdup.c
75
struct Node *no_Next;
bin/cpdup/cpdup.c
76
struct Node *no_HNext;
bin/cpdup/cpdup.c
83
Node li_Node;
bin/cpdup/cpdup.c
84
Node *li_Hash[HSIZE];
bin/cpdup/cpdup.c
977
Node *node;
lib/libefivar/efivar-dp-format.c
2188
EFI_DEVICE_PATH_PROTOCOL *Node;
lib/libefivar/efivar-dp-format.c
2191
Node = DevPath;
lib/libefivar/efivar-dp-format.c
2194
if (DevicePathType (Node) == mUefiDevicePathLibToTextTableGeneric[Index].Type) {
lib/libefivar/efivar-dp-format.c
2203
UefiDevicePathLibCatPrint (Str, "Path(%d,%d", DevicePathType (Node), DevicePathSubType (Node));
lib/libefivar/efivar-dp-format.c
2208
UefiDevicePathLibCatPrint (Str, "%s(%d", mUefiDevicePathLibToTextTableGeneric[Index].Text, DevicePathSubType (Node));
lib/libefivar/efivar-dp-format.c
2212
if (Index < DevicePathNodeLength (Node)) {
lib/libefivar/efivar-dp-format.c
2214
for (; Index < DevicePathNodeLength (Node); Index++) {
lib/libefivar/efivar-dp-format.c
2215
UefiDevicePathLibCatPrint (Str, "%02x", ((UINT8 *) Node)[Index]);
lib/libefivar/efivar-dp-format.c
2299
EFI_DEVICE_PATH_PROTOCOL *Node;
lib/libefivar/efivar-dp-format.c
2311
Node = __DECONST(EFI_DEVICE_PATH_PROTOCOL *, DeviceNode);
lib/libefivar/efivar-dp-format.c
2325
ToText (&Str, (VOID *) Node, DisplayOnly, AllowShortcuts);
lib/libefivar/efivar-dp-format.c
2355
EFI_DEVICE_PATH_PROTOCOL *Node;
lib/libefivar/efivar-dp-format.c
2369
Node = __DECONST(EFI_DEVICE_PATH_PROTOCOL *, DevicePath);
lib/libefivar/efivar-dp-format.c
2370
while (!IsDevicePathEnd (Node)) {
lib/libefivar/efivar-dp-format.c
2378
if (DevicePathType (Node) == mUefiDevicePathLibToTextTable[Index].Type &&
lib/libefivar/efivar-dp-format.c
2379
DevicePathSubType (Node) == mUefiDevicePathLibToTextTable[Index].SubType
lib/libefivar/efivar-dp-format.c
2394
AlignedNode = AllocateCopyPool (DevicePathNodeLength (Node), Node);
lib/libefivar/efivar-dp-format.c
2404
Node = NextDevicePathNode (Node);
lib/libefivar/efivar-dp-parse.c
444
EFI_DEVICE_PATH_PROTOCOL *Node;
lib/libefivar/efivar-dp-parse.c
457
Node = CreateDeviceNode (
lib/libefivar/efivar-dp-parse.c
463
StrHexToBytes (DataStr, DataLength * 2, (UINT8 *) (Node + 1), DataLength);
lib/libefivar/efivar-dp-parse.c
464
return Node;
lib/libefivar/uefi-dputil.c
213
IN CONST VOID *Node
lib/libefivar/uefi-dputil.c
216
ASSERT (Node != NULL);
lib/libefivar/uefi-dputil.c
217
return ((const EFI_DEVICE_PATH_PROTOCOL *)(Node))->Type;
lib/libefivar/uefi-dputil.c
236
IN CONST VOID *Node
lib/libefivar/uefi-dputil.c
239
ASSERT (Node != NULL);
lib/libefivar/uefi-dputil.c
240
return ((const EFI_DEVICE_PATH_PROTOCOL *)(Node))->SubType;
lib/libefivar/uefi-dputil.c
261
IN CONST VOID *Node
lib/libefivar/uefi-dputil.c
264
ASSERT (Node != NULL);
lib/libefivar/uefi-dputil.c
265
return ((const EFI_DEVICE_PATH_PROTOCOL *)Node)->Length[0] |
lib/libefivar/uefi-dputil.c
266
(((const EFI_DEVICE_PATH_PROTOCOL *)Node)->Length[1] << 8);
lib/libefivar/uefi-dputil.c
286
IN CONST VOID *Node
lib/libefivar/uefi-dputil.c
289
ASSERT (Node != NULL);
lib/libefivar/uefi-dputil.c
290
return ((EFI_DEVICE_PATH_PROTOCOL *)(__DECONST(UINT8 *, Node) + DevicePathNodeLength(Node)));
lib/libefivar/uefi-dputil.c
316
IN CONST VOID *Node
lib/libefivar/uefi-dputil.c
319
ASSERT (Node != NULL);
lib/libefivar/uefi-dputil.c
320
return (BOOLEAN) (DevicePathType (Node) == END_DEVICE_PATH_TYPE);
lib/libefivar/uefi-dputil.c
343
IN CONST VOID *Node
lib/libefivar/uefi-dputil.c
346
ASSERT (Node != NULL);
lib/libefivar/uefi-dputil.c
347
return (BOOLEAN) (IsDevicePathEndType (Node) && DevicePathSubType(Node) == END_ENTIRE_DEVICE_PATH_SUBTYPE);
lib/libefivar/uefi-dputil.c
369
OUT VOID *Node
lib/libefivar/uefi-dputil.c
372
ASSERT (Node != NULL);
lib/libefivar/uefi-dputil.c
373
memcpy (Node, &mUefiDevicePathLibEndDevicePath, sizeof (mUefiDevicePathLibEndDevicePath));
lib/libefivar/uefi-dputil.c
397
IN OUT VOID *Node,
lib/libefivar/uefi-dputil.c
401
ASSERT (Node != NULL);
lib/libefivar/uefi-dputil.c
404
le16enc(&((EFI_DEVICE_PATH_PROTOCOL *)(Node))->Length[0], (UINT16)(Length));
stand/boot/pc32/libi386/biospnp.c
157
u_int8_t Node;
stand/boot/pc32/libi386/biospnp.c
168
Node = 0;
stand/boot/pc32/libi386/biospnp.c
170
while((Node != 0xff) && (count-- > 0)) {
stand/boot/pc32/libi386/biospnp.c
171
result = biospnp_f01(vsegofs(&Node), vsegofs(devNodeBuffer), 0x1);
stand/boot/pc32/libi386/biospnp.c
173
printf("PnP BIOS node %d: error 0x%x\n", Node, result);
stand/boot/pc32/libi386/biospnp.c
97
#define biospnp_f01(Node, devNodeBuffer, Control) biospnp_call(0x01, "llw", Node, devNodeBuffer, Control)