Deleted Added
full compact
dbdisply.c (100966) dbdisply.c (102550)
1/*******************************************************************************
2 *
3 * Module Name: dbdisply - debug display commands
1/*******************************************************************************
2 *
3 * Module Name: dbdisply - debug display commands
4 * $Revision: 76 $
4 * $Revision: 78 $
5 *
6 ******************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2002, Intel Corp.

--- 106 unchanged lines hidden (view full) ---

119#include "amlcode.h"
120#include "acdispat.h"
121#include "acnamesp.h"
122#include "acparser.h"
123#include "acinterp.h"
124#include "acdebug.h"
125
126
5 *
6 ******************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2002, Intel Corp.

--- 106 unchanged lines hidden (view full) ---

119#include "amlcode.h"
120#include "acdispat.h"
121#include "acnamesp.h"
122#include "acparser.h"
123#include "acinterp.h"
124#include "acdebug.h"
125
126
127#ifdef ENABLE_DEBUGGER
127#ifdef ACPI_DEBUGGER
128
129
128
129
130#define _COMPONENT ACPI_DEBUGGER
130#define _COMPONENT ACPI_CA_DEBUGGER
131 ACPI_MODULE_NAME ("dbdisply")
132
133
134/******************************************************************************
135 *
136 * FUNCTION: AcpiDbGetPointer
137 *
138 * PARAMETERS: Target - Pointer to string to be converted

--- 309 unchanged lines hidden (view full) ---

448
449 AcpiOsPrintf ("(%d)", ObjDesc->Buffer.Length);
450 for (i = 0; (i < 8) && (i < ObjDesc->Buffer.Length); i++)
451 {
452 AcpiOsPrintf (" %2.2X", ObjDesc->Buffer.Pointer[i]);
453 }
454 break;
455
131 ACPI_MODULE_NAME ("dbdisply")
132
133
134/******************************************************************************
135 *
136 * FUNCTION: AcpiDbGetPointer
137 *
138 * PARAMETERS: Target - Pointer to string to be converted

--- 309 unchanged lines hidden (view full) ---

448
449 AcpiOsPrintf ("(%d)", ObjDesc->Buffer.Length);
450 for (i = 0; (i < 8) && (i < ObjDesc->Buffer.Length); i++)
451 {
452 AcpiOsPrintf (" %2.2X", ObjDesc->Buffer.Pointer[i]);
453 }
454 break;
455
456
456
457 default:
457 default:
458
458
459 AcpiOsPrintf ("%p", ObjDesc);
460 break;
461 }
462}
463
464
465/*******************************************************************************
466 *

--- 147 unchanged lines hidden (view full) ---

614 default:
615 break;
616 }
617 break;
618
619
620 default:
621
459 AcpiOsPrintf ("%p", ObjDesc);
460 break;
461 }
462}
463
464
465/*******************************************************************************
466 *

--- 147 unchanged lines hidden (view full) ---

614 default:
615 break;
616 }
617 break;
618
619
620 default:
621
622 AcpiOsPrintf ("Unknown Reference opcode %X\n",
622 AcpiOsPrintf ("Unknown Reference opcode %X\n",
623 ObjDesc->Reference.Opcode);
624 break;
625 }
626 break;
627
628 default:
629
630 AcpiOsPrintf ("<Obj> ");

--- 362 unchanged lines hidden (view full) ---

993 {
994 return;
995 }
996
997 AcpiOsPrintf ("ArgObj: ");
998 AcpiDbDisplayInternalObject (ObjDesc, WalkState);
999}
1000
623 ObjDesc->Reference.Opcode);
624 break;
625 }
626 break;
627
628 default:
629
630 AcpiOsPrintf ("<Obj> ");

--- 362 unchanged lines hidden (view full) ---

993 {
994 return;
995 }
996
997 AcpiOsPrintf ("ArgObj: ");
998 AcpiDbDisplayInternalObject (ObjDesc, WalkState);
999}
1000
1001#endif /* ENABLE_DEBUGGER */
1001#endif /* ACPI_DEBUGGER */
1002
1002