This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Problem implementing FlashProtectSet from DriverLib

Other Parts Discussed in Thread: TM4C123FH6PM, UNIFLASH, LMFLASHPROGRAMMER, 4460, TM4C123GE6PM

Environment:

 

Texas Instruments TM4C123FH6PM ARM Processor

Texas Instruments TM4C123GXL Launchpad Evaluation Board

Texas Instruments Code Composer Studio Version 5.5.0.00077

Emulator: Stellaris Serial In-Circuit Debugger (Launchpad only)

         Blackhawk USB100v2 JTAG (Production Target)

DriverLib version: TivaWare_C_Series-2.0.1.11577

 

TASK:

Trying to create a protected area of flash that contains code (the MONITOR) that runs and acts as a downloader for other code (the APCODE).   Once downloaded, the APCODE is then executed at a memory address defined in the APCODE (ORG address).  MONITOR works fine downloading and executing the APCODE.  The MONITOR is ORG’d at 0x00000000 which needs to be protected from accidental/intentional FLASH erase/write commands executed in the APCODE.  To achieve this we are attempting to use the FlashProtectSet() calls from DriverLib.  NOTE: We are NOT calling FlashProtectSave() in our current solution.

 

The solution must allow debugging with JTAG pod, reprogramming of any FLASH memory region, and finally, when running without the debugger the code must protect the MONITOR flash memory from erase or write.

 

ISSUE:

We are able to achieve the desired results using the launchpad board.  We can protect the MONITOR and continue to develop and download code using the Stellaris (USB) Serial Debugger; however, on our target board, we are able to lock the MONITOR Flash (address 0x00000000 to address 0x000007FF) using the code below; however, unlike the launchpad board, the target board is Locked and we are unable to download any code changes using JTAG to the area of FLASH that was protected – essentially the target board is bricked w/r/t changing the first code written with the FlashProtectSet() call.   Note that we can flash code changes to areas in memory that were not in the area protected by the FlashProtectSet() calls.

 

Note: On the lauchpad board, we have to power the board off and back on in order to continue to develop code and download it. Before powering off the lauchpad board, the compiler would try to download to the launchpad and the Complier would cause an immediate fault and not complete the download.  Once this fault occurred, powering off the board and then downloading the code again “unlocked” the protection.

 

CODE:

Code running at 0x00000000 that was used to lock the MONITOR FLASH locations:

 

int protect_pages = 12;  // 2k pages to protect  protect base +  12*2K

uint32_t protect_base = 0x0000;

int c2;

for (c2 = 0; c2 < protect_pages;c2++)

{

       FlashProtectSet((protect_base+(0x800*c2)),FlashReadOnly);

}

FlashIntClear(FLASH_INT_PROGRAM|FLASH_INT_ACCESS);

FlashIntEnable(FLASH_INT_PROGRAM|FLASH_INT_ACCESS);

 

At this point, we run a separate project application ORG’d at address 0x7000.  This application is downloaded via the MONITOR code (which works).  The monitor executes the code and it tries to erase the flash at 0x0000 .. the protection enabled at 0x00000000 works as expected and the erase call fails (the MONITOR code is unchanged).

 

 

PROBLEM:

From this point, we have been unable to program any changes to the MONITOR code at address 0x00000000 using JTAG and Code Composer.  Changes above the protected fence work fine with the JTAG pod (e.g. applications ORG’d anywhere above the fence).

 

 

WE HAVE TRIED:

 

  1. Powering off target board and then re-loading code (using Code Composer Debug function and JTAG pod).
  2. Using the CPU and System Reset functions within Code Composer and attempting to re-loading the code with any changes to the original code written the first time (the one that is now locked into the flash).  Any changes look like they downloaded to the target; however, nothing was changed.  In fact, changes to the code caused issues with the debugger since the memory image was different.
  3. Modified the program at 0x7000 to include the following:

 

FlashProtectSet(0x0000,FlashReadWrite)  Which runs before the FlashErase(0x0000) is called and it does not have any effect… “i.e. the flash is still protected.”

 

  1. Modified the program at 0x7000 to include the following:

FlashIntDisable(FLASH_INT_PROGRAM|FLASH_INT_ACCESS)   Which runs before the FlashErase(0x0000) is called and it does not have any effect… “i.e. the flash is still protected.”

 

  1. Modified the program at 0x7000 to include this code:

 

static tFlashProtection tempx;

tempx = FlashProtectGet(0x0000);

UARTprintf("\n\rtempx = %x",tempx);

 

FlashProtectSet(0x0000,FlashReadWrite);

 

tempx = FlashProtectGet(0x0000);

UARTprintf("\n\rtempx = %x",tempx);


 

The value for both print statements was “1”  -- which is FlashReadOnly

 

 

BASICALLY:  The processor is acting like FlashProtectSave() was run  —  although it was never run!!

 

Any assistance is appreciated.

  • Hello Stephen,

    The FlashProtectSet as you mentioned will set the bit until the next System Reset but FlashProtectSave will commit the same. In the case above since FlashProtectSave is not used, so there is no way that the device may have committed the same.

    However do note that the MONITOR code does set the Protection privilege and will run after an external system reset or power cycle causing the device to re-enter the state artificially. At this point I would suggest you to run a Unlock Sequence to remove the code itself from 0x0, thereby allowing the MONITOR section to be program/erasable again.

    Regards

    Amit

  • When you say "unlock sequence" are you referring to :

    FlashProtectSet(0x0000,FlashReadWrite)

    And, would it work to run this from a non-MONITOR area of memory?  e.g.  at 0x7000?

  • Hello Stephen

    The Unlock Sequence is a mechanism to completely erase the flash before code execution can commence. It requires the use of LMFlashProgrammer or UNIFLASH with Stellaris ICDI.

    This is done outside the uC and not by a code.

    Regards

    Amit

  • Thank you.  We downloaded Uniflash and successfully linked to our target board using our Blackhawk XDS100V2 pod.  When we tried to erase it failed.  The board ran the code at zero during the erase process.

    [20:20:33] CORTEX_M4_0: Performing Mass Erase on Flash memory

     

    [20:20:33] CORTEX_M4_0: Operation completed successfully.

     

    [20:20:42] CORTEX_M4_0: Performing Blank Check...

     

    [20:20:42] CORTEX_M4_0: Performing Blank Check on the following (aligned) memory range: 0x00000000 - 0x0003FFFF

     

    [20:20:48] ERROR >> CORTEX_M4_0: Flash Programmer: Error during Blank Check @ address 0x00000000; expected 0xFFFFFFFF, actual 0x20002F08

     

    [20:20:48] ERROR >> CORTEX_M4_0: Flash Programmer: Error performing Blank Check.

     

    [20:20:48] Flash operation BlankCheck failed on core Texas Instruments XDS100v2 USB Emulator_0/CORTEX_M4_0 .

  • Here is the DS Log from UNIFLASH.

    0x00002BA8 0 3 CORTEX_M4_0 GEL I: Evaluation of "DEBUG_LogEnable(1)" completed - Value: 0 Location: unknown
    0x00002BA8 37 3  COM_DBG_IF C: class DSP_CO_USER::OnCExprEvaluated()
    0x00002BA8 37 3  XPCOM C: ( (dsIObjectEventCallback*)122CCE28 )->onEvent( 1855D558 )
    0x00002BA8 37 3  XPCOM C: ( (nsISupports*)1855D538 )->queryInterface( 122B49F8, 0FB6DFD8 )
    0x00002BA8 37 3  XPCOM R: ( (nsISupports*)1855D538 )->queryInterface( 122B49F8, *0FB6DFD8 = 1855D558 ) = 0x00000000
    0x00002BA8 37 3  XPCOM C: ( (dsICExprEvaluatedEventData*)1855D558 )->getExpression( 0FB6DF28 )
    0x00002BA8 37 3  XPCOM R: ( (dsICExprEvaluatedEventData*)1855D558 )->getExpression( *0FB6DF28 = DEBUG_LogEnable(1) ) = 0x00000000
    0x00002BA8 37 3  XPCOM C: ( (dsICExprEvaluatedEventData*)1855D558 )->hasFPandPC( 0FB6DF28 )
    0x00002BA8 37 3  XPCOM R: ( (dsICExprEvaluatedEventData*)1855D558 )->hasFPandPC( *0FB6DF28 = false ) = 0x00000000
    0x00002BA8 37 3  XPCOM R: ( (dsIObjectEventCallback*)122CCE28 )->onEvent( 1855D558 ) = 0x00000000
    0x00002BA8 37 3  COM_DBG_IF R: class DSP_CO_USER::OnCExprEvaluated()
    0x00002BA8 37 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 37 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 37 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3 ms
    0x00002BA8 37 4  POLL I: TimeToSleep() found shorter sleep time of 3 ms from class DevicePollFrequencyManager
    0x00002BA8 37 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 5000 ms
    0x00002BA8 40 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 40 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 40 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 40 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 40 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4960 ms
    0x00002BA8 40 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 40 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 40 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4960 ms
    0x00002BA8 540 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 540 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 540 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 540 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 540 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4460 ms
    0x00002BA8 540 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 540 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 540 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4460 ms
    0x00002BA8 1068 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 1068 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 1068 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 1068 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 1068 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3932 ms
    0x00002BA8 1068 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 1068 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 1068 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3932 ms
    0x00002BA8 1568 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 1568 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 1568 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 1568 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 1568 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3432 ms
    0x00002BA8 1568 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 1568 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 1568 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3432 ms
    0x00002BA8 2068 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 2068 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 2068 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 2068 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 2068 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2932 ms
    0x00002BA8 2068 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 2068 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 2068 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2932 ms
    0x00002BA8 2568 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 2568 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 2568 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 2568 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 2568 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2432 ms
    0x00002BA8 2568 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 2568 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 2568 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2432 ms
    0x00002BA8 3068 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 3068 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 3068 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 3068 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 3068 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1932 ms
    0x00002BA8 3068 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 3068 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 3068 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1932 ms
    0x00002BA8 3568 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 3568 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 3568 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 3568 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 3568 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1432 ms
    0x00002BA8 3568 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 3568 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 3568 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1432 ms
    0x00002BA8 4068 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 4068 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 4068 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 4068 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 4068 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 932 ms
    0x00002BA8 4068 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 4068 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 4068 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 932 ms
    0x00002BA8 4568 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 4568 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 4568 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 4568 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 4568 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 432 ms
    0x00002BA8 4568 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 4568 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 4568 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 432 ms
    0x00002BA8 4568 4  POLL I: TimeToSleep() found shorter sleep time of 432 ms from class DevicePollFrequencyManager
    0x00002BA8 5000 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 68 ms
    0x00002BA8 5000 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 5000 3 CORTEX_M4_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 5000 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 5000 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 5000 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 68 ms
    0x00002BA8 5000 4  POLL I: TimeToSleep() found shorter sleep time of 68 ms from class DevicePollFrequencyManager
    0x00002BA8 5000 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 5000 ms
    0x00002BA8 5068 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 5068 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 5068 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 5068 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 5068 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4932 ms
    0x00002BA8 5068 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 5068 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 5068 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4932 ms
    0x00002BA8 5568 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 5568 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 5568 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 5568 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 5568 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4432 ms
    0x00002BA8 5568 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 5568 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 5568 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4432 ms
    0x00002BA8 6068 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 6068 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 6068 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 6068 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 6068 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3932 ms
    0x00002BA8 6068 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 6068 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 6068 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3932 ms
    0x00002BA8 6568 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 6568 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 6568 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 6568 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 6568 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3432 ms
    0x00002BA8 6568 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 6568 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 6568 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3432 ms
    0x00002BA8 7068 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 7068 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 7068 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 7068 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 7068 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2932 ms
    0x00002BA8 7068 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 7068 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 7068 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2932 ms
    0x00002BA8 7568 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 7568 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 7568 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 7568 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 7568 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2432 ms
    0x00002BA8 7568 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 7568 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 7568 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2432 ms
    0x000019C0 7584 3  XPCOM C: ( (dsIProcessorInfo*)0050F498 )->Partnum( 0018EC78 )
    0x000019C0 7584 3  XPCOM R: ( (dsIProcessorInfo*)0050F498 )->Partnum( *0018EC78 = TM4C123GE6PM ) = 0x00000000
    0x000019C0 7585 3  XPCOM C: ( (dsIProcessorInfo*)0050F498 )->Partnum( 0018EC88 )
    0x000019C0 7585 3  XPCOM R: ( (dsIProcessorInfo*)0050F498 )->Partnum( *0018EC88 = TM4C123GE6PM ) = 0x00000000
    0x000019C0 7585 3  XPCOM C: ( (dsITarget*)0050F488 )->TargetType( 0018EC78 )
    0x000019C0 7585 3  XPCOM R: ( (dsITarget*)0050F488 )->TargetType( *0018EC78 = TMS470REX ) = 0x00000000
    0x000019C0 7585 3  XPCOM C: ( (dsIDebugPropertiesManager*)005A3E30 )->getDebugPropertiesWithAttribute( Texas Instruments XDS100v2 USB Emulator_0/CORTEX_M4_0, TMS470REX, partnum=TM4C123GE6PM, 0018EC98 )
    0x000019C0 7585 3  XPCOM R: ( (dsIDebugPropertiesManager*)005A3E30 )->getDebugPropertiesWithAttribute( Texas Instruments XDS100v2 USB Emulator_0/CORTEX_M4_0, TMS470REX, partnum=TM4C123GE6PM, *0018EC98 = 125D0AF0 ) = 0x00000000
    0x000019C0 7585 3  XPCOM C: ( (dsIDebugProperties*)125D0AF0 )->queryInterface( 125E2F08, 0018EC48 )
    0x000019C0 7585 3  XPCOM R: ( (dsIDebugProperties*)125D0AF0 )->queryInterface( 125E2F08, *0018EC48 = 125D0AF4 ) = 0x00000000
    0x000019C0 7586 3  XPCOM C: ( (dsIDebugPropertiesEvents*)125D0AF4 )->onDisableStatusChanged( 0018EC28 )
    0x000019C0 7586 3  XPCOM R: ( (dsIDebugPropertiesEvents*)125D0AF4 )->onDisableStatusChanged( *0018EC28 = 16EE8B58 ) = 0x00000000
    0x000019C0 7586 3  XPCOM C: ( (dsIDebugPropertiesEvents*)125D0AF4 )->onPropertyValueChanged( 0018EC28 )
    0x000019C0 7586 3  XPCOM R: ( (dsIDebugPropertiesEvents*)125D0AF4 )->onPropertyValueChanged( *0018EC28 = 16EE8BD8 ) = 0x00000000
    0x000019C0 7586 3  XPCOM C: ( (dsIDebugProperties*)125D0AF0 )->loadSettings(  )
    0x000019C0 7587 3  XPCOM R: ( (dsIDebugProperties*)125D0AF0 )->loadSettings(  ) = 0x00000000
    0x000019C0 7587 3  XPCOM C: ( (dsIDebugProperties*)125D0AF0 )->getProperty( VerifyAfterProgramLoad, 0018EC28 )
    0x000019C0 7587 3  XPCOM R: ( (dsIDebugProperties*)125D0AF0 )->getProperty( VerifyAfterProgramLoad, *0018EC28 = 124124E0 ) = 0x00000000
    0x000019C0 7587 3  XPCOM C: ( (dsIProperty*)124124E0 )->getPropertyType( 0018EB78 )
    0x000019C0 7587 3  XPCOM R: ( (dsIProperty*)124124E0 )->getPropertyType( *0018EB78 = 0x00000003 ) = 0x00000000
    0x000019C0 7587 3  XPCOM C: ( (dsIProperty*)124124E0 )->queryInterface( 125E2F08, 0018EB78 )
    0x000019C0 7587 3  XPCOM R: ( (dsIProperty*)124124E0 )->queryInterface( 125E2F08, *0018EB78 = 12412584 ) = 0x00000000
    0x000019C0 7587 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 125E2F08, 0018EB78 )
    0x000019C0 7587 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 125E2F08, *0018EB78 = 1241254C ) = 0x00000000
    0x000019C0 7587 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 125E2F08, 0018EB78 )
    0x000019C0 7587 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 125E2F08, *0018EB78 = 12412584 ) = 0x00000000
    0x000019C0 7587 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( 0018EBE8 )
    0x000019C0 7587 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7587 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000000, 0018EBF8 )
    0x000019C0 7587 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000000, *0018EBF8 = Full verification ) = 0x00000000
    0x000019C0 7587 3  XPCOM C: ( (dsIStringProperty*)1241254C )->CurValue( Full verification )
    0x000019C0 7587 3  XPCOM R: ( (dsIStringProperty*)1241254C )->CurValue( Full verification ) = 0x00000000
    0x000019C0 7587 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( 0018EBE8 )
    0x000019C0 7587 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7587 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000001, 0018EBF8 )
    0x000019C0 7587 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000001, *0018EBF8 = Fast verification ) = 0x00000000
    0x000019C0 7587 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( 0018EBE8 )
    0x000019C0 7587 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7587 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000002, 0018EBF8 )
    0x000019C0 7587 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000002, *0018EBF8 = No verification ) = 0x00000000
    0x000019C0 7587 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( 0018EBE8 )
    0x000019C0 7587 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7587 3  XPCOM C: ( (dsIDebugProperties*)125D0AF0 )->getProperty( AutoRunToLabelOnRestart, 0018EC58 )
    0x000019C0 7587 3  XPCOM R: ( (dsIDebugProperties*)125D0AF0 )->getProperty( AutoRunToLabelOnRestart, *0018EC58 = 1702FDB8 ) = 0x00000000
    0x000019C0 7587 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->getPropertyType( 0018EBA8 )
    0x000019C0 7587 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->getPropertyType( *0018EBA8 = 0x00000000 ) = 0x00000000
    0x000019C0 7587 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->queryInterface( 125E2F08, 0018EBA8 )
    0x000019C0 7587 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->queryInterface( 125E2F08, *0018EBA8 = 1702FE24 ) = 0x00000000
    0x000019C0 7587 3  XPCOM C: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 125E2F08, 0018EBA8 )
    0x000019C0 7587 3  XPCOM R: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 125E2F08, *0018EBA8 = 1702FE24 ) = 0x00000000
    0x000019C0 7588 3  XPCOM C: ( (dsIBooleanProperty*)1702FE24 )->CurValue( false )
    0x000019C0 7588 3  XPCOM R: ( (dsIBooleanProperty*)1702FE24 )->CurValue( false ) = 0x00000000
    0x000019C0 7588 3  XPCOM C: ( (dsIDebugProperties*)125D0AF0 )->getRootMenuElements( 0018EC78 )
    0x000019C0 7588 3  XPCOM R: ( (dsIDebugProperties*)125D0AF0 )->getRootMenuElements( *0018EC78 = 1856E5F0 ) = 0x00000000
    0x000019C0 7588 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->Count( 0018EC68 )
    0x000019C0 7588 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->Count( *0018EC68 = 0x00000005 ) = 0x00000000
    0x000019C0 7588 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000000, 0018EC48 )
    0x000019C0 7588 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000000, *0018EC48 = 170D7380 ) = 0x00000000
    0x000019C0 7588 3  XPCOM C: ( (dsIProperty*)170D7380 )->getPropertyType( 0018EBC8 )
    0x000019C0 7588 3  XPCOM R: ( (dsIProperty*)170D7380 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 7588 3  XPCOM C: ( (dsIProperty*)170D7380 )->queryInterface( 125E2E90, 0018EBC8 )
    0x000019C0 7588 3  XPCOM R: ( (dsIProperty*)170D7380 )->queryInterface( 125E2E90, *0018EBC8 = 170D73EC ) = 0x00000000
    0x000019C0 7588 3  XPCOM C: ( (dsINode*)170D73EC )->queryInterface( 125E2E90, 0018EBC8 )
    0x000019C0 7588 3  XPCOM R: ( (dsINode*)170D73EC )->queryInterface( 125E2E90, *0018EBC8 = 170D73EC ) = 0x00000000
    0x000019C0 7588 3  XPCOM C: ( (dsINode*)170D73EC )->Name( 0018EC38 )
    0x000019C0 7588 3  XPCOM R: ( (dsINode*)170D73EC )->Name( *0018EC38 = Program/Memory Load Options ) = 0x00000000
    0x000019C0 7588 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000000, 0018EC48 )
    0x000019C0 7588 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000000, *0018EC48 = 170D7380 ) = 0x00000000
    0x000019C0 7588 3  XPCOM C: ( (dsIProperty*)170D7380 )->getPropertyType( 0018EBC8 )
    0x000019C0 7588 3  XPCOM R: ( (dsIProperty*)170D7380 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 7588 3  XPCOM C: ( (dsIProperty*)170D7380 )->queryInterface( 125E2E90, 0018EBC8 )
    0x000019C0 7588 3  XPCOM R: ( (dsIProperty*)170D7380 )->queryInterface( 125E2E90, *0018EBC8 = 170D73EC ) = 0x00000000
    0x000019C0 7588 3  XPCOM C: ( (dsINode*)170D73EC )->queryInterface( 125E2E90, 0018EBC8 )
    0x000019C0 7588 3  XPCOM R: ( (dsINode*)170D73EC )->queryInterface( 125E2E90, *0018EBC8 = 170D73EC ) = 0x00000000
    0x000019C0 7588 3  XPCOM C: ( (dsINode*)170D73EC )->getChildren( 0018EC08 )
    0x000019C0 7588 3  XPCOM R: ( (dsINode*)170D73EC )->getChildren( *0018EC08 = 1856F640 ) = 0x00000000
    0x000019C0 7588 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000000, 0018EC48 )
    0x000019C0 7588 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000000, *0018EC48 = 170D7380 ) = 0x00000000
    0x000019C0 7588 3  XPCOM C: ( (dsIProperty*)170D7380 )->getPropertyType( 0018EBC8 )
    0x000019C0 7588 3  XPCOM R: ( (dsIProperty*)170D7380 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 7588 3  XPCOM C: ( (dsIProperty*)170D7380 )->queryInterface( 125E2F08, 0018EBC8 )
    0x000019C0 7588 3  XPCOM R: ( (dsIProperty*)170D7380 )->queryInterface( 125E2F08, *0018EBC8 = 170D73EC ) = 0x00000000
    0x000019C0 7588 3  XPCOM C: ( (dsINode*)170D73EC )->queryInterface( 125E2F08, 0018EBC8 )
    0x000019C0 7588 3  XPCOM R: ( (dsINode*)170D73EC )->queryInterface( 125E2F08, *0018EBC8 = 170D73EC ) = 0x00000000
    0x000019C0 7588 3  XPCOM C: ( (dsINode*)170D73EC )->getChildren( 0018EC08 )
    0x000019C0 7588 3  XPCOM R: ( (dsINode*)170D73EC )->getChildren( *0018EC08 = 1856F8E0 ) = 0x00000000
    0x000019C0 7588 3  XPCOM C: ( (dsIProperties*)1856F8E0 )->Count( 0018EC68 )
    0x000019C0 7588 3  XPCOM R: ( (dsIProperties*)1856F8E0 )->Count( *0018EC68 = 0x00000005 ) = 0x00000000
    0x000019C0 7588 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000000, 0018EC48 )
    0x000019C0 7588 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000000, *0018EC48 = 170D7380 ) = 0x00000000
    0x000019C0 7588 3  XPCOM C: ( (dsIProperty*)170D7380 )->getPropertyType( 0018EBC8 )
    0x000019C0 7589 3  XPCOM R: ( (dsIProperty*)170D7380 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 7589 3  XPCOM C: ( (dsIProperty*)170D7380 )->queryInterface( 125E2E90, 0018EBC8 )
    0x000019C0 7589 3  XPCOM R: ( (dsIProperty*)170D7380 )->queryInterface( 125E2E90, *0018EBC8 = 170D73EC ) = 0x00000000
    0x000019C0 7589 3  XPCOM C: ( (dsINode*)170D73EC )->queryInterface( 125E2E90, 0018EBC8 )
    0x000019C0 7589 3  XPCOM R: ( (dsINode*)170D73EC )->queryInterface( 125E2E90, *0018EBC8 = 170D73EC ) = 0x00000000
    0x000019C0 7589 3  XPCOM C: ( (dsINode*)170D73EC )->getChildren( 0018EC08 )
    0x000019C0 7589 3  XPCOM R: ( (dsINode*)170D73EC )->getChildren( *0018EC08 = 1856F460 ) = 0x00000000
    0x000019C0 7589 3  XPCOM C: ( (dsIProperties*)1856F460 )->Count( 0018EC28 )
    0x000019C0 7589 3  XPCOM R: ( (dsIProperties*)1856F460 )->Count( *0018EC28 = 0x00000005 ) = 0x00000000
    0x000019C0 7589 3  XPCOM C: ( (dsIProperties*)1856F460 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 7589 3  XPCOM R: ( (dsIProperties*)1856F460 )->getProperty( 0x00000000, *0018EC08 = 17132DC0 ) = 0x00000000
    0x000019C0 7589 3  XPCOM C: ( (dsIProperty*)17132DC0 )->getPropertyType( 0018EB88 )
    0x000019C0 7589 3  XPCOM R: ( (dsIProperty*)17132DC0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7589 3  XPCOM C: ( (dsIProperty*)17132DC0 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7589 3  XPCOM R: ( (dsIProperty*)17132DC0 )->queryInterface( 125E2F08, *0018EB88 = 17132E2C ) = 0x00000000
    0x000019C0 7589 3  XPCOM C: ( (dsIGroup*)17132E2C )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7589 3  XPCOM R: ( (dsIGroup*)17132E2C )->queryInterface( 125E2F08, *0018EB88 = 17132E2C ) = 0x00000000
    0x000019C0 7589 3  XPCOM C: ( (dsIGroup*)17132E2C )->Name( 0018EBF8 )
    0x000019C0 7589 3  XPCOM R: ( (dsIGroup*)17132E2C )->Name( *0018EBF8 = Program/Memory Load Options ) = 0x00000000
    0x000019C0 7589 3  XPCOM C: ( (dsIProperties*)1856F460 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 7589 3  XPCOM R: ( (dsIProperties*)1856F460 )->getProperty( 0x00000000, *0018EC08 = 17132DC0 ) = 0x00000000
    0x000019C0 7589 3  XPCOM C: ( (dsIProperty*)17132DC0 )->getPropertyType( 0018EB88 )
    0x000019C0 7589 3  XPCOM R: ( (dsIProperty*)17132DC0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7589 3  XPCOM C: ( (dsIProperty*)17132DC0 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7589 3  XPCOM R: ( (dsIProperty*)17132DC0 )->queryInterface( 125E2F08, *0018EB88 = 17132E2C ) = 0x00000000
    0x000019C0 7589 3  XPCOM C: ( (dsIGroup*)17132E2C )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7589 3  XPCOM R: ( (dsIGroup*)17132E2C )->queryInterface( 125E2F08, *0018EB88 = 17132E2C ) = 0x00000000
    0x000019C0 7589 3  XPCOM C: ( (dsIGroup*)17132E2C )->getChildren( 0018EBC8 )
    0x000019C0 7589 3  XPCOM R: ( (dsIGroup*)17132E2C )->getChildren( *0018EBC8 = 1856F550 ) = 0x00000000
    0x000019C0 7589 3  XPCOM C: ( (dsIProperties*)1856F460 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 7589 3  XPCOM R: ( (dsIProperties*)1856F460 )->getProperty( 0x00000000, *0018EC08 = 17132DC0 ) = 0x00000000
    0x000019C0 7589 3  XPCOM C: ( (dsIProperty*)17132DC0 )->getPropertyType( 0018EB88 )
    0x000019C0 7589 3  XPCOM R: ( (dsIProperty*)17132DC0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7589 3  XPCOM C: ( (dsIProperty*)17132DC0 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7589 3  XPCOM R: ( (dsIProperty*)17132DC0 )->queryInterface( 125E2E90, *0018EB88 = 17132E2C ) = 0x00000000
    0x000019C0 7589 3  XPCOM C: ( (dsIGroup*)17132E2C )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7589 3  XPCOM R: ( (dsIGroup*)17132E2C )->queryInterface( 125E2E90, *0018EB88 = 17132E2C ) = 0x00000000
    0x000019C0 7589 3  XPCOM C: ( (dsIGroup*)17132E2C )->getChildren( 0018EBC8 )
    0x000019C0 7589 3  XPCOM R: ( (dsIGroup*)17132E2C )->getChildren( *0018EBC8 = 1856FAC0 ) = 0x00000000
    0x000019C0 7589 3  XPCOM C: ( (dsIProperties*)1856FAC0 )->Count( 0018EC28 )
    0x000019C0 7589 3  XPCOM R: ( (dsIProperties*)1856FAC0 )->Count( *0018EC28 = 0x00000005 ) = 0x00000000
    0x000019C0 7590 3  XPCOM C: ( (dsIProperties*)1856F460 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 7590 3  XPCOM R: ( (dsIProperties*)1856F460 )->getProperty( 0x00000000, *0018EC08 = 17132DC0 ) = 0x00000000
    0x000019C0 7590 3  XPCOM C: ( (dsIProperty*)17132DC0 )->getPropertyType( 0018EB88 )
    0x000019C0 7590 3  XPCOM R: ( (dsIProperty*)17132DC0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7590 3  XPCOM C: ( (dsIProperty*)17132DC0 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7590 3  XPCOM R: ( (dsIProperty*)17132DC0 )->queryInterface( 125E2F08, *0018EB88 = 17132E2C ) = 0x00000000
    0x000019C0 7590 3  XPCOM C: ( (dsIGroup*)17132E2C )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7590 3  XPCOM R: ( (dsIGroup*)17132E2C )->queryInterface( 125E2F08, *0018EB88 = 17132E2C ) = 0x00000000
    0x000019C0 7590 3  XPCOM C: ( (dsIGroup*)17132E2C )->getChildren( 0018EBC8 )
    0x000019C0 7590 3  XPCOM R: ( (dsIGroup*)17132E2C )->getChildren( *0018EBC8 = 1856F8B0 ) = 0x00000000
    0x000019C0 7590 3  XPCOM C: ( (dsIProperties*)1856F8B0 )->Count( 0018EBE8 )
    0x000019C0 7590 3  XPCOM R: ( (dsIProperties*)1856F8B0 )->Count( *0018EBE8 = 0x00000005 ) = 0x00000000
    0x000019C0 7590 3  XPCOM C: ( (dsIProperties*)1856F8B0 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 7590 3  XPCOM R: ( (dsIProperties*)1856F8B0 )->getProperty( 0x00000000, *0018EBC8 = 170E7DF0 ) = 0x00000000
    0x000019C0 7590 3  XPCOM C: ( (dsIProperty*)170E7DF0 )->getPropertyType( 0018EB48 )
    0x000019C0 7590 3  XPCOM R: ( (dsIProperty*)170E7DF0 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7590 3  XPCOM C: ( (dsIProperty*)170E7DF0 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7590 3  XPCOM R: ( (dsIProperty*)170E7DF0 )->queryInterface( 125E2E90, *0018EB48 = 170E7E5C ) = 0x00000000
    0x000019C0 7590 3  XPCOM C: ( (dsIBooleanProperty*)170E7E5C )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7590 3  XPCOM R: ( (dsIBooleanProperty*)170E7E5C )->queryInterface( 125E2E90, *0018EB48 = 170E7E5C ) = 0x00000000
    0x000019C0 7590 3  XPCOM C: ( (dsIBooleanProperty*)170E7E5C )->Name( 0018EBB8 )
    0x000019C0 7590 3  XPCOM R: ( (dsIBooleanProperty*)170E7E5C )->Name( *0018EBB8 = Disable all breakpoints when loading a different program ) = 0x00000000
    0x000019C0 7590 3  XPCOM C: ( (dsIProperties*)1856F8B0 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 7590 3  XPCOM R: ( (dsIProperties*)1856F8B0 )->getProperty( 0x00000000, *0018EBC8 = 170E7DF0 ) = 0x00000000
    0x000019C0 7590 3  XPCOM C: ( (dsIProperty*)170E7DF0 )->getPropertyType( 0018EB48 )
    0x000019C0 7590 3  XPCOM R: ( (dsIProperty*)170E7DF0 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7590 3  XPCOM C: ( (dsIProperty*)170E7DF0 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7590 3  XPCOM R: ( (dsIProperty*)170E7DF0 )->queryInterface( 125E2E90, *0018EB48 = 170E7E5C ) = 0x00000000
    0x000019C0 7590 3  XPCOM C: ( (dsIBooleanProperty*)170E7E5C )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7590 3  XPCOM R: ( (dsIBooleanProperty*)170E7E5C )->queryInterface( 125E2E90, *0018EB48 = 170E7E5C ) = 0x00000000
    0x000019C0 7590 3  XPCOM C: ( (dsIProperties*)1856F8B0 )->Count( 0018EBE8 )
    0x000019C0 7590 3  XPCOM R: ( (dsIProperties*)1856F8B0 )->Count( *0018EBE8 = 0x00000005 ) = 0x00000000
    0x000019C0 7590 3  XPCOM C: ( (dsIProperties*)1856F8B0 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 7590 3  XPCOM R: ( (dsIProperties*)1856F8B0 )->getProperty( 0x00000001, *0018EBC8 = 170E7E78 ) = 0x00000000
    0x000019C0 7590 3  XPCOM C: ( (dsIProperty*)170E7E78 )->getPropertyType( 0018EB48 )
    0x000019C0 7590 3  XPCOM R: ( (dsIProperty*)170E7E78 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7590 3  XPCOM C: ( (dsIProperty*)170E7E78 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7590 3  XPCOM R: ( (dsIProperty*)170E7E78 )->queryInterface( 125E2E90, *0018EB48 = 170E7EE4 ) = 0x00000000
    0x000019C0 7590 3  XPCOM C: ( (dsIBooleanProperty*)170E7EE4 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7590 3  XPCOM R: ( (dsIBooleanProperty*)170E7EE4 )->queryInterface( 125E2E90, *0018EB48 = 170E7EE4 ) = 0x00000000
    0x000019C0 7590 3  XPCOM C: ( (dsIBooleanProperty*)170E7EE4 )->Name( 0018EBB8 )
    0x000019C0 7590 3  XPCOM R: ( (dsIBooleanProperty*)170E7EE4 )->Name( *0018EBB8 = Halt at program termination (requires setting a breakpoint) ) = 0x00000000
    0x000019C0 7590 3  XPCOM C: ( (dsIProperties*)1856F8B0 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 7590 3  XPCOM R: ( (dsIProperties*)1856F8B0 )->getProperty( 0x00000001, *0018EBC8 = 170E7E78 ) = 0x00000000
    0x000019C0 7591 3  XPCOM C: ( (dsIProperty*)170E7E78 )->getPropertyType( 0018EB48 )
    0x000019C0 7591 3  XPCOM R: ( (dsIProperty*)170E7E78 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7591 3  XPCOM C: ( (dsIProperty*)170E7E78 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7591 3  XPCOM R: ( (dsIProperty*)170E7E78 )->queryInterface( 125E2E90, *0018EB48 = 170E7EE4 ) = 0x00000000
    0x000019C0 7591 3  XPCOM C: ( (dsIBooleanProperty*)170E7EE4 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7591 3  XPCOM R: ( (dsIBooleanProperty*)170E7EE4 )->queryInterface( 125E2E90, *0018EB48 = 170E7EE4 ) = 0x00000000
    0x000019C0 7591 3  XPCOM C: ( (dsIProperties*)1856F8B0 )->Count( 0018EBE8 )
    0x000019C0 7591 3  XPCOM R: ( (dsIProperties*)1856F8B0 )->Count( *0018EBE8 = 0x00000005 ) = 0x00000000
    0x000019C0 7591 3  XPCOM C: ( (dsIProperties*)1856F8B0 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 7591 3  XPCOM R: ( (dsIProperties*)1856F8B0 )->getProperty( 0x00000002, *0018EBC8 = 1702F758 ) = 0x00000000
    0x000019C0 7591 3  XPCOM C: ( (dsIProperty*)1702F758 )->getPropertyType( 0018EB48 )
    0x000019C0 7591 3  XPCOM R: ( (dsIProperty*)1702F758 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7591 3  XPCOM C: ( (dsIProperty*)1702F758 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7591 3  XPCOM R: ( (dsIProperty*)1702F758 )->queryInterface( 125E2E90, *0018EB48 = 1702F7C4 ) = 0x00000000
    0x000019C0 7591 3  XPCOM C: ( (dsIBooleanProperty*)1702F7C4 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7591 3  XPCOM R: ( (dsIBooleanProperty*)1702F7C4 )->queryInterface( 125E2E90, *0018EB48 = 1702F7C4 ) = 0x00000000
    0x000019C0 7591 3  XPCOM C: ( (dsIBooleanProperty*)1702F7C4 )->Name( 0018EBB8 )
    0x000019C0 7591 3  XPCOM R: ( (dsIBooleanProperty*)1702F7C4 )->Name( *0018EBB8 = Enable CIO function use (requires setting a breakpoint) ) = 0x00000000
    0x000019C0 7591 3  XPCOM C: ( (dsIProperties*)1856F8B0 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 7591 3  XPCOM R: ( (dsIProperties*)1856F8B0 )->getProperty( 0x00000002, *0018EBC8 = 1702F758 ) = 0x00000000
    0x000019C0 7591 3  XPCOM C: ( (dsIProperty*)1702F758 )->getPropertyType( 0018EB48 )
    0x000019C0 7591 3  XPCOM R: ( (dsIProperty*)1702F758 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7591 3  XPCOM C: ( (dsIProperty*)1702F758 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7591 3  XPCOM R: ( (dsIProperty*)1702F758 )->queryInterface( 125E2E90, *0018EB48 = 1702F7C4 ) = 0x00000000
    0x000019C0 7591 3  XPCOM C: ( (dsIBooleanProperty*)1702F7C4 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7591 3  XPCOM R: ( (dsIBooleanProperty*)1702F7C4 )->queryInterface( 125E2E90, *0018EB48 = 1702F7C4 ) = 0x00000000
    0x000019C0 7591 3  XPCOM C: ( (dsIProperties*)1856F8B0 )->Count( 0018EBE8 )
    0x000019C0 7591 3  XPCOM R: ( (dsIProperties*)1856F8B0 )->Count( *0018EBE8 = 0x00000005 ) = 0x00000000
    0x000019C0 7591 3  XPCOM C: ( (dsIProperties*)1856F8B0 )->getProperty( 0x00000003, 0018EBC8 )
    0x000019C0 7591 3  XPCOM R: ( (dsIProperties*)1856F8B0 )->getProperty( 0x00000003, *0018EBC8 = 1702F7E0 ) = 0x00000000
    0x000019C0 7591 3  XPCOM C: ( (dsIProperty*)1702F7E0 )->getPropertyType( 0018EB48 )
    0x000019C0 7591 3  XPCOM R: ( (dsIProperty*)1702F7E0 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7591 3  XPCOM C: ( (dsIProperty*)1702F7E0 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7591 3  XPCOM R: ( (dsIProperty*)1702F7E0 )->queryInterface( 125E2E90, *0018EB48 = 1702F84C ) = 0x00000000
    0x000019C0 7591 3  XPCOM C: ( (dsIBooleanProperty*)1702F84C )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7591 3  XPCOM R: ( (dsIBooleanProperty*)1702F84C )->queryInterface( 125E2E90, *0018EB48 = 1702F84C ) = 0x00000000
    0x000019C0 7591 3  XPCOM C: ( (dsIBooleanProperty*)1702F84C )->Name( 0018EBB8 )
    0x000019C0 7591 3  XPCOM R: ( (dsIBooleanProperty*)1702F84C )->Name( *0018EBB8 = Enable Semihosting (requires setting a breakpoint at SVC_Handler ) ) = 0x00000000
    0x000019C0 7591 3  XPCOM C: ( (dsIProperties*)1856F8B0 )->getProperty( 0x00000003, 0018EBC8 )
    0x000019C0 7591 3  XPCOM R: ( (dsIProperties*)1856F8B0 )->getProperty( 0x00000003, *0018EBC8 = 1702F7E0 ) = 0x00000000
    0x000019C0 7592 3  XPCOM C: ( (dsIProperty*)1702F7E0 )->getPropertyType( 0018EB48 )
    0x000019C0 7592 3  XPCOM R: ( (dsIProperty*)1702F7E0 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7592 3  XPCOM C: ( (dsIProperty*)1702F7E0 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7592 3  XPCOM R: ( (dsIProperty*)1702F7E0 )->queryInterface( 125E2E90, *0018EB48 = 1702F84C ) = 0x00000000
    0x000019C0 7592 3  XPCOM C: ( (dsIBooleanProperty*)1702F84C )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7592 3  XPCOM R: ( (dsIBooleanProperty*)1702F84C )->queryInterface( 125E2E90, *0018EB48 = 1702F84C ) = 0x00000000
    0x000019C0 7592 3  XPCOM C: ( (dsIProperties*)1856F8B0 )->Count( 0018EBE8 )
    0x000019C0 7592 3  XPCOM R: ( (dsIProperties*)1856F8B0 )->Count( *0018EBE8 = 0x00000005 ) = 0x00000000
    0x000019C0 7592 3  XPCOM C: ( (dsIProperties*)1856F8B0 )->getProperty( 0x00000004, 0018EBC8 )
    0x000019C0 7592 3  XPCOM R: ( (dsIProperties*)1856F8B0 )->getProperty( 0x00000004, *0018EBC8 = 124124E0 ) = 0x00000000
    0x000019C0 7592 3  XPCOM C: ( (dsIProperty*)124124E0 )->getPropertyType( 0018EB48 )
    0x000019C0 7592 3  XPCOM R: ( (dsIProperty*)124124E0 )->getPropertyType( *0018EB48 = 0x00000003 ) = 0x00000000
    0x000019C0 7592 3  XPCOM C: ( (dsIProperty*)124124E0 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7592 3  XPCOM R: ( (dsIProperty*)124124E0 )->queryInterface( 125E2E90, *0018EB48 = 12412584 ) = 0x00000000
    0x000019C0 7592 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7592 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 125E2E90, *0018EB48 = 1241254C ) = 0x00000000
    0x000019C0 7592 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7592 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 125E2E90, *0018EB48 = 12412584 ) = 0x00000000
    0x000019C0 7592 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->Name( 0018EBB8 )
    0x000019C0 7592 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->Name( *0018EBB8 = Verification Options ) = 0x00000000
    0x000019C0 7592 3  XPCOM C: ( (dsIProperties*)1856F8B0 )->getProperty( 0x00000004, 0018EBC8 )
    0x000019C0 7592 3  XPCOM R: ( (dsIProperties*)1856F8B0 )->getProperty( 0x00000004, *0018EBC8 = 124124E0 ) = 0x00000000
    0x000019C0 7592 3  XPCOM C: ( (dsIProperty*)124124E0 )->getPropertyType( 0018EB48 )
    0x000019C0 7592 3  XPCOM R: ( (dsIProperty*)124124E0 )->getPropertyType( *0018EB48 = 0x00000003 ) = 0x00000000
    0x000019C0 7592 3  XPCOM C: ( (dsIProperty*)124124E0 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7592 3  XPCOM R: ( (dsIProperty*)124124E0 )->queryInterface( 125E2E90, *0018EB48 = 12412584 ) = 0x00000000
    0x000019C0 7592 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7592 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 125E2E90, *0018EB48 = 1241254C ) = 0x00000000
    0x000019C0 7592 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7592 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 125E2E90, *0018EB48 = 12412584 ) = 0x00000000
    0x000019C0 7592 3  XPCOM C: ( (dsIProperties*)1856F8B0 )->Count( 0018EBE8 )
    0x000019C0 7592 3  XPCOM R: ( (dsIProperties*)1856F8B0 )->Count( *0018EBE8 = 0x00000005 ) = 0x00000000
    0x000019C0 7592 3  XPCOM C: ( (dsIProperties*)1856F460 )->Count( 0018EC28 )
    0x000019C0 7592 3  XPCOM R: ( (dsIProperties*)1856F460 )->Count( *0018EC28 = 0x00000005 ) = 0x00000000
    0x000019C0 7592 3  XPCOM C: ( (dsIProperties*)1856F460 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 7592 3  XPCOM R: ( (dsIProperties*)1856F460 )->getProperty( 0x00000001, *0018EC08 = 17133068 ) = 0x00000000
    0x000019C0 7592 3  XPCOM C: ( (dsIProperty*)17133068 )->getPropertyType( 0018EB88 )
    0x000019C0 7592 3  XPCOM R: ( (dsIProperty*)17133068 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7592 3  XPCOM C: ( (dsIProperty*)17133068 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7592 3  XPCOM R: ( (dsIProperty*)17133068 )->queryInterface( 125E2E90, *0018EB88 = 171330D4 ) = 0x00000000
    0x000019C0 7592 3  XPCOM C: ( (dsIGroup*)171330D4 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7592 3  XPCOM R: ( (dsIGroup*)171330D4 )->queryInterface( 125E2E90, *0018EB88 = 171330D4 ) = 0x00000000
    0x000019C0 7592 3  XPCOM C: ( (dsIGroup*)171330D4 )->Name( 0018EBF8 )
    0x000019C0 7593 3  XPCOM R: ( (dsIGroup*)171330D4 )->Name( *0018EBF8 = Connection Options ) = 0x00000000
    0x000019C0 7593 3  XPCOM C: ( (dsIProperties*)1856F460 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 7593 3  XPCOM R: ( (dsIProperties*)1856F460 )->getProperty( 0x00000001, *0018EC08 = 17133068 ) = 0x00000000
    0x000019C0 7593 3  XPCOM C: ( (dsIProperty*)17133068 )->getPropertyType( 0018EB88 )
    0x000019C0 7593 3  XPCOM R: ( (dsIProperty*)17133068 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7593 3  XPCOM C: ( (dsIProperty*)17133068 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7593 3  XPCOM R: ( (dsIProperty*)17133068 )->queryInterface( 125E2E90, *0018EB88 = 171330D4 ) = 0x00000000
    0x000019C0 7593 3  XPCOM C: ( (dsIGroup*)171330D4 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7593 3  XPCOM R: ( (dsIGroup*)171330D4 )->queryInterface( 125E2E90, *0018EB88 = 171330D4 ) = 0x00000000
    0x000019C0 7593 3  XPCOM C: ( (dsIGroup*)171330D4 )->getChildren( 0018EBC8 )
    0x000019C0 7593 3  XPCOM R: ( (dsIGroup*)171330D4 )->getChildren( *0018EBC8 = 1856FAF0 ) = 0x00000000
    0x000019C0 7593 3  XPCOM C: ( (dsIProperties*)1856F460 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 7593 3  XPCOM R: ( (dsIProperties*)1856F460 )->getProperty( 0x00000001, *0018EC08 = 17133068 ) = 0x00000000
    0x000019C0 7593 3  XPCOM C: ( (dsIProperty*)17133068 )->getPropertyType( 0018EB88 )
    0x000019C0 7593 3  XPCOM R: ( (dsIProperty*)17133068 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7593 3  XPCOM C: ( (dsIProperty*)17133068 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7593 3  XPCOM R: ( (dsIProperty*)17133068 )->queryInterface( 125E2E90, *0018EB88 = 171330D4 ) = 0x00000000
    0x000019C0 7593 3  XPCOM C: ( (dsIGroup*)171330D4 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7593 3  XPCOM R: ( (dsIGroup*)171330D4 )->queryInterface( 125E2E90, *0018EB88 = 171330D4 ) = 0x00000000
    0x000019C0 7593 3  XPCOM C: ( (dsIGroup*)171330D4 )->getChildren( 0018EBC8 )
    0x000019C0 7593 3  XPCOM R: ( (dsIGroup*)171330D4 )->getChildren( *0018EBC8 = 1856EFE0 ) = 0x00000000
    0x000019C0 7593 3  XPCOM C: ( (dsIProperties*)1856EFE0 )->Count( 0018EC28 )
    0x000019C0 7593 3  XPCOM R: ( (dsIProperties*)1856EFE0 )->Count( *0018EC28 = 0x00000003 ) = 0x00000000
    0x000019C0 7593 3  XPCOM C: ( (dsIProperties*)1856F460 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 7593 3  XPCOM R: ( (dsIProperties*)1856F460 )->getProperty( 0x00000001, *0018EC08 = 17133068 ) = 0x00000000
    0x000019C0 7593 3  XPCOM C: ( (dsIProperty*)17133068 )->getPropertyType( 0018EB88 )
    0x000019C0 7593 3  XPCOM R: ( (dsIProperty*)17133068 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7593 3  XPCOM C: ( (dsIProperty*)17133068 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7593 3  XPCOM R: ( (dsIProperty*)17133068 )->queryInterface( 125E2E90, *0018EB88 = 171330D4 ) = 0x00000000
    0x000019C0 7593 3  XPCOM C: ( (dsIGroup*)171330D4 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7593 3  XPCOM R: ( (dsIGroup*)171330D4 )->queryInterface( 125E2E90, *0018EB88 = 171330D4 ) = 0x00000000
    0x000019C0 7593 3  XPCOM C: ( (dsIGroup*)171330D4 )->getChildren( 0018EBC8 )
    0x000019C0 7593 3  XPCOM R: ( (dsIGroup*)171330D4 )->getChildren( *0018EBC8 = 1856F040 ) = 0x00000000
    0x000019C0 7593 3  XPCOM C: ( (dsIProperties*)1856F040 )->Count( 0018EBE8 )
    0x000019C0 7593 3  XPCOM R: ( (dsIProperties*)1856F040 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7593 3  XPCOM C: ( (dsIProperties*)1856F040 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 7593 3  XPCOM R: ( (dsIProperties*)1856F040 )->getProperty( 0x00000000, *0018EBC8 = 16F52030 ) = 0x00000000
    0x000019C0 7593 3  XPCOM C: ( (dsIProperty*)16F52030 )->getPropertyType( 0018EB48 )
    0x000019C0 7593 3  XPCOM R: ( (dsIProperty*)16F52030 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7593 3  XPCOM C: ( (dsIProperty*)16F52030 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7593 3  XPCOM R: ( (dsIProperty*)16F52030 )->queryInterface( 125E2E90, *0018EB48 = 16F5209C ) = 0x00000000
    0x000019C0 7594 3  XPCOM C: ( (dsIBooleanProperty*)16F5209C )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7594 3  XPCOM R: ( (dsIBooleanProperty*)16F5209C )->queryInterface( 125E2E90, *0018EB48 = 16F5209C ) = 0x00000000
    0x000019C0 7594 3  XPCOM C: ( (dsIBooleanProperty*)16F5209C )->Name( 0018EBB8 )
    0x000019C0 7594 3  XPCOM R: ( (dsIBooleanProperty*)16F5209C )->Name( *0018EBB8 = Halt the target on a connect ) = 0x00000000
    0x000019C0 7594 3  XPCOM C: ( (dsIProperties*)1856F040 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 7594 3  XPCOM R: ( (dsIProperties*)1856F040 )->getProperty( 0x00000000, *0018EBC8 = 16F52030 ) = 0x00000000
    0x000019C0 7594 3  XPCOM C: ( (dsIProperty*)16F52030 )->getPropertyType( 0018EB48 )
    0x000019C0 7594 3  XPCOM R: ( (dsIProperty*)16F52030 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7594 3  XPCOM C: ( (dsIProperty*)16F52030 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7594 3  XPCOM R: ( (dsIProperty*)16F52030 )->queryInterface( 125E2E90, *0018EB48 = 16F5209C ) = 0x00000000
    0x000019C0 7594 3  XPCOM C: ( (dsIBooleanProperty*)16F5209C )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7594 3  XPCOM R: ( (dsIBooleanProperty*)16F5209C )->queryInterface( 125E2E90, *0018EB48 = 16F5209C ) = 0x00000000
    0x000019C0 7594 3  XPCOM C: ( (dsIProperties*)1856F040 )->Count( 0018EBE8 )
    0x000019C0 7594 3  XPCOM R: ( (dsIProperties*)1856F040 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7594 3  XPCOM C: ( (dsIProperties*)1856F040 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 7594 3  XPCOM R: ( (dsIProperties*)1856F040 )->getProperty( 0x00000001, *0018EBC8 = 16F520B8 ) = 0x00000000
    0x000019C0 7594 3  XPCOM C: ( (dsIProperty*)16F520B8 )->getPropertyType( 0018EB48 )
    0x000019C0 7594 3  XPCOM R: ( (dsIProperty*)16F520B8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7594 3  XPCOM C: ( (dsIProperty*)16F520B8 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7594 3  XPCOM R: ( (dsIProperty*)16F520B8 )->queryInterface( 125E2E90, *0018EB48 = 16F52124 ) = 0x00000000
    0x000019C0 7594 3  XPCOM C: ( (dsIBooleanProperty*)16F52124 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7594 3  XPCOM R: ( (dsIBooleanProperty*)16F52124 )->queryInterface( 125E2E90, *0018EB48 = 16F52124 ) = 0x00000000
    0x000019C0 7594 3  XPCOM C: ( (dsIBooleanProperty*)16F52124 )->Name( 0018EBB8 )
    0x000019C0 7594 3  XPCOM R: ( (dsIBooleanProperty*)16F52124 )->Name( *0018EBB8 = Reset the target on a connect ) = 0x00000000
    0x000019C0 7594 3  XPCOM C: ( (dsIProperties*)1856F040 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 7594 3  XPCOM R: ( (dsIProperties*)1856F040 )->getProperty( 0x00000001, *0018EBC8 = 16F520B8 ) = 0x00000000
    0x000019C0 7594 3  XPCOM C: ( (dsIProperty*)16F520B8 )->getPropertyType( 0018EB48 )
    0x000019C0 7594 3  XPCOM R: ( (dsIProperty*)16F520B8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7594 3  XPCOM C: ( (dsIProperty*)16F520B8 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7594 3  XPCOM R: ( (dsIProperty*)16F520B8 )->queryInterface( 125E2E90, *0018EB48 = 16F52124 ) = 0x00000000
    0x000019C0 7594 3  XPCOM C: ( (dsIBooleanProperty*)16F52124 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7594 3  XPCOM R: ( (dsIBooleanProperty*)16F52124 )->queryInterface( 125E2E90, *0018EB48 = 16F52124 ) = 0x00000000
    0x000019C0 7594 3  XPCOM C: ( (dsIProperties*)1856F040 )->Count( 0018EBE8 )
    0x000019C0 7594 3  XPCOM R: ( (dsIProperties*)1856F040 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7594 3  XPCOM C: ( (dsIProperties*)1856F040 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 7594 3  XPCOM R: ( (dsIProperties*)1856F040 )->getProperty( 0x00000002, *0018EBC8 = 16F52250 ) = 0x00000000
    0x000019C0 7594 3  XPCOM C: ( (dsIProperty*)16F52250 )->getPropertyType( 0018EB48 )
    0x000019C0 7594 3  XPCOM R: ( (dsIProperty*)16F52250 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7594 3  XPCOM C: ( (dsIProperty*)16F52250 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7594 3  XPCOM R: ( (dsIProperty*)16F52250 )->queryInterface( 125E2E90, *0018EB48 = 16F522BC ) = 0x00000000
    0x000019C0 7594 3  XPCOM C: ( (dsIBooleanProperty*)16F522BC )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7594 3  XPCOM R: ( (dsIBooleanProperty*)16F522BC )->queryInterface( 125E2E90, *0018EB48 = 16F522BC ) = 0x00000000
    0x000019C0 7594 3  XPCOM C: ( (dsIBooleanProperty*)16F522BC )->Name( 0018EBB8 )
    0x000019C0 7594 3  XPCOM R: ( (dsIBooleanProperty*)16F522BC )->Name( *0018EBB8 = Auto connect if a child connects ) = 0x00000000
    0x000019C0 7595 3  XPCOM C: ( (dsIProperties*)1856F040 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 7595 3  XPCOM R: ( (dsIProperties*)1856F040 )->getProperty( 0x00000002, *0018EBC8 = 16F52250 ) = 0x00000000
    0x000019C0 7595 3  XPCOM C: ( (dsIProperty*)16F52250 )->getPropertyType( 0018EB48 )
    0x000019C0 7595 3  XPCOM R: ( (dsIProperty*)16F52250 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7595 3  XPCOM C: ( (dsIProperty*)16F52250 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7595 3  XPCOM R: ( (dsIProperty*)16F52250 )->queryInterface( 125E2E90, *0018EB48 = 16F522BC ) = 0x00000000
    0x000019C0 7595 3  XPCOM C: ( (dsIBooleanProperty*)16F522BC )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7595 3  XPCOM R: ( (dsIBooleanProperty*)16F522BC )->queryInterface( 125E2E90, *0018EB48 = 16F522BC ) = 0x00000000
    0x000019C0 7595 3  XPCOM C: ( (dsIProperties*)1856F040 )->Count( 0018EBE8 )
    0x000019C0 7595 3  XPCOM R: ( (dsIProperties*)1856F040 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7595 3  XPCOM C: ( (dsIProperties*)1856F460 )->Count( 0018EC28 )
    0x000019C0 7595 3  XPCOM R: ( (dsIProperties*)1856F460 )->Count( *0018EC28 = 0x00000005 ) = 0x00000000
    0x000019C0 7595 3  XPCOM C: ( (dsIProperties*)1856F460 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 7595 3  XPCOM R: ( (dsIProperties*)1856F460 )->getProperty( 0x00000002, *0018EC08 = 170E7D68 ) = 0x00000000
    0x000019C0 7595 3  XPCOM C: ( (dsIProperty*)170E7D68 )->getPropertyType( 0018EB88 )
    0x000019C0 7595 3  XPCOM R: ( (dsIProperty*)170E7D68 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7595 3  XPCOM C: ( (dsIProperty*)170E7D68 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7595 3  XPCOM R: ( (dsIProperty*)170E7D68 )->queryInterface( 125E2E90, *0018EB88 = 170E7DD4 ) = 0x00000000
    0x000019C0 7595 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7595 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->queryInterface( 125E2E90, *0018EB88 = 170E7DD4 ) = 0x00000000
    0x000019C0 7595 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->Name( 0018EBF8 )
    0x000019C0 7595 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->Name( *0018EBF8 = Disable interrupts ) = 0x00000000
    0x000019C0 7595 3  XPCOM C: ( (dsIProperties*)1856F460 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 7595 3  XPCOM R: ( (dsIProperties*)1856F460 )->getProperty( 0x00000002, *0018EC08 = 170E7D68 ) = 0x00000000
    0x000019C0 7595 3  XPCOM C: ( (dsIProperty*)170E7D68 )->getPropertyType( 0018EB88 )
    0x000019C0 7595 3  XPCOM R: ( (dsIProperty*)170E7D68 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7595 3  XPCOM C: ( (dsIProperty*)170E7D68 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7595 3  XPCOM R: ( (dsIProperty*)170E7D68 )->queryInterface( 125E2E90, *0018EB88 = 170E7DD4 ) = 0x00000000
    0x000019C0 7595 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7595 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->queryInterface( 125E2E90, *0018EB88 = 170E7DD4 ) = 0x00000000
    0x000019C0 7595 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->getChildren( 0018EBC8 )
    0x000019C0 7595 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->getChildren( *0018EBC8 = 1856F4C0 ) = 0x00000000
    0x000019C0 7595 3  XPCOM C: ( (dsIProperties*)1856F460 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 7595 3  XPCOM R: ( (dsIProperties*)1856F460 )->getProperty( 0x00000002, *0018EC08 = 170E7D68 ) = 0x00000000
    0x000019C0 7595 3  XPCOM C: ( (dsIProperty*)170E7D68 )->getPropertyType( 0018EB88 )
    0x000019C0 7595 3  XPCOM R: ( (dsIProperty*)170E7D68 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7595 3  XPCOM C: ( (dsIProperty*)170E7D68 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7595 3  XPCOM R: ( (dsIProperty*)170E7D68 )->queryInterface( 125E2E90, *0018EB88 = 170E7DD4 ) = 0x00000000
    0x000019C0 7595 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7595 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->queryInterface( 125E2E90, *0018EB88 = 170E7DD4 ) = 0x00000000
    0x000019C0 7595 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->getChildren( 0018EBC8 )
    0x000019C0 7595 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->getChildren( *0018EBC8 = 1856FE20 ) = 0x00000000
    0x000019C0 7596 3  XPCOM C: ( (dsIProperties*)1856FE20 )->Count( 0018EC28 )
    0x000019C0 7596 3  XPCOM R: ( (dsIProperties*)1856FE20 )->Count( *0018EC28 = 0x00000003 ) = 0x00000000
    0x000019C0 7596 3  XPCOM C: ( (dsIProperties*)1856F460 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 7596 3  XPCOM R: ( (dsIProperties*)1856F460 )->getProperty( 0x00000002, *0018EC08 = 170E7D68 ) = 0x00000000
    0x000019C0 7596 3  XPCOM C: ( (dsIProperty*)170E7D68 )->getPropertyType( 0018EB88 )
    0x000019C0 7596 3  XPCOM R: ( (dsIProperty*)170E7D68 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7596 3  XPCOM C: ( (dsIProperty*)170E7D68 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7596 3  XPCOM R: ( (dsIProperty*)170E7D68 )->queryInterface( 125E2E90, *0018EB88 = 170E7DD4 ) = 0x00000000
    0x000019C0 7596 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7596 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->queryInterface( 125E2E90, *0018EB88 = 170E7DD4 ) = 0x00000000
    0x000019C0 7596 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->getChildren( 0018EBC8 )
    0x000019C0 7596 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->getChildren( *0018EBC8 = 1856FA60 ) = 0x00000000
    0x000019C0 7596 3  XPCOM C: ( (dsIProperties*)1856FA60 )->Count( 0018EBE8 )
    0x000019C0 7596 3  XPCOM R: ( (dsIProperties*)1856FA60 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7596 3  XPCOM C: ( (dsIProperties*)1856FA60 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 7596 3  XPCOM R: ( (dsIProperties*)1856FA60 )->getProperty( 0x00000000, *0018EBC8 = 16F522D8 ) = 0x00000000
    0x000019C0 7596 3  XPCOM C: ( (dsIProperty*)16F522D8 )->getPropertyType( 0018EB48 )
    0x000019C0 7596 3  XPCOM R: ( (dsIProperty*)16F522D8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7596 3  XPCOM C: ( (dsIProperty*)16F522D8 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7596 3  XPCOM R: ( (dsIProperty*)16F522D8 )->queryInterface( 125E2E90, *0018EB48 = 16F52344 ) = 0x00000000
    0x000019C0 7596 3  XPCOM C: ( (dsIBooleanProperty*)16F52344 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7596 3  XPCOM R: ( (dsIBooleanProperty*)16F52344 )->queryInterface( 125E2E90, *0018EB48 = 16F52344 ) = 0x00000000
    0x000019C0 7596 3  XPCOM C: ( (dsIBooleanProperty*)16F52344 )->Name( 0018EBB8 )
    0x000019C0 7596 3  XPCOM R: ( (dsIBooleanProperty*)16F52344 )->Name( *0018EBB8 = When assembly stepping ) = 0x00000000
    0x000019C0 7596 3  XPCOM C: ( (dsIProperties*)1856FA60 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 7596 3  XPCOM R: ( (dsIProperties*)1856FA60 )->getProperty( 0x00000000, *0018EBC8 = 16F522D8 ) = 0x00000000
    0x000019C0 7596 3  XPCOM C: ( (dsIProperty*)16F522D8 )->getPropertyType( 0018EB48 )
    0x000019C0 7596 3  XPCOM R: ( (dsIProperty*)16F522D8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7596 3  XPCOM C: ( (dsIProperty*)16F522D8 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7596 3  XPCOM R: ( (dsIProperty*)16F522D8 )->queryInterface( 125E2E90, *0018EB48 = 16F52344 ) = 0x00000000
    0x000019C0 7596 3  XPCOM C: ( (dsIBooleanProperty*)16F52344 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7596 3  XPCOM R: ( (dsIBooleanProperty*)16F52344 )->queryInterface( 125E2E90, *0018EB48 = 16F52344 ) = 0x00000000
    0x000019C0 7596 3  XPCOM C: ( (dsIProperties*)1856FA60 )->Count( 0018EBE8 )
    0x000019C0 7596 3  XPCOM R: ( (dsIProperties*)1856FA60 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7596 3  XPCOM C: ( (dsIProperties*)1856FA60 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 7596 3  XPCOM R: ( (dsIProperties*)1856FA60 )->getProperty( 0x00000001, *0018EBC8 = 16F52360 ) = 0x00000000
    0x000019C0 7596 3  XPCOM C: ( (dsIProperty*)16F52360 )->getPropertyType( 0018EB48 )
    0x000019C0 7596 3  XPCOM R: ( (dsIProperty*)16F52360 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7596 3  XPCOM C: ( (dsIProperty*)16F52360 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7596 3  XPCOM R: ( (dsIProperty*)16F52360 )->queryInterface( 125E2E90, *0018EB48 = 16F523CC ) = 0x00000000
    0x000019C0 7596 3  XPCOM C: ( (dsIBooleanProperty*)16F523CC )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7596 3  XPCOM R: ( (dsIBooleanProperty*)16F523CC )->queryInterface( 125E2E90, *0018EB48 = 16F523CC ) = 0x00000000
    0x000019C0 7596 3  XPCOM C: ( (dsIBooleanProperty*)16F523CC )->Name( 0018EBB8 )
    0x000019C0 7596 3  XPCOM R: ( (dsIBooleanProperty*)16F523CC )->Name( *0018EBB8 = When source stepping ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIProperties*)1856FA60 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 7597 3  XPCOM R: ( (dsIProperties*)1856FA60 )->getProperty( 0x00000001, *0018EBC8 = 16F52360 ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIProperty*)16F52360 )->getPropertyType( 0018EB48 )
    0x000019C0 7597 3  XPCOM R: ( (dsIProperty*)16F52360 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIProperty*)16F52360 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7597 3  XPCOM R: ( (dsIProperty*)16F52360 )->queryInterface( 125E2E90, *0018EB48 = 16F523CC ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIBooleanProperty*)16F523CC )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7597 3  XPCOM R: ( (dsIBooleanProperty*)16F523CC )->queryInterface( 125E2E90, *0018EB48 = 16F523CC ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIProperties*)1856FA60 )->Count( 0018EBE8 )
    0x000019C0 7597 3  XPCOM R: ( (dsIProperties*)1856FA60 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIProperties*)1856FA60 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 7597 3  XPCOM R: ( (dsIProperties*)1856FA60 )->getProperty( 0x00000002, *0018EBC8 = 16F523E8 ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIProperty*)16F523E8 )->getPropertyType( 0018EB48 )
    0x000019C0 7597 3  XPCOM R: ( (dsIProperty*)16F523E8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIProperty*)16F523E8 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7597 3  XPCOM R: ( (dsIProperty*)16F523E8 )->queryInterface( 125E2E90, *0018EB48 = 16F52454 ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIBooleanProperty*)16F52454 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7597 3  XPCOM R: ( (dsIBooleanProperty*)16F52454 )->queryInterface( 125E2E90, *0018EB48 = 16F52454 ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIBooleanProperty*)16F52454 )->Name( 0018EBB8 )
    0x000019C0 7597 3  XPCOM R: ( (dsIBooleanProperty*)16F52454 )->Name( *0018EBB8 = When running ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIProperties*)1856FA60 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 7597 3  XPCOM R: ( (dsIProperties*)1856FA60 )->getProperty( 0x00000002, *0018EBC8 = 16F523E8 ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIProperty*)16F523E8 )->getPropertyType( 0018EB48 )
    0x000019C0 7597 3  XPCOM R: ( (dsIProperty*)16F523E8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIProperty*)16F523E8 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7597 3  XPCOM R: ( (dsIProperty*)16F523E8 )->queryInterface( 125E2E90, *0018EB48 = 16F52454 ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIBooleanProperty*)16F52454 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7597 3  XPCOM R: ( (dsIBooleanProperty*)16F52454 )->queryInterface( 125E2E90, *0018EB48 = 16F52454 ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIProperties*)1856FA60 )->Count( 0018EBE8 )
    0x000019C0 7597 3  XPCOM R: ( (dsIProperties*)1856FA60 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIProperties*)1856F460 )->Count( 0018EC28 )
    0x000019C0 7597 3  XPCOM R: ( (dsIProperties*)1856F460 )->Count( *0018EC28 = 0x00000005 ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIProperties*)1856F460 )->getProperty( 0x00000003, 0018EC08 )
    0x000019C0 7597 3  XPCOM R: ( (dsIProperties*)1856F460 )->getProperty( 0x00000003, *0018EC08 = 1702F978 ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIProperty*)1702F978 )->getPropertyType( 0018EB88 )
    0x000019C0 7597 3  XPCOM R: ( (dsIProperty*)1702F978 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIProperty*)1702F978 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7597 3  XPCOM R: ( (dsIProperty*)1702F978 )->queryInterface( 125E2E90, *0018EB88 = 1702F9E4 ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIBooleanProperty*)1702F9E4 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7597 3  XPCOM R: ( (dsIBooleanProperty*)1702F9E4 )->queryInterface( 125E2E90, *0018EB88 = 1702F9E4 ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIBooleanProperty*)1702F9E4 )->Name( 0018EBF8 )
    0x000019C0 7597 3  XPCOM R: ( (dsIBooleanProperty*)1702F9E4 )->Name( *0018EBF8 = Reset the target on a program load or restart ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIProperties*)1856F460 )->getProperty( 0x00000003, 0018EC08 )
    0x000019C0 7597 3  XPCOM R: ( (dsIProperties*)1856F460 )->getProperty( 0x00000003, *0018EC08 = 1702F978 ) = 0x00000000
    0x000019C0 7597 3  XPCOM C: ( (dsIProperty*)1702F978 )->getPropertyType( 0018EB88 )
    0x000019C0 7598 3  XPCOM R: ( (dsIProperty*)1702F978 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 7598 3  XPCOM C: ( (dsIProperty*)1702F978 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7598 3  XPCOM R: ( (dsIProperty*)1702F978 )->queryInterface( 125E2E90, *0018EB88 = 1702F9E4 ) = 0x00000000
    0x000019C0 7598 3  XPCOM C: ( (dsIBooleanProperty*)1702F9E4 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7598 3  XPCOM R: ( (dsIBooleanProperty*)1702F9E4 )->queryInterface( 125E2E90, *0018EB88 = 1702F9E4 ) = 0x00000000
    0x000019C0 7598 3  XPCOM C: ( (dsIProperties*)1856F460 )->Count( 0018EC28 )
    0x000019C0 7598 3  XPCOM R: ( (dsIProperties*)1856F460 )->Count( *0018EC28 = 0x00000005 ) = 0x00000000
    0x000019C0 7598 3  XPCOM C: ( (dsIProperties*)1856F460 )->getProperty( 0x00000004, 0018EC08 )
    0x000019C0 7598 3  XPCOM R: ( (dsIProperties*)1856F460 )->getProperty( 0x00000004, *0018EC08 = 1702FA00 ) = 0x00000000
    0x000019C0 7598 3  XPCOM C: ( (dsIProperty*)1702FA00 )->getPropertyType( 0018EB88 )
    0x000019C0 7598 3  XPCOM R: ( (dsIProperty*)1702FA00 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 7598 3  XPCOM C: ( (dsIProperty*)1702FA00 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7598 3  XPCOM R: ( (dsIProperty*)1702FA00 )->queryInterface( 125E2E90, *0018EB88 = 1702FA6C ) = 0x00000000
    0x000019C0 7598 3  XPCOM C: ( (dsIBooleanProperty*)1702FA6C )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7598 3  XPCOM R: ( (dsIBooleanProperty*)1702FA6C )->queryInterface( 125E2E90, *0018EB88 = 1702FA6C ) = 0x00000000
    0x000019C0 7598 3  XPCOM C: ( (dsIBooleanProperty*)1702FA6C )->Name( 0018EBF8 )
    0x000019C0 7598 3  XPCOM R: ( (dsIBooleanProperty*)1702FA6C )->Name( *0018EBF8 = Restart the target on a symbol load as well as a program load ) = 0x00000000
    0x000019C0 7598 3  XPCOM C: ( (dsIProperties*)1856F460 )->getProperty( 0x00000004, 0018EC08 )
    0x000019C0 7598 3  XPCOM R: ( (dsIProperties*)1856F460 )->getProperty( 0x00000004, *0018EC08 = 1702FA00 ) = 0x00000000
    0x000019C0 7598 3  XPCOM C: ( (dsIProperty*)1702FA00 )->getPropertyType( 0018EB88 )
    0x000019C0 7598 3  XPCOM R: ( (dsIProperty*)1702FA00 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 7598 3  XPCOM C: ( (dsIProperty*)1702FA00 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7598 3  XPCOM R: ( (dsIProperty*)1702FA00 )->queryInterface( 125E2E90, *0018EB88 = 1702FA6C ) = 0x00000000
    0x000019C0 7598 3  XPCOM C: ( (dsIBooleanProperty*)1702FA6C )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7598 3  XPCOM R: ( (dsIBooleanProperty*)1702FA6C )->queryInterface( 125E2E90, *0018EB88 = 1702FA6C ) = 0x00000000
    0x000019C0 7598 3  XPCOM C: ( (dsIProperties*)1856F460 )->Count( 0018EC28 )
    0x000019C0 7598 3  XPCOM R: ( (dsIProperties*)1856F460 )->Count( *0018EC28 = 0x00000005 ) = 0x00000000
    0x000019C0 7598 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->Count( 0018EC68 )
    0x000019C0 7598 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->Count( *0018EC68 = 0x00000005 ) = 0x00000000
    0x000019C0 7598 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000001, 0018EC48 )
    0x000019C0 7598 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000001, *0018EC48 = 17020EA0 ) = 0x00000000
    0x000019C0 7598 3  XPCOM C: ( (dsIProperty*)17020EA0 )->getPropertyType( 0018EBC8 )
    0x000019C0 7598 3  XPCOM R: ( (dsIProperty*)17020EA0 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 7598 3  XPCOM C: ( (dsIProperty*)17020EA0 )->queryInterface( 125E2E90, 0018EBC8 )
    0x000019C0 7598 3  XPCOM R: ( (dsIProperty*)17020EA0 )->queryInterface( 125E2E90, *0018EBC8 = 17020F0C ) = 0x00000000
    0x000019C0 7598 3  XPCOM C: ( (dsINode*)17020F0C )->queryInterface( 125E2E90, 0018EBC8 )
    0x000019C0 7598 3  XPCOM R: ( (dsINode*)17020F0C )->queryInterface( 125E2E90, *0018EBC8 = 17020F0C ) = 0x00000000
    0x000019C0 7598 3  XPCOM C: ( (dsINode*)17020F0C )->Name( 0018EC38 )
    0x000019C0 7598 3  XPCOM R: ( (dsINode*)17020F0C )->Name( *0018EC38 = Auto Run and Launch Options ) = 0x00000000
    0x000019C0 7598 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000001, 0018EC48 )
    0x000019C0 7598 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000001, *0018EC48 = 17020EA0 ) = 0x00000000
    0x000019C0 7599 3  XPCOM C: ( (dsIProperty*)17020EA0 )->getPropertyType( 0018EBC8 )
    0x000019C0 7599 3  XPCOM R: ( (dsIProperty*)17020EA0 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 7599 3  XPCOM C: ( (dsIProperty*)17020EA0 )->queryInterface( 125E2E90, 0018EBC8 )
    0x000019C0 7599 3  XPCOM R: ( (dsIProperty*)17020EA0 )->queryInterface( 125E2E90, *0018EBC8 = 17020F0C ) = 0x00000000
    0x000019C0 7599 3  XPCOM C: ( (dsINode*)17020F0C )->queryInterface( 125E2E90, 0018EBC8 )
    0x000019C0 7599 3  XPCOM R: ( (dsINode*)17020F0C )->queryInterface( 125E2E90, *0018EBC8 = 17020F0C ) = 0x00000000
    0x000019C0 7599 3  XPCOM C: ( (dsINode*)17020F0C )->getChildren( 0018EC08 )
    0x000019C0 7599 3  XPCOM R: ( (dsINode*)17020F0C )->getChildren( *0018EC08 = 1856F910 ) = 0x00000000
    0x000019C0 7599 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000001, 0018EC48 )
    0x000019C0 7599 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000001, *0018EC48 = 17020EA0 ) = 0x00000000
    0x000019C0 7599 3  XPCOM C: ( (dsIProperty*)17020EA0 )->getPropertyType( 0018EBC8 )
    0x000019C0 7599 3  XPCOM R: ( (dsIProperty*)17020EA0 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 7599 3  XPCOM C: ( (dsIProperty*)17020EA0 )->queryInterface( 125E2E90, 0018EBC8 )
    0x000019C0 7599 3  XPCOM R: ( (dsIProperty*)17020EA0 )->queryInterface( 125E2E90, *0018EBC8 = 17020F0C ) = 0x00000000
    0x000019C0 7599 3  XPCOM C: ( (dsINode*)17020F0C )->queryInterface( 125E2E90, 0018EBC8 )
    0x000019C0 7599 3  XPCOM R: ( (dsINode*)17020F0C )->queryInterface( 125E2E90, *0018EBC8 = 17020F0C ) = 0x00000000
    0x000019C0 7599 3  XPCOM C: ( (dsINode*)17020F0C )->getChildren( 0018EC08 )
    0x000019C0 7599 3  XPCOM R: ( (dsINode*)17020F0C )->getChildren( *0018EC08 = 1856F6A0 ) = 0x00000000
    0x000019C0 7599 3  XPCOM C: ( (dsIProperties*)1856F6A0 )->Count( 0018EC68 )
    0x000019C0 7599 3  XPCOM R: ( (dsIProperties*)1856F6A0 )->Count( *0018EC68 = 0x00000003 ) = 0x00000000
    0x000019C0 7599 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000001, 0018EC48 )
    0x000019C0 7599 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000001, *0018EC48 = 17020EA0 ) = 0x00000000
    0x000019C0 7599 3  XPCOM C: ( (dsIProperty*)17020EA0 )->getPropertyType( 0018EBC8 )
    0x000019C0 7599 3  XPCOM R: ( (dsIProperty*)17020EA0 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 7599 3  XPCOM C: ( (dsIProperty*)17020EA0 )->queryInterface( 125E2E90, 0018EBC8 )
    0x000019C0 7599 3  XPCOM R: ( (dsIProperty*)17020EA0 )->queryInterface( 125E2E90, *0018EBC8 = 17020F0C ) = 0x00000000
    0x000019C0 7599 3  XPCOM C: ( (dsINode*)17020F0C )->queryInterface( 125E2E90, 0018EBC8 )
    0x000019C0 7599 3  XPCOM R: ( (dsINode*)17020F0C )->queryInterface( 125E2E90, *0018EBC8 = 17020F0C ) = 0x00000000
    0x000019C0 7599 3  XPCOM C: ( (dsINode*)17020F0C )->getChildren( 0018EC08 )
    0x000019C0 7599 3  XPCOM R: ( (dsINode*)17020F0C )->getChildren( *0018EC08 = 1856FDF0 ) = 0x00000000
    0x000019C0 7599 3  XPCOM C: ( (dsIProperties*)1856FDF0 )->Count( 0018EC28 )
    0x000019C0 7599 3  XPCOM R: ( (dsIProperties*)1856FDF0 )->Count( *0018EC28 = 0x00000003 ) = 0x00000000
    0x000019C0 7599 3  XPCOM C: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 7599 3  XPCOM R: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000000, *0018EC08 = 17132E48 ) = 0x00000000
    0x000019C0 7599 3  XPCOM C: ( (dsIProperty*)17132E48 )->getPropertyType( 0018EB88 )
    0x000019C0 7599 3  XPCOM R: ( (dsIProperty*)17132E48 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7599 3  XPCOM C: ( (dsIProperty*)17132E48 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7599 3  XPCOM R: ( (dsIProperty*)17132E48 )->queryInterface( 125E2E90, *0018EB88 = 17132EB4 ) = 0x00000000
    0x000019C0 7599 3  XPCOM C: ( (dsIGroup*)17132EB4 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7599 3  XPCOM R: ( (dsIGroup*)17132EB4 )->queryInterface( 125E2E90, *0018EB88 = 17132EB4 ) = 0x00000000
    0x000019C0 7599 3  XPCOM C: ( (dsIGroup*)17132EB4 )->Name( 0018EBF8 )
    0x000019C0 7599 3  XPCOM R: ( (dsIGroup*)17132EB4 )->Name( *0018EBF8 = Realtime Options ) = 0x00000000
    0x000019C0 7599 3  XPCOM C: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 7600 3  XPCOM R: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000000, *0018EC08 = 17132E48 ) = 0x00000000
    0x000019C0 7600 3  XPCOM C: ( (dsIProperty*)17132E48 )->getPropertyType( 0018EB88 )
    0x000019C0 7600 3  XPCOM R: ( (dsIProperty*)17132E48 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7600 3  XPCOM C: ( (dsIProperty*)17132E48 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7600 3  XPCOM R: ( (dsIProperty*)17132E48 )->queryInterface( 125E2E90, *0018EB88 = 17132EB4 ) = 0x00000000
    0x000019C0 7600 3  XPCOM C: ( (dsIGroup*)17132EB4 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7600 3  XPCOM R: ( (dsIGroup*)17132EB4 )->queryInterface( 125E2E90, *0018EB88 = 17132EB4 ) = 0x00000000
    0x000019C0 7600 3  XPCOM C: ( (dsIGroup*)17132EB4 )->getChildren( 0018EBC8 )
    0x000019C0 7600 3  XPCOM R: ( (dsIGroup*)17132EB4 )->getChildren( *0018EBC8 = 1856F880 ) = 0x00000000
    0x000019C0 7600 3  XPCOM C: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 7600 3  XPCOM R: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000000, *0018EC08 = 17132E48 ) = 0x00000000
    0x000019C0 7600 3  XPCOM C: ( (dsIProperty*)17132E48 )->getPropertyType( 0018EB88 )
    0x000019C0 7600 3  XPCOM R: ( (dsIProperty*)17132E48 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7600 3  XPCOM C: ( (dsIProperty*)17132E48 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7600 3  XPCOM R: ( (dsIProperty*)17132E48 )->queryInterface( 125E2E90, *0018EB88 = 17132EB4 ) = 0x00000000
    0x000019C0 7600 3  XPCOM C: ( (dsIGroup*)17132EB4 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7600 3  XPCOM R: ( (dsIGroup*)17132EB4 )->queryInterface( 125E2E90, *0018EB88 = 17132EB4 ) = 0x00000000
    0x000019C0 7600 3  XPCOM C: ( (dsIGroup*)17132EB4 )->getChildren( 0018EBC8 )
    0x000019C0 7600 3  XPCOM R: ( (dsIGroup*)17132EB4 )->getChildren( *0018EBC8 = 1856F370 ) = 0x00000000
    0x000019C0 7600 3  XPCOM C: ( (dsIProperties*)1856F370 )->Count( 0018EC28 )
    0x000019C0 7600 3  XPCOM R: ( (dsIProperties*)1856F370 )->Count( *0018EC28 = 0x00000003 ) = 0x00000000
    0x000019C0 7600 3  XPCOM C: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 7600 3  XPCOM R: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000000, *0018EC08 = 17132E48 ) = 0x00000000
    0x000019C0 7600 3  XPCOM C: ( (dsIProperty*)17132E48 )->getPropertyType( 0018EB88 )
    0x000019C0 7600 3  XPCOM R: ( (dsIProperty*)17132E48 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7600 3  XPCOM C: ( (dsIProperty*)17132E48 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7600 3  XPCOM R: ( (dsIProperty*)17132E48 )->queryInterface( 125E2E90, *0018EB88 = 17132EB4 ) = 0x00000000
    0x000019C0 7600 3  XPCOM C: ( (dsIGroup*)17132EB4 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7600 3  XPCOM R: ( (dsIGroup*)17132EB4 )->queryInterface( 125E2E90, *0018EB88 = 17132EB4 ) = 0x00000000
    0x000019C0 7600 3  XPCOM C: ( (dsIGroup*)17132EB4 )->getChildren( 0018EBC8 )
    0x000019C0 7600 3  XPCOM R: ( (dsIGroup*)17132EB4 )->getChildren( *0018EBC8 = 1856F670 ) = 0x00000000
    0x000019C0 7600 3  XPCOM C: ( (dsIProperties*)1856F670 )->Count( 0018EBE8 )
    0x000019C0 7600 3  XPCOM R: ( (dsIProperties*)1856F670 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7600 3  XPCOM C: ( (dsIProperties*)1856F670 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 7600 3  XPCOM R: ( (dsIProperties*)1856F670 )->getProperty( 0x00000000, *0018EBC8 = 1702FC20 ) = 0x00000000
    0x000019C0 7600 3  XPCOM C: ( (dsIProperty*)1702FC20 )->getPropertyType( 0018EB48 )
    0x000019C0 7600 3  XPCOM R: ( (dsIProperty*)1702FC20 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7600 3  XPCOM C: ( (dsIProperty*)1702FC20 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7600 3  XPCOM R: ( (dsIProperty*)1702FC20 )->queryInterface( 125E2E90, *0018EB48 = 1702FC8C ) = 0x00000000
    0x000019C0 7600 3  XPCOM C: ( (dsIBooleanProperty*)1702FC8C )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7600 3  XPCOM R: ( (dsIBooleanProperty*)1702FC8C )->queryInterface( 125E2E90, *0018EB48 = 1702FC8C ) = 0x00000000
    0x000019C0 7601 3  XPCOM C: ( (dsIBooleanProperty*)1702FC8C )->Name( 0018EBB8 )
    0x000019C0 7601 3  XPCOM R: ( (dsIBooleanProperty*)1702FC8C )->Name( *0018EBB8 = Halt the target before any debugger access (will impact servicing of interrupts) ) = 0x00000000
    0x000019C0 7601 3  XPCOM C: ( (dsIProperties*)1856F670 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 7601 3  XPCOM R: ( (dsIProperties*)1856F670 )->getProperty( 0x00000000, *0018EBC8 = 1702FC20 ) = 0x00000000
    0x000019C0 7601 3  XPCOM C: ( (dsIProperty*)1702FC20 )->getPropertyType( 0018EB48 )
    0x000019C0 7601 3  XPCOM R: ( (dsIProperty*)1702FC20 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7601 3  XPCOM C: ( (dsIProperty*)1702FC20 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7601 3  XPCOM R: ( (dsIProperty*)1702FC20 )->queryInterface( 125E2E90, *0018EB48 = 1702FC8C ) = 0x00000000
    0x000019C0 7601 3  XPCOM C: ( (dsIBooleanProperty*)1702FC8C )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7601 3  XPCOM R: ( (dsIBooleanProperty*)1702FC8C )->queryInterface( 125E2E90, *0018EB48 = 1702FC8C ) = 0x00000000
    0x000019C0 7601 3  XPCOM C: ( (dsIProperties*)1856F670 )->Count( 0018EBE8 )
    0x000019C0 7601 3  XPCOM R: ( (dsIProperties*)1856F670 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7601 3  XPCOM C: ( (dsIProperties*)1856F670 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 7601 3  XPCOM R: ( (dsIProperties*)1856F670 )->getProperty( 0x00000001, *0018EBC8 = 1702FCA8 ) = 0x00000000
    0x000019C0 7601 3  XPCOM C: ( (dsIProperty*)1702FCA8 )->getPropertyType( 0018EB48 )
    0x000019C0 7601 3  XPCOM R: ( (dsIProperty*)1702FCA8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7601 3  XPCOM C: ( (dsIProperty*)1702FCA8 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7601 3  XPCOM R: ( (dsIProperty*)1702FCA8 )->queryInterface( 125E2E90, *0018EB48 = 1702FD14 ) = 0x00000000
    0x000019C0 7601 3  XPCOM C: ( (dsIBooleanProperty*)1702FD14 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7601 3  XPCOM R: ( (dsIBooleanProperty*)1702FD14 )->queryInterface( 125E2E90, *0018EB48 = 1702FD14 ) = 0x00000000
    0x000019C0 7601 3  XPCOM C: ( (dsIBooleanProperty*)1702FD14 )->Name( 0018EBB8 )
    0x000019C0 7601 3  XPCOM R: ( (dsIBooleanProperty*)1702FD14 )->Name( *0018EBB8 = Enable realtime mode (critical interrupts serviced when halted, rude/polite mode...) ) = 0x00000000
    0x000019C0 7601 3  XPCOM C: ( (dsIProperties*)1856F670 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 7601 3  XPCOM R: ( (dsIProperties*)1856F670 )->getProperty( 0x00000001, *0018EBC8 = 1702FCA8 ) = 0x00000000
    0x000019C0 7601 3  XPCOM C: ( (dsIProperty*)1702FCA8 )->getPropertyType( 0018EB48 )
    0x000019C0 7601 3  XPCOM R: ( (dsIProperty*)1702FCA8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7601 3  XPCOM C: ( (dsIProperty*)1702FCA8 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7601 3  XPCOM R: ( (dsIProperty*)1702FCA8 )->queryInterface( 125E2E90, *0018EB48 = 1702FD14 ) = 0x00000000
    0x000019C0 7601 3  XPCOM C: ( (dsIBooleanProperty*)1702FD14 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7601 3  XPCOM R: ( (dsIBooleanProperty*)1702FD14 )->queryInterface( 125E2E90, *0018EB48 = 1702FD14 ) = 0x00000000
    0x000019C0 7601 3  XPCOM C: ( (dsIProperties*)1856F670 )->Count( 0018EBE8 )
    0x000019C0 7601 3  XPCOM R: ( (dsIProperties*)1856F670 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7601 3  XPCOM C: ( (dsIProperties*)1856F670 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 7601 3  XPCOM R: ( (dsIProperties*)1856F670 )->getProperty( 0x00000002, *0018EBC8 = 1702FD30 ) = 0x00000000
    0x000019C0 7601 3  XPCOM C: ( (dsIProperty*)1702FD30 )->getPropertyType( 0018EB48 )
    0x000019C0 7601 3  XPCOM R: ( (dsIProperty*)1702FD30 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7601 3  XPCOM C: ( (dsIProperty*)1702FD30 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7601 3  XPCOM R: ( (dsIProperty*)1702FD30 )->queryInterface( 125E2E90, *0018EB48 = 1702FD9C ) = 0x00000000
    0x000019C0 7601 3  XPCOM C: ( (dsIBooleanProperty*)1702FD9C )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7601 3  XPCOM R: ( (dsIBooleanProperty*)1702FD9C )->queryInterface( 125E2E90, *0018EB48 = 1702FD9C ) = 0x00000000
    0x000019C0 7602 3  XPCOM C: ( (dsIBooleanProperty*)1702FD9C )->Name( 0018EBB8 )
    0x000019C0 7602 3  XPCOM R: ( (dsIBooleanProperty*)1702FD9C )->Name( *0018EBB8 = Enable polite mode (respect HPI, DBGM and FRAMEID) ) = 0x00000000
    0x000019C0 7602 3  XPCOM C: ( (dsIProperties*)1856F670 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 7602 3  XPCOM R: ( (dsIProperties*)1856F670 )->getProperty( 0x00000002, *0018EBC8 = 1702FD30 ) = 0x00000000
    0x000019C0 7602 3  XPCOM C: ( (dsIProperty*)1702FD30 )->getPropertyType( 0018EB48 )
    0x000019C0 7602 3  XPCOM R: ( (dsIProperty*)1702FD30 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7602 3  XPCOM C: ( (dsIProperty*)1702FD30 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7602 3  XPCOM R: ( (dsIProperty*)1702FD30 )->queryInterface( 125E2E90, *0018EB48 = 1702FD9C ) = 0x00000000
    0x000019C0 7602 3  XPCOM C: ( (dsIBooleanProperty*)1702FD9C )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7602 3  XPCOM R: ( (dsIBooleanProperty*)1702FD9C )->queryInterface( 125E2E90, *0018EB48 = 1702FD9C ) = 0x00000000
    0x000019C0 7602 3  XPCOM C: ( (dsIProperties*)1856F670 )->Count( 0018EBE8 )
    0x000019C0 7602 3  XPCOM R: ( (dsIProperties*)1856F670 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7602 3  XPCOM C: ( (dsIProperties*)1856FDF0 )->Count( 0018EC28 )
    0x000019C0 7602 3  XPCOM R: ( (dsIProperties*)1856FDF0 )->Count( *0018EC28 = 0x00000003 ) = 0x00000000
    0x000019C0 7602 3  XPCOM C: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 7602 3  XPCOM R: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000001, *0018EC08 = 17132F58 ) = 0x00000000
    0x000019C0 7602 3  XPCOM C: ( (dsIProperty*)17132F58 )->getPropertyType( 0018EB88 )
    0x000019C0 7602 3  XPCOM R: ( (dsIProperty*)17132F58 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7602 3  XPCOM C: ( (dsIProperty*)17132F58 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7602 3  XPCOM R: ( (dsIProperty*)17132F58 )->queryInterface( 125E2E90, *0018EB88 = 17132FC4 ) = 0x00000000
    0x000019C0 7602 3  XPCOM C: ( (dsIGroup*)17132FC4 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7602 3  XPCOM R: ( (dsIGroup*)17132FC4 )->queryInterface( 125E2E90, *0018EB88 = 17132FC4 ) = 0x00000000
    0x000019C0 7602 3  XPCOM C: ( (dsIGroup*)17132FC4 )->Name( 0018EBF8 )
    0x000019C0 7602 3  XPCOM R: ( (dsIGroup*)17132FC4 )->Name( *0018EBF8 = Auto Run Options ) = 0x00000000
    0x000019C0 7602 3  XPCOM C: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 7602 3  XPCOM R: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000001, *0018EC08 = 17132F58 ) = 0x00000000
    0x000019C0 7602 3  XPCOM C: ( (dsIProperty*)17132F58 )->getPropertyType( 0018EB88 )
    0x000019C0 7602 3  XPCOM R: ( (dsIProperty*)17132F58 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7602 3  XPCOM C: ( (dsIProperty*)17132F58 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7602 3  XPCOM R: ( (dsIProperty*)17132F58 )->queryInterface( 125E2E90, *0018EB88 = 17132FC4 ) = 0x00000000
    0x000019C0 7602 3  XPCOM C: ( (dsIGroup*)17132FC4 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7602 3  XPCOM R: ( (dsIGroup*)17132FC4 )->queryInterface( 125E2E90, *0018EB88 = 17132FC4 ) = 0x00000000
    0x000019C0 7602 3  XPCOM C: ( (dsIGroup*)17132FC4 )->getChildren( 0018EBC8 )
    0x000019C0 7602 3  XPCOM R: ( (dsIGroup*)17132FC4 )->getChildren( *0018EBC8 = 1856F9D0 ) = 0x00000000
    0x000019C0 7602 3  XPCOM C: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 7602 3  XPCOM R: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000001, *0018EC08 = 17132F58 ) = 0x00000000
    0x000019C0 7602 3  XPCOM C: ( (dsIProperty*)17132F58 )->getPropertyType( 0018EB88 )
    0x000019C0 7602 3  XPCOM R: ( (dsIProperty*)17132F58 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7602 3  XPCOM C: ( (dsIProperty*)17132F58 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7602 3  XPCOM R: ( (dsIProperty*)17132F58 )->queryInterface( 125E2E90, *0018EB88 = 17132FC4 ) = 0x00000000
    0x000019C0 7603 3  XPCOM C: ( (dsIGroup*)17132FC4 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7603 3  XPCOM R: ( (dsIGroup*)17132FC4 )->queryInterface( 125E2E90, *0018EB88 = 17132FC4 ) = 0x00000000
    0x000019C0 7603 3  XPCOM C: ( (dsIGroup*)17132FC4 )->getChildren( 0018EBC8 )
    0x000019C0 7603 3  XPCOM R: ( (dsIGroup*)17132FC4 )->getChildren( *0018EBC8 = 1856F820 ) = 0x00000000
    0x000019C0 7603 3  XPCOM C: ( (dsIProperties*)1856F820 )->Count( 0018EC28 )
    0x000019C0 7603 3  XPCOM R: ( (dsIProperties*)1856F820 )->Count( *0018EC28 = 0x00000003 ) = 0x00000000
    0x000019C0 7603 3  XPCOM C: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 7603 3  XPCOM R: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000001, *0018EC08 = 17132F58 ) = 0x00000000
    0x000019C0 7603 3  XPCOM C: ( (dsIProperty*)17132F58 )->getPropertyType( 0018EB88 )
    0x000019C0 7603 3  XPCOM R: ( (dsIProperty*)17132F58 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7603 3  XPCOM C: ( (dsIProperty*)17132F58 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7603 3  XPCOM R: ( (dsIProperty*)17132F58 )->queryInterface( 125E2E90, *0018EB88 = 17132FC4 ) = 0x00000000
    0x000019C0 7603 3  XPCOM C: ( (dsIGroup*)17132FC4 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7603 3  XPCOM R: ( (dsIGroup*)17132FC4 )->queryInterface( 125E2E90, *0018EB88 = 17132FC4 ) = 0x00000000
    0x000019C0 7603 3  XPCOM C: ( (dsIGroup*)17132FC4 )->getChildren( 0018EBC8 )
    0x000019C0 7603 3  XPCOM R: ( (dsIGroup*)17132FC4 )->getChildren( *0018EBC8 = 1856F340 ) = 0x00000000
    0x000019C0 7603 3  XPCOM C: ( (dsIProperties*)1856F340 )->Count( 0018EBE8 )
    0x000019C0 7603 3  XPCOM R: ( (dsIProperties*)1856F340 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7603 3  XPCOM C: ( (dsIProperties*)1856F340 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 7603 3  XPCOM R: ( (dsIProperties*)1856F340 )->getProperty( 0x00000000, *0018EBC8 = 12296818 ) = 0x00000000
    0x000019C0 7603 3  XPCOM C: ( (dsIProperty*)12296818 )->getPropertyType( 0018EB48 )
    0x000019C0 7603 3  XPCOM R: ( (dsIProperty*)12296818 )->getPropertyType( *0018EB48 = 0x00000004 ) = 0x00000000
    0x000019C0 7603 3  XPCOM C: ( (dsIProperty*)12296818 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7603 3  XPCOM R: ( (dsIProperty*)12296818 )->queryInterface( 125E2E90, *0018EB48 = 12296884 ) = 0x00000000
    0x000019C0 7603 3  XPCOM C: ( (dsIStringProperty*)12296884 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7603 3  XPCOM R: ( (dsIStringProperty*)12296884 )->queryInterface( 125E2E90, *0018EB48 = 12296884 ) = 0x00000000
    0x000019C0 7603 3  XPCOM C: ( (dsIStringProperty*)12296884 )->Name( 0018EBB8 )
    0x000019C0 7603 3  XPCOM R: ( (dsIStringProperty*)12296884 )->Name( *0018EBB8 = Run to symbol ) = 0x00000000
    0x000019C0 7603 3  XPCOM C: ( (dsIProperties*)1856F340 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 7603 3  XPCOM R: ( (dsIProperties*)1856F340 )->getProperty( 0x00000000, *0018EBC8 = 12296818 ) = 0x00000000
    0x000019C0 7603 3  XPCOM C: ( (dsIProperty*)12296818 )->getPropertyType( 0018EB48 )
    0x000019C0 7603 3  XPCOM R: ( (dsIProperty*)12296818 )->getPropertyType( *0018EB48 = 0x00000004 ) = 0x00000000
    0x000019C0 7603 3  XPCOM C: ( (dsIProperty*)12296818 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7603 3  XPCOM R: ( (dsIProperty*)12296818 )->queryInterface( 125E2E90, *0018EB48 = 12296884 ) = 0x00000000
    0x000019C0 7603 3  XPCOM C: ( (dsIStringProperty*)12296884 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7603 3  XPCOM R: ( (dsIStringProperty*)12296884 )->queryInterface( 125E2E90, *0018EB48 = 12296884 ) = 0x00000000
    0x000019C0 7603 3  XPCOM C: ( (dsIProperties*)1856F340 )->Count( 0018EBE8 )
    0x000019C0 7603 3  XPCOM R: ( (dsIProperties*)1856F340 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7603 3  XPCOM C: ( (dsIProperties*)1856F340 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 7603 3  XPCOM R: ( (dsIProperties*)1856F340 )->getProperty( 0x00000001, *0018EBC8 = 1702FDB8 ) = 0x00000000
    0x000019C0 7603 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->getPropertyType( 0018EB48 )
    0x000019C0 7603 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7603 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7603 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->queryInterface( 125E2E90, *0018EB48 = 1702FE24 ) = 0x00000000
    0x000019C0 7604 3  XPCOM C: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7604 3  XPCOM R: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 125E2E90, *0018EB48 = 1702FE24 ) = 0x00000000
    0x000019C0 7604 3  XPCOM C: ( (dsIBooleanProperty*)1702FE24 )->Name( 0018EBB8 )
    0x000019C0 7604 3  XPCOM R: ( (dsIBooleanProperty*)1702FE24 )->Name( *0018EBB8 = On a program load or restart ) = 0x00000000
    0x000019C0 7604 3  XPCOM C: ( (dsIProperties*)1856F340 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 7604 3  XPCOM R: ( (dsIProperties*)1856F340 )->getProperty( 0x00000001, *0018EBC8 = 1702FDB8 ) = 0x00000000
    0x000019C0 7604 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->getPropertyType( 0018EB48 )
    0x000019C0 7604 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7604 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7604 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->queryInterface( 125E2E90, *0018EB48 = 1702FE24 ) = 0x00000000
    0x000019C0 7604 3  XPCOM C: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7604 3  XPCOM R: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 125E2E90, *0018EB48 = 1702FE24 ) = 0x00000000
    0x000019C0 7604 3  XPCOM C: ( (dsIProperties*)1856F340 )->Count( 0018EBE8 )
    0x000019C0 7604 3  XPCOM R: ( (dsIProperties*)1856F340 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7604 3  XPCOM C: ( (dsIProperties*)1856F340 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 7604 3  XPCOM R: ( (dsIProperties*)1856F340 )->getProperty( 0x00000002, *0018EBC8 = 1702FE40 ) = 0x00000000
    0x000019C0 7604 3  XPCOM C: ( (dsIProperty*)1702FE40 )->getPropertyType( 0018EB48 )
    0x000019C0 7604 3  XPCOM R: ( (dsIProperty*)1702FE40 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7604 3  XPCOM C: ( (dsIProperty*)1702FE40 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7604 3  XPCOM R: ( (dsIProperty*)1702FE40 )->queryInterface( 125E2E90, *0018EB48 = 1702FEAC ) = 0x00000000
    0x000019C0 7604 3  XPCOM C: ( (dsIBooleanProperty*)1702FEAC )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7604 3  XPCOM R: ( (dsIBooleanProperty*)1702FEAC )->queryInterface( 125E2E90, *0018EB48 = 1702FEAC ) = 0x00000000
    0x000019C0 7604 3  XPCOM C: ( (dsIBooleanProperty*)1702FEAC )->Name( 0018EBB8 )
    0x000019C0 7604 3  XPCOM R: ( (dsIBooleanProperty*)1702FEAC )->Name( *0018EBB8 = On a reset ) = 0x00000000
    0x000019C0 7604 3  XPCOM C: ( (dsIProperties*)1856F340 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 7604 3  XPCOM R: ( (dsIProperties*)1856F340 )->getProperty( 0x00000002, *0018EBC8 = 1702FE40 ) = 0x00000000
    0x000019C0 7604 3  XPCOM C: ( (dsIProperty*)1702FE40 )->getPropertyType( 0018EB48 )
    0x000019C0 7604 3  XPCOM R: ( (dsIProperty*)1702FE40 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7604 3  XPCOM C: ( (dsIProperty*)1702FE40 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7604 3  XPCOM R: ( (dsIProperty*)1702FE40 )->queryInterface( 125E2E90, *0018EB48 = 1702FEAC ) = 0x00000000
    0x000019C0 7604 3  XPCOM C: ( (dsIBooleanProperty*)1702FEAC )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7604 3  XPCOM R: ( (dsIBooleanProperty*)1702FEAC )->queryInterface( 125E2E90, *0018EB48 = 1702FEAC ) = 0x00000000
    0x000019C0 7604 3  XPCOM C: ( (dsIProperties*)1856F340 )->Count( 0018EBE8 )
    0x000019C0 7604 3  XPCOM R: ( (dsIProperties*)1856F340 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7604 3  XPCOM C: ( (dsIProperties*)1856FDF0 )->Count( 0018EC28 )
    0x000019C0 7604 3  XPCOM R: ( (dsIProperties*)1856FDF0 )->Count( *0018EC28 = 0x00000003 ) = 0x00000000
    0x000019C0 7604 3  XPCOM C: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 7604 3  XPCOM R: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000002, *0018EC08 = 17132FE0 ) = 0x00000000
    0x000019C0 7604 3  XPCOM C: ( (dsIProperty*)17132FE0 )->getPropertyType( 0018EB88 )
    0x000019C0 7604 3  XPCOM R: ( (dsIProperty*)17132FE0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7604 3  XPCOM C: ( (dsIProperty*)17132FE0 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7604 3  XPCOM R: ( (dsIProperty*)17132FE0 )->queryInterface( 125E2E90, *0018EB88 = 1713304C ) = 0x00000000
    0x000019C0 7604 3  XPCOM C: ( (dsIGroup*)1713304C )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7605 3  XPCOM R: ( (dsIGroup*)1713304C )->queryInterface( 125E2E90, *0018EB88 = 1713304C ) = 0x00000000
    0x000019C0 7605 3  XPCOM C: ( (dsIGroup*)1713304C )->Name( 0018EBF8 )
    0x000019C0 7605 3  XPCOM R: ( (dsIGroup*)1713304C )->Name( *0018EBF8 = Launch Options ) = 0x00000000
    0x000019C0 7605 3  XPCOM C: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 7605 3  XPCOM R: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000002, *0018EC08 = 17132FE0 ) = 0x00000000
    0x000019C0 7605 3  XPCOM C: ( (dsIProperty*)17132FE0 )->getPropertyType( 0018EB88 )
    0x000019C0 7605 3  XPCOM R: ( (dsIProperty*)17132FE0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7605 3  XPCOM C: ( (dsIProperty*)17132FE0 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7605 3  XPCOM R: ( (dsIProperty*)17132FE0 )->queryInterface( 125E2E90, *0018EB88 = 1713304C ) = 0x00000000
    0x000019C0 7605 3  XPCOM C: ( (dsIGroup*)1713304C )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7605 3  XPCOM R: ( (dsIGroup*)1713304C )->queryInterface( 125E2E90, *0018EB88 = 1713304C ) = 0x00000000
    0x000019C0 7605 3  XPCOM C: ( (dsIGroup*)1713304C )->getChildren( 0018EBC8 )
    0x000019C0 7605 3  XPCOM R: ( (dsIGroup*)1713304C )->getChildren( *0018EBC8 = 1856F130 ) = 0x00000000
    0x000019C0 7605 3  XPCOM C: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 7605 3  XPCOM R: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000002, *0018EC08 = 17132FE0 ) = 0x00000000
    0x000019C0 7605 3  XPCOM C: ( (dsIProperty*)17132FE0 )->getPropertyType( 0018EB88 )
    0x000019C0 7605 3  XPCOM R: ( (dsIProperty*)17132FE0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7605 3  XPCOM C: ( (dsIProperty*)17132FE0 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7605 3  XPCOM R: ( (dsIProperty*)17132FE0 )->queryInterface( 125E2E90, *0018EB88 = 1713304C ) = 0x00000000
    0x000019C0 7605 3  XPCOM C: ( (dsIGroup*)1713304C )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7605 3  XPCOM R: ( (dsIGroup*)1713304C )->queryInterface( 125E2E90, *0018EB88 = 1713304C ) = 0x00000000
    0x000019C0 7605 3  XPCOM C: ( (dsIGroup*)1713304C )->getChildren( 0018EBC8 )
    0x000019C0 7605 3  XPCOM R: ( (dsIGroup*)1713304C )->getChildren( *0018EBC8 = 1856F220 ) = 0x00000000
    0x000019C0 7605 3  XPCOM C: ( (dsIProperties*)1856F220 )->Count( 0018EC28 )
    0x000019C0 7605 3  XPCOM R: ( (dsIProperties*)1856F220 )->Count( *0018EC28 = 0x00000003 ) = 0x00000000
    0x000019C0 7605 3  XPCOM C: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 7605 3  XPCOM R: ( (dsIProperties*)1856FDF0 )->getProperty( 0x00000002, *0018EC08 = 17132FE0 ) = 0x00000000
    0x000019C0 7605 3  XPCOM C: ( (dsIProperty*)17132FE0 )->getPropertyType( 0018EB88 )
    0x000019C0 7605 3  XPCOM R: ( (dsIProperty*)17132FE0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7605 3  XPCOM C: ( (dsIProperty*)17132FE0 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7605 3  XPCOM R: ( (dsIProperty*)17132FE0 )->queryInterface( 125E2E90, *0018EB88 = 1713304C ) = 0x00000000
    0x000019C0 7605 3  XPCOM C: ( (dsIGroup*)1713304C )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7605 3  XPCOM R: ( (dsIGroup*)1713304C )->queryInterface( 125E2E90, *0018EB88 = 1713304C ) = 0x00000000
    0x000019C0 7605 3  XPCOM C: ( (dsIGroup*)1713304C )->getChildren( 0018EBC8 )
    0x000019C0 7605 3  XPCOM R: ( (dsIGroup*)1713304C )->getChildren( *0018EBC8 = 1856F700 ) = 0x00000000
    0x000019C0 7605 3  XPCOM C: ( (dsIProperties*)1856F700 )->Count( 0018EBE8 )
    0x000019C0 7605 3  XPCOM R: ( (dsIProperties*)1856F700 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7605 3  XPCOM C: ( (dsIProperties*)1856F700 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 7605 3  XPCOM R: ( (dsIProperties*)1856F700 )->getProperty( 0x00000000, *0018EBC8 = 16F51FA8 ) = 0x00000000
    0x000019C0 7605 3  XPCOM C: ( (dsIProperty*)16F51FA8 )->getPropertyType( 0018EB48 )
    0x000019C0 7605 3  XPCOM R: ( (dsIProperty*)16F51FA8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7605 3  XPCOM C: ( (dsIProperty*)16F51FA8 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7605 3  XPCOM R: ( (dsIProperty*)16F51FA8 )->queryInterface( 125E2E90, *0018EB48 = 16F52014 ) = 0x00000000
    0x000019C0 7605 3  XPCOM C: ( (dsIBooleanProperty*)16F52014 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7606 3  XPCOM R: ( (dsIBooleanProperty*)16F52014 )->queryInterface( 125E2E90, *0018EB48 = 16F52014 ) = 0x00000000
    0x000019C0 7606 3  XPCOM C: ( (dsIBooleanProperty*)16F52014 )->Name( 0018EBB8 )
    0x000019C0 7606 3  XPCOM R: ( (dsIBooleanProperty*)16F52014 )->Name( *0018EBB8 = Connect to the target on debugger startup ) = 0x00000000
    0x000019C0 7606 3  XPCOM C: ( (dsIProperties*)1856F700 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 7606 3  XPCOM R: ( (dsIProperties*)1856F700 )->getProperty( 0x00000000, *0018EBC8 = 16F51FA8 ) = 0x00000000
    0x000019C0 7606 3  XPCOM C: ( (dsIProperty*)16F51FA8 )->getPropertyType( 0018EB48 )
    0x000019C0 7606 3  XPCOM R: ( (dsIProperty*)16F51FA8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7606 3  XPCOM C: ( (dsIProperty*)16F51FA8 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7606 3  XPCOM R: ( (dsIProperty*)16F51FA8 )->queryInterface( 125E2E90, *0018EB48 = 16F52014 ) = 0x00000000
    0x000019C0 7606 3  XPCOM C: ( (dsIBooleanProperty*)16F52014 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7606 3  XPCOM R: ( (dsIBooleanProperty*)16F52014 )->queryInterface( 125E2E90, *0018EB48 = 16F52014 ) = 0x00000000
    0x000019C0 7606 3  XPCOM C: ( (dsIProperties*)1856F700 )->Count( 0018EBE8 )
    0x000019C0 7606 3  XPCOM R: ( (dsIProperties*)1856F700 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7606 3  XPCOM C: ( (dsIProperties*)1856F700 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 7606 3  XPCOM R: ( (dsIProperties*)1856F700 )->getProperty( 0x00000001, *0018EBC8 = 16F52140 ) = 0x00000000
    0x000019C0 7606 3  XPCOM C: ( (dsIProperty*)16F52140 )->getPropertyType( 0018EB48 )
    0x000019C0 7606 3  XPCOM R: ( (dsIProperty*)16F52140 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7606 3  XPCOM C: ( (dsIProperty*)16F52140 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7606 3  XPCOM R: ( (dsIProperty*)16F52140 )->queryInterface( 125E2E90, *0018EB48 = 16F521AC ) = 0x00000000
    0x000019C0 7606 3  XPCOM C: ( (dsIBooleanProperty*)16F521AC )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7606 3  XPCOM R: ( (dsIBooleanProperty*)16F521AC )->queryInterface( 125E2E90, *0018EB48 = 16F521AC ) = 0x00000000
    0x000019C0 7606 3  XPCOM C: ( (dsIBooleanProperty*)16F521AC )->Name( 0018EBB8 )
    0x000019C0 7606 3  XPCOM R: ( (dsIBooleanProperty*)16F521AC )->Name( *0018EBB8 = Restore breakpoints from previous session ) = 0x00000000
    0x000019C0 7606 3  XPCOM C: ( (dsIProperties*)1856F700 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 7606 3  XPCOM R: ( (dsIProperties*)1856F700 )->getProperty( 0x00000001, *0018EBC8 = 16F52140 ) = 0x00000000
    0x000019C0 7606 3  XPCOM C: ( (dsIProperty*)16F52140 )->getPropertyType( 0018EB48 )
    0x000019C0 7606 3  XPCOM R: ( (dsIProperty*)16F52140 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7606 3  XPCOM C: ( (dsIProperty*)16F52140 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7606 3  XPCOM R: ( (dsIProperty*)16F52140 )->queryInterface( 125E2E90, *0018EB48 = 16F521AC ) = 0x00000000
    0x000019C0 7606 3  XPCOM C: ( (dsIBooleanProperty*)16F521AC )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7606 3  XPCOM R: ( (dsIBooleanProperty*)16F521AC )->queryInterface( 125E2E90, *0018EB48 = 16F521AC ) = 0x00000000
    0x000019C0 7606 3  XPCOM C: ( (dsIProperties*)1856F700 )->Count( 0018EBE8 )
    0x000019C0 7606 3  XPCOM R: ( (dsIProperties*)1856F700 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7606 3  XPCOM C: ( (dsIProperties*)1856F700 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 7606 3  XPCOM R: ( (dsIProperties*)1856F700 )->getProperty( 0x00000002, *0018EBC8 = 16F521C8 ) = 0x00000000
    0x000019C0 7606 3  XPCOM C: ( (dsIProperty*)16F521C8 )->getPropertyType( 0018EB48 )
    0x000019C0 7606 3  XPCOM R: ( (dsIProperty*)16F521C8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7606 3  XPCOM C: ( (dsIProperty*)16F521C8 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7606 3  XPCOM R: ( (dsIProperty*)16F521C8 )->queryInterface( 125E2E90, *0018EB48 = 16F52234 ) = 0x00000000
    0x000019C0 7606 3  XPCOM C: ( (dsIBooleanProperty*)16F52234 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7606 3  XPCOM R: ( (dsIBooleanProperty*)16F52234 )->queryInterface( 125E2E90, *0018EB48 = 16F52234 ) = 0x00000000
    0x000019C0 7606 3  XPCOM C: ( (dsIBooleanProperty*)16F52234 )->Name( 0018EBB8 )
    0x000019C0 7606 3  XPCOM R: ( (dsIBooleanProperty*)16F52234 )->Name( *0018EBB8 = Continue debug launch if target connection or program load fails ) = 0x00000000
    0x000019C0 7606 3  XPCOM C: ( (dsIProperties*)1856F700 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 7606 3  XPCOM R: ( (dsIProperties*)1856F700 )->getProperty( 0x00000002, *0018EBC8 = 16F521C8 ) = 0x00000000
    0x000019C0 7607 3  XPCOM C: ( (dsIProperty*)16F521C8 )->getPropertyType( 0018EB48 )
    0x000019C0 7607 3  XPCOM R: ( (dsIProperty*)16F521C8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7607 3  XPCOM C: ( (dsIProperty*)16F521C8 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7607 3  XPCOM R: ( (dsIProperty*)16F521C8 )->queryInterface( 125E2E90, *0018EB48 = 16F52234 ) = 0x00000000
    0x000019C0 7607 3  XPCOM C: ( (dsIBooleanProperty*)16F52234 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7607 3  XPCOM R: ( (dsIBooleanProperty*)16F52234 )->queryInterface( 125E2E90, *0018EB48 = 16F52234 ) = 0x00000000
    0x000019C0 7607 3  XPCOM C: ( (dsIProperties*)1856F700 )->Count( 0018EBE8 )
    0x000019C0 7607 3  XPCOM R: ( (dsIProperties*)1856F700 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7607 3  XPCOM C: ( (dsIProperties*)1856FDF0 )->Count( 0018EC28 )
    0x000019C0 7607 3  XPCOM R: ( (dsIProperties*)1856FDF0 )->Count( *0018EC28 = 0x00000003 ) = 0x00000000
    0x000019C0 7607 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->Count( 0018EC68 )
    0x000019C0 7607 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->Count( *0018EC68 = 0x00000005 ) = 0x00000000
    0x000019C0 7607 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000002, 0018EC48 )
    0x000019C0 7607 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000002, *0018EC48 = 17020F28 ) = 0x00000000
    0x000019C0 7607 3  XPCOM C: ( (dsIProperty*)17020F28 )->getPropertyType( 0018EBC8 )
    0x000019C0 7607 3  XPCOM R: ( (dsIProperty*)17020F28 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 7607 3  XPCOM C: ( (dsIProperty*)17020F28 )->queryInterface( 125E2E90, 0018EBC8 )
    0x000019C0 7607 3  XPCOM R: ( (dsIProperty*)17020F28 )->queryInterface( 125E2E90, *0018EBC8 = 17020F94 ) = 0x00000000
    0x000019C0 7607 3  XPCOM C: ( (dsINode*)17020F94 )->queryInterface( 125E2E90, 0018EBC8 )
    0x000019C0 7607 3  XPCOM R: ( (dsINode*)17020F94 )->queryInterface( 125E2E90, *0018EBC8 = 17020F94 ) = 0x00000000
    0x000019C0 7607 3  XPCOM C: ( (dsINode*)17020F94 )->Name( 0018EC38 )
    0x000019C0 7607 3  XPCOM R: ( (dsINode*)17020F94 )->Name( *0018EC38 = Misc/Other Options ) = 0x00000000
    0x000019C0 7607 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000002, 0018EC48 )
    0x000019C0 7607 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000002, *0018EC48 = 17020F28 ) = 0x00000000
    0x000019C0 7607 3  XPCOM C: ( (dsIProperty*)17020F28 )->getPropertyType( 0018EBC8 )
    0x000019C0 7607 3  XPCOM R: ( (dsIProperty*)17020F28 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 7607 3  XPCOM C: ( (dsIProperty*)17020F28 )->queryInterface( 125E2E90, 0018EBC8 )
    0x000019C0 7607 3  XPCOM R: ( (dsIProperty*)17020F28 )->queryInterface( 125E2E90, *0018EBC8 = 17020F94 ) = 0x00000000
    0x000019C0 7607 3  XPCOM C: ( (dsINode*)17020F94 )->queryInterface( 125E2E90, 0018EBC8 )
    0x000019C0 7607 3  XPCOM R: ( (dsINode*)17020F94 )->queryInterface( 125E2E90, *0018EBC8 = 17020F94 ) = 0x00000000
    0x000019C0 7607 3  XPCOM C: ( (dsINode*)17020F94 )->getChildren( 0018EC08 )
    0x000019C0 7607 3  XPCOM R: ( (dsINode*)17020F94 )->getChildren( *0018EC08 = 1856F610 ) = 0x00000000
    0x000019C0 7607 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000002, 0018EC48 )
    0x000019C0 7607 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000002, *0018EC48 = 17020F28 ) = 0x00000000
    0x000019C0 7607 3  XPCOM C: ( (dsIProperty*)17020F28 )->getPropertyType( 0018EBC8 )
    0x000019C0 7607 3  XPCOM R: ( (dsIProperty*)17020F28 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 7607 3  XPCOM C: ( (dsIProperty*)17020F28 )->queryInterface( 125E2F08, 0018EBC8 )
    0x000019C0 7607 3  XPCOM R: ( (dsIProperty*)17020F28 )->queryInterface( 125E2F08, *0018EBC8 = 17020F94 ) = 0x00000000
    0x000019C0 7607 3  XPCOM C: ( (dsINode*)17020F94 )->queryInterface( 125E2F08, 0018EBC8 )
    0x000019C0 7607 3  XPCOM R: ( (dsINode*)17020F94 )->queryInterface( 125E2F08, *0018EBC8 = 17020F94 ) = 0x00000000
    0x000019C0 7607 3  XPCOM C: ( (dsINode*)17020F94 )->getChildren( 0018EC08 )
    0x000019C0 7607 3  XPCOM R: ( (dsINode*)17020F94 )->getChildren( *0018EC08 = 1856FC40 ) = 0x00000000
    0x000019C0 7608 3  XPCOM C: ( (dsIProperties*)1856FC40 )->Count( 0018EC68 )
    0x000019C0 7608 3  XPCOM R: ( (dsIProperties*)1856FC40 )->Count( *0018EC68 = 0x00000008 ) = 0x00000000
    0x000019C0 7608 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000002, 0018EC48 )
    0x000019C0 7608 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000002, *0018EC48 = 17020F28 ) = 0x00000000
    0x000019C0 7608 3  XPCOM C: ( (dsIProperty*)17020F28 )->getPropertyType( 0018EBC8 )
    0x000019C0 7608 3  XPCOM R: ( (dsIProperty*)17020F28 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 7608 3  XPCOM C: ( (dsIProperty*)17020F28 )->queryInterface( 125E2E90, 0018EBC8 )
    0x000019C0 7608 3  XPCOM R: ( (dsIProperty*)17020F28 )->queryInterface( 125E2E90, *0018EBC8 = 17020F94 ) = 0x00000000
    0x000019C0 7608 3  XPCOM C: ( (dsINode*)17020F94 )->queryInterface( 125E2E90, 0018EBC8 )
    0x000019C0 7608 3  XPCOM R: ( (dsINode*)17020F94 )->queryInterface( 125E2E90, *0018EBC8 = 17020F94 ) = 0x00000000
    0x000019C0 7608 3  XPCOM C: ( (dsINode*)17020F94 )->getChildren( 0018EC08 )
    0x000019C0 7608 3  XPCOM R: ( (dsINode*)17020F94 )->getChildren( *0018EC08 = 1856F6D0 ) = 0x00000000
    0x000019C0 7608 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->Count( 0018EC28 )
    0x000019C0 7608 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->Count( *0018EC28 = 0x00000008 ) = 0x00000000
    0x000019C0 7608 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 7608 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000000, *0018EC08 = 17132ED0 ) = 0x00000000
    0x000019C0 7608 3  XPCOM C: ( (dsIProperty*)17132ED0 )->getPropertyType( 0018EB88 )
    0x000019C0 7608 3  XPCOM R: ( (dsIProperty*)17132ED0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7608 3  XPCOM C: ( (dsIProperty*)17132ED0 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7608 3  XPCOM R: ( (dsIProperty*)17132ED0 )->queryInterface( 125E2F08, *0018EB88 = 17132F3C ) = 0x00000000
    0x000019C0 7608 3  XPCOM C: ( (dsIGroup*)17132F3C )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7608 3  XPCOM R: ( (dsIGroup*)17132F3C )->queryInterface( 125E2F08, *0018EB88 = 17132F3C ) = 0x00000000
    0x000019C0 7608 3  XPCOM C: ( (dsIGroup*)17132F3C )->Name( 0018EBF8 )
    0x000019C0 7608 3  XPCOM R: ( (dsIGroup*)17132F3C )->Name( *0018EBF8 = OS Aware Debug Options ) = 0x00000000
    0x000019C0 7608 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 7608 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000000, *0018EC08 = 17132ED0 ) = 0x00000000
    0x000019C0 7608 3  XPCOM C: ( (dsIProperty*)17132ED0 )->getPropertyType( 0018EB88 )
    0x000019C0 7608 3  XPCOM R: ( (dsIProperty*)17132ED0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7608 3  XPCOM C: ( (dsIProperty*)17132ED0 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7608 3  XPCOM R: ( (dsIProperty*)17132ED0 )->queryInterface( 125E2F08, *0018EB88 = 17132F3C ) = 0x00000000
    0x000019C0 7608 3  XPCOM C: ( (dsIGroup*)17132F3C )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7608 3  XPCOM R: ( (dsIGroup*)17132F3C )->queryInterface( 125E2F08, *0018EB88 = 17132F3C ) = 0x00000000
    0x000019C0 7608 3  XPCOM C: ( (dsIGroup*)17132F3C )->getChildren( 0018EBC8 )
    0x000019C0 7608 3  XPCOM R: ( (dsIGroup*)17132F3C )->getChildren( *0018EBC8 = 1856F970 ) = 0x00000000
    0x000019C0 7608 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 7608 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000000, *0018EC08 = 17132ED0 ) = 0x00000000
    0x000019C0 7608 3  XPCOM C: ( (dsIProperty*)17132ED0 )->getPropertyType( 0018EB88 )
    0x000019C0 7608 3  XPCOM R: ( (dsIProperty*)17132ED0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7608 3  XPCOM C: ( (dsIProperty*)17132ED0 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7608 3  XPCOM R: ( (dsIProperty*)17132ED0 )->queryInterface( 125E2F08, *0018EB88 = 17132F3C ) = 0x00000000
    0x000019C0 7608 3  XPCOM C: ( (dsIGroup*)17132F3C )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7608 3  XPCOM R: ( (dsIGroup*)17132F3C )->queryInterface( 125E2F08, *0018EB88 = 17132F3C ) = 0x00000000
    0x000019C0 7608 3  XPCOM C: ( (dsIGroup*)17132F3C )->getChildren( 0018EBC8 )
    0x000019C0 7609 3  XPCOM R: ( (dsIGroup*)17132F3C )->getChildren( *0018EBC8 = 1856FD90 ) = 0x00000000
    0x000019C0 7609 3  XPCOM C: ( (dsIProperties*)1856FD90 )->Count( 0018EC28 )
    0x000019C0 7609 3  XPCOM R: ( (dsIProperties*)1856FD90 )->Count( *0018EC28 = 0x00000003 ) = 0x00000000
    0x000019C0 7609 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 7609 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000000, *0018EC08 = 17132ED0 ) = 0x00000000
    0x000019C0 7609 3  XPCOM C: ( (dsIProperty*)17132ED0 )->getPropertyType( 0018EB88 )
    0x000019C0 7609 3  XPCOM R: ( (dsIProperty*)17132ED0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7609 3  XPCOM C: ( (dsIProperty*)17132ED0 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7609 3  XPCOM R: ( (dsIProperty*)17132ED0 )->queryInterface( 125E2F08, *0018EB88 = 17132F3C ) = 0x00000000
    0x000019C0 7609 3  XPCOM C: ( (dsIGroup*)17132F3C )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7609 3  XPCOM R: ( (dsIGroup*)17132F3C )->queryInterface( 125E2F08, *0018EB88 = 17132F3C ) = 0x00000000
    0x000019C0 7609 3  XPCOM C: ( (dsIGroup*)17132F3C )->getChildren( 0018EBC8 )
    0x000019C0 7609 3  XPCOM R: ( (dsIGroup*)17132F3C )->getChildren( *0018EBC8 = 1856FCA0 ) = 0x00000000
    0x000019C0 7609 3  XPCOM C: ( (dsIProperties*)1856FCA0 )->Count( 0018EBE8 )
    0x000019C0 7609 3  XPCOM R: ( (dsIProperties*)1856FCA0 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7609 3  XPCOM C: ( (dsIProperties*)1856FCA0 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 7609 3  XPCOM R: ( (dsIProperties*)1856FCA0 )->getProperty( 0x00000000, *0018EBC8 = 12412EA0 ) = 0x00000000
    0x000019C0 7609 3  XPCOM C: ( (dsIProperty*)12412EA0 )->getPropertyType( 0018EB48 )
    0x000019C0 7609 3  XPCOM R: ( (dsIProperty*)12412EA0 )->getPropertyType( *0018EB48 = 0x00000003 ) = 0x00000000
    0x000019C0 7609 3  XPCOM C: ( (dsIProperty*)12412EA0 )->queryInterface( 125E2F08, 0018EB48 )
    0x000019C0 7609 3  XPCOM R: ( (dsIProperty*)12412EA0 )->queryInterface( 125E2F08, *0018EB48 = 12412F44 ) = 0x00000000
    0x000019C0 7609 3  XPCOM C: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 125E2F08, 0018EB48 )
    0x000019C0 7609 3  XPCOM R: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 125E2F08, *0018EB48 = 12412F0C ) = 0x00000000
    0x000019C0 7609 3  XPCOM C: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 125E2F08, 0018EB48 )
    0x000019C0 7609 3  XPCOM R: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 125E2F08, *0018EB48 = 12412F44 ) = 0x00000000
    0x000019C0 7609 3  XPCOM C: ( (dsIChoiceListProperty*)12412F44 )->Name( 0018EBB8 )
    0x000019C0 7609 3  XPCOM R: ( (dsIChoiceListProperty*)12412F44 )->Name( *0018EBB8 = Automatically load module symbols ) = 0x00000000
    0x000019C0 7609 3  XPCOM C: ( (dsIProperties*)1856FCA0 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 7609 3  XPCOM R: ( (dsIProperties*)1856FCA0 )->getProperty( 0x00000000, *0018EBC8 = 12412EA0 ) = 0x00000000
    0x000019C0 7609 3  XPCOM C: ( (dsIProperty*)12412EA0 )->getPropertyType( 0018EB48 )
    0x000019C0 7609 3  XPCOM R: ( (dsIProperty*)12412EA0 )->getPropertyType( *0018EB48 = 0x00000003 ) = 0x00000000
    0x000019C0 7609 3  XPCOM C: ( (dsIProperty*)12412EA0 )->queryInterface( 125E2F08, 0018EB48 )
    0x000019C0 7609 3  XPCOM R: ( (dsIProperty*)12412EA0 )->queryInterface( 125E2F08, *0018EB48 = 12412F44 ) = 0x00000000
    0x000019C0 7609 3  XPCOM C: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 125E2F08, 0018EB48 )
    0x000019C0 7609 3  XPCOM R: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 125E2F08, *0018EB48 = 12412F0C ) = 0x00000000
    0x000019C0 7609 3  XPCOM C: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 125E2F08, 0018EB48 )
    0x000019C0 7609 3  XPCOM R: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 125E2F08, *0018EB48 = 12412F44 ) = 0x00000000
    0x000019C0 7609 3  XPCOM C: ( (dsIProperties*)1856FCA0 )->Count( 0018EBE8 )
    0x000019C0 7609 3  XPCOM R: ( (dsIProperties*)1856FCA0 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7609 3  XPCOM C: ( (dsIProperties*)1856FCA0 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 7609 3  XPCOM R: ( (dsIProperties*)1856FCA0 )->getProperty( 0x00000001, *0018EBC8 = 12296138 ) = 0x00000000
    0x000019C0 7609 3  XPCOM C: ( (dsIProperty*)12296138 )->getPropertyType( 0018EB48 )
    0x000019C0 7609 3  XPCOM R: ( (dsIProperty*)12296138 )->getPropertyType( *0018EB48 = 0x00000004 ) = 0x00000000
    0x000019C0 7610 3  XPCOM C: ( (dsIProperty*)12296138 )->queryInterface( 125E2F08, 0018EB48 )
    0x000019C0 7610 3  XPCOM R: ( (dsIProperty*)12296138 )->queryInterface( 125E2F08, *0018EB48 = 122961A4 ) = 0x00000000
    0x000019C0 7610 3  XPCOM C: ( (dsIStringProperty*)122961A4 )->queryInterface( 125E2F08, 0018EB48 )
    0x000019C0 7610 3  XPCOM R: ( (dsIStringProperty*)122961A4 )->queryInterface( 125E2F08, *0018EB48 = 122961A4 ) = 0x00000000
    0x000019C0 7610 3  XPCOM C: ( (dsIStringProperty*)122961A4 )->Name( 0018EBB8 )
    0x000019C0 7610 3  XPCOM R: ( (dsIStringProperty*)122961A4 )->Name( *0018EBB8 = Module name list ) = 0x00000000
    0x000019C0 7610 3  XPCOM C: ( (dsIProperties*)1856FCA0 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 7610 3  XPCOM R: ( (dsIProperties*)1856FCA0 )->getProperty( 0x00000001, *0018EBC8 = 12296138 ) = 0x00000000
    0x000019C0 7610 3  XPCOM C: ( (dsIProperty*)12296138 )->getPropertyType( 0018EB48 )
    0x000019C0 7610 3  XPCOM R: ( (dsIProperty*)12296138 )->getPropertyType( *0018EB48 = 0x00000004 ) = 0x00000000
    0x000019C0 7610 3  XPCOM C: ( (dsIProperty*)12296138 )->queryInterface( 125E2F08, 0018EB48 )
    0x000019C0 7610 3  XPCOM R: ( (dsIProperty*)12296138 )->queryInterface( 125E2F08, *0018EB48 = 122961A4 ) = 0x00000000
    0x000019C0 7610 3  XPCOM C: ( (dsIStringProperty*)122961A4 )->queryInterface( 125E2F08, 0018EB48 )
    0x000019C0 7610 3  XPCOM R: ( (dsIStringProperty*)122961A4 )->queryInterface( 125E2F08, *0018EB48 = 122961A4 ) = 0x00000000
    0x000019C0 7610 3  XPCOM C: ( (dsIProperties*)1856FCA0 )->Count( 0018EBE8 )
    0x000019C0 7610 3  XPCOM R: ( (dsIProperties*)1856FCA0 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7610 3  XPCOM C: ( (dsIProperties*)1856FCA0 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 7610 3  XPCOM R: ( (dsIProperties*)1856FCA0 )->getProperty( 0x00000002, *0018EBC8 = 122964A8 ) = 0x00000000
    0x000019C0 7610 3  XPCOM C: ( (dsIProperty*)122964A8 )->getPropertyType( 0018EB48 )
    0x000019C0 7610 3  XPCOM R: ( (dsIProperty*)122964A8 )->getPropertyType( *0018EB48 = 0x00000004 ) = 0x00000000
    0x000019C0 7610 3  XPCOM C: ( (dsIProperty*)122964A8 )->queryInterface( 125E2F08, 0018EB48 )
    0x000019C0 7610 3  XPCOM R: ( (dsIProperty*)122964A8 )->queryInterface( 125E2F08, *0018EB48 = 12296514 ) = 0x00000000
    0x000019C0 7610 3  XPCOM C: ( (dsIStringProperty*)12296514 )->queryInterface( 125E2F08, 0018EB48 )
    0x000019C0 7610 3  XPCOM R: ( (dsIStringProperty*)12296514 )->queryInterface( 125E2F08, *0018EB48 = 12296514 ) = 0x00000000
    0x000019C0 7610 3  XPCOM C: ( (dsIStringProperty*)12296514 )->Name( 0018EBB8 )
    0x000019C0 7610 3  XPCOM R: ( (dsIStringProperty*)12296514 )->Name( *0018EBB8 = Module symbol search path ) = 0x00000000
    0x000019C0 7610 3  XPCOM C: ( (dsIProperties*)1856FCA0 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 7610 3  XPCOM R: ( (dsIProperties*)1856FCA0 )->getProperty( 0x00000002, *0018EBC8 = 122964A8 ) = 0x00000000
    0x000019C0 7610 3  XPCOM C: ( (dsIProperty*)122964A8 )->getPropertyType( 0018EB48 )
    0x000019C0 7610 3  XPCOM R: ( (dsIProperty*)122964A8 )->getPropertyType( *0018EB48 = 0x00000004 ) = 0x00000000
    0x000019C0 7610 3  XPCOM C: ( (dsIProperty*)122964A8 )->queryInterface( 125E2F08, 0018EB48 )
    0x000019C0 7610 3  XPCOM R: ( (dsIProperty*)122964A8 )->queryInterface( 125E2F08, *0018EB48 = 12296514 ) = 0x00000000
    0x000019C0 7610 3  XPCOM C: ( (dsIStringProperty*)12296514 )->queryInterface( 125E2F08, 0018EB48 )
    0x000019C0 7610 3  XPCOM R: ( (dsIStringProperty*)12296514 )->queryInterface( 125E2F08, *0018EB48 = 12296514 ) = 0x00000000
    0x000019C0 7610 3  XPCOM C: ( (dsIProperties*)1856FCA0 )->Count( 0018EBE8 )
    0x000019C0 7610 3  XPCOM R: ( (dsIProperties*)1856FCA0 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7610 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->Count( 0018EC28 )
    0x000019C0 7610 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->Count( *0018EC28 = 0x00000008 ) = 0x00000000
    0x000019C0 7610 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 7610 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000001, *0018EC08 = 1702F868 ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIProperty*)1702F868 )->getPropertyType( 0018EB88 )
    0x000019C0 7611 3  XPCOM R: ( (dsIProperty*)1702F868 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIProperty*)1702F868 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7611 3  XPCOM R: ( (dsIProperty*)1702F868 )->queryInterface( 125E2F08, *0018EB88 = 1702F8D4 ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIBooleanProperty*)1702F8D4 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7611 3  XPCOM R: ( (dsIBooleanProperty*)1702F8D4 )->queryInterface( 125E2F08, *0018EB88 = 1702F8D4 ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIBooleanProperty*)1702F8D4 )->Name( 0018EBF8 )
    0x000019C0 7611 3  XPCOM R: ( (dsIBooleanProperty*)1702F8D4 )->Name( *0018EBF8 = Simulators will flush the pipeline on a halt ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 7611 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000001, *0018EC08 = 1702F868 ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIProperty*)1702F868 )->getPropertyType( 0018EB88 )
    0x000019C0 7611 3  XPCOM R: ( (dsIProperty*)1702F868 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIProperty*)1702F868 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7611 3  XPCOM R: ( (dsIProperty*)1702F868 )->queryInterface( 125E2F08, *0018EB88 = 1702F8D4 ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIBooleanProperty*)1702F8D4 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7611 3  XPCOM R: ( (dsIBooleanProperty*)1702F8D4 )->queryInterface( 125E2F08, *0018EB88 = 1702F8D4 ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->Count( 0018EC28 )
    0x000019C0 7611 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->Count( *0018EC28 = 0x00000008 ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 7611 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000002, *0018EC08 = 1702F8F0 ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIProperty*)1702F8F0 )->getPropertyType( 0018EB88 )
    0x000019C0 7611 3  XPCOM R: ( (dsIProperty*)1702F8F0 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIProperty*)1702F8F0 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7611 3  XPCOM R: ( (dsIProperty*)1702F8F0 )->queryInterface( 125E2F08, *0018EB88 = 1702F95C ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIBooleanProperty*)1702F95C )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7611 3  XPCOM R: ( (dsIBooleanProperty*)1702F95C )->queryInterface( 125E2F08, *0018EB88 = 1702F95C ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIBooleanProperty*)1702F95C )->Name( 0018EBF8 )
    0x000019C0 7611 3  XPCOM R: ( (dsIBooleanProperty*)1702F95C )->Name( *0018EBF8 = Automatically step over functions without debug information when source stepping ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 7611 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000002, *0018EC08 = 1702F8F0 ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIProperty*)1702F8F0 )->getPropertyType( 0018EB88 )
    0x000019C0 7611 3  XPCOM R: ( (dsIProperty*)1702F8F0 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIProperty*)1702F8F0 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7611 3  XPCOM R: ( (dsIProperty*)1702F8F0 )->queryInterface( 125E2F08, *0018EB88 = 1702F95C ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIBooleanProperty*)1702F95C )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7611 3  XPCOM R: ( (dsIBooleanProperty*)1702F95C )->queryInterface( 125E2F08, *0018EB88 = 1702F95C ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->Count( 0018EC28 )
    0x000019C0 7611 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->Count( *0018EC28 = 0x00000008 ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000003, 0018EC08 )
    0x000019C0 7611 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000003, *0018EC08 = 1702FA88 ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIProperty*)1702FA88 )->getPropertyType( 0018EB88 )
    0x000019C0 7611 3  XPCOM R: ( (dsIProperty*)1702FA88 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIProperty*)1702FA88 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7611 3  XPCOM R: ( (dsIProperty*)1702FA88 )->queryInterface( 125E2F08, *0018EB88 = 1702FAF4 ) = 0x00000000
    0x000019C0 7611 3  XPCOM C: ( (dsIBooleanProperty*)1702FAF4 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7612 3  XPCOM R: ( (dsIBooleanProperty*)1702FAF4 )->queryInterface( 125E2F08, *0018EB88 = 1702FAF4 ) = 0x00000000
    0x000019C0 7612 3  XPCOM C: ( (dsIBooleanProperty*)1702FAF4 )->Name( 0018EBF8 )
    0x000019C0 7612 3  XPCOM R: ( (dsIBooleanProperty*)1702FAF4 )->Name( *0018EBF8 = Allow power transitions while running if supported (low power running) ) = 0x00000000
    0x000019C0 7612 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000003, 0018EC08 )
    0x000019C0 7612 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000003, *0018EC08 = 1702FA88 ) = 0x00000000
    0x000019C0 7612 3  XPCOM C: ( (dsIProperty*)1702FA88 )->getPropertyType( 0018EB88 )
    0x000019C0 7612 3  XPCOM R: ( (dsIProperty*)1702FA88 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 7612 3  XPCOM C: ( (dsIProperty*)1702FA88 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7612 3  XPCOM R: ( (dsIProperty*)1702FA88 )->queryInterface( 125E2F08, *0018EB88 = 1702FAF4 ) = 0x00000000
    0x000019C0 7612 3  XPCOM C: ( (dsIBooleanProperty*)1702FAF4 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7612 3  XPCOM R: ( (dsIBooleanProperty*)1702FAF4 )->queryInterface( 125E2F08, *0018EB88 = 1702FAF4 ) = 0x00000000
    0x000019C0 7612 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->Count( 0018EC28 )
    0x000019C0 7612 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->Count( *0018EC28 = 0x00000008 ) = 0x00000000
    0x000019C0 7612 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000004, 0018EC08 )
    0x000019C0 7612 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000004, *0018EC08 = 1702FB10 ) = 0x00000000
    0x000019C0 7612 3  XPCOM C: ( (dsIProperty*)1702FB10 )->getPropertyType( 0018EB88 )
    0x000019C0 7612 3  XPCOM R: ( (dsIProperty*)1702FB10 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 7612 3  XPCOM C: ( (dsIProperty*)1702FB10 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7612 3  XPCOM R: ( (dsIProperty*)1702FB10 )->queryInterface( 125E2F08, *0018EB88 = 1702FB7C ) = 0x00000000
    0x000019C0 7612 3  XPCOM C: ( (dsIBooleanProperty*)1702FB7C )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7612 3  XPCOM R: ( (dsIBooleanProperty*)1702FB7C )->queryInterface( 125E2F08, *0018EB88 = 1702FB7C ) = 0x00000000
    0x000019C0 7612 3  XPCOM C: ( (dsIBooleanProperty*)1702FB7C )->Name( 0018EBF8 )
    0x000019C0 7612 3  XPCOM R: ( (dsIBooleanProperty*)1702FB7C )->Name( *0018EBF8 = Add timestamp information to target output ) = 0x00000000
    0x000019C0 7612 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000004, 0018EC08 )
    0x000019C0 7612 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000004, *0018EC08 = 1702FB10 ) = 0x00000000
    0x000019C0 7612 3  XPCOM C: ( (dsIProperty*)1702FB10 )->getPropertyType( 0018EB88 )
    0x000019C0 7612 3  XPCOM R: ( (dsIProperty*)1702FB10 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 7612 3  XPCOM C: ( (dsIProperty*)1702FB10 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7612 3  XPCOM R: ( (dsIProperty*)1702FB10 )->queryInterface( 125E2F08, *0018EB88 = 1702FB7C ) = 0x00000000
    0x000019C0 7612 3  XPCOM C: ( (dsIBooleanProperty*)1702FB7C )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7612 3  XPCOM R: ( (dsIBooleanProperty*)1702FB7C )->queryInterface( 125E2F08, *0018EB88 = 1702FB7C ) = 0x00000000
    0x000019C0 7612 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->Count( 0018EC28 )
    0x000019C0 7612 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->Count( *0018EC28 = 0x00000008 ) = 0x00000000
    0x000019C0 7612 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000005, 0018EC08 )
    0x000019C0 7612 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000005, *0018EC08 = 1702FB98 ) = 0x00000000
    0x000019C0 7612 3  XPCOM C: ( (dsIProperty*)1702FB98 )->getPropertyType( 0018EB88 )
    0x000019C0 7612 3  XPCOM R: ( (dsIProperty*)1702FB98 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 7612 3  XPCOM C: ( (dsIProperty*)1702FB98 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7612 3  XPCOM R: ( (dsIProperty*)1702FB98 )->queryInterface( 125E2F08, *0018EB88 = 1702FC04 ) = 0x00000000
    0x000019C0 7612 3  XPCOM C: ( (dsIBooleanProperty*)1702FC04 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7612 3  XPCOM R: ( (dsIBooleanProperty*)1702FC04 )->queryInterface( 125E2F08, *0018EB88 = 1702FC04 ) = 0x00000000
    0x000019C0 7612 3  XPCOM C: ( (dsIBooleanProperty*)1702FC04 )->Name( 0018EBF8 )
    0x000019C0 7612 3  XPCOM R: ( (dsIBooleanProperty*)1702FC04 )->Name( *0018EBF8 = Allow software breakpoints to be used ) = 0x00000000
    0x000019C0 7613 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000005, 0018EC08 )
    0x000019C0 7613 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000005, *0018EC08 = 1702FB98 ) = 0x00000000
    0x000019C0 7613 3  XPCOM C: ( (dsIProperty*)1702FB98 )->getPropertyType( 0018EB88 )
    0x000019C0 7613 3  XPCOM R: ( (dsIProperty*)1702FB98 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 7613 3  XPCOM C: ( (dsIProperty*)1702FB98 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7613 3  XPCOM R: ( (dsIProperty*)1702FB98 )->queryInterface( 125E2F08, *0018EB88 = 1702FC04 ) = 0x00000000
    0x000019C0 7613 3  XPCOM C: ( (dsIBooleanProperty*)1702FC04 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7613 3  XPCOM R: ( (dsIBooleanProperty*)1702FC04 )->queryInterface( 125E2F08, *0018EB88 = 1702FC04 ) = 0x00000000
    0x000019C0 7613 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->Count( 0018EC28 )
    0x000019C0 7613 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->Count( *0018EC28 = 0x00000008 ) = 0x00000000
    0x000019C0 7613 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000006, 0018EC08 )
    0x000019C0 7613 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000006, *0018EC08 = 122971B8 ) = 0x00000000
    0x000019C0 7613 3  XPCOM C: ( (dsIProperty*)122971B8 )->getPropertyType( 0018EB88 )
    0x000019C0 7613 3  XPCOM R: ( (dsIProperty*)122971B8 )->getPropertyType( *0018EB88 = 0x00000004 ) = 0x00000000
    0x000019C0 7613 3  XPCOM C: ( (dsIProperty*)122971B8 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7613 3  XPCOM R: ( (dsIProperty*)122971B8 )->queryInterface( 125E2F08, *0018EB88 = 12297224 ) = 0x00000000
    0x000019C0 7613 3  XPCOM C: ( (dsIStringProperty*)12297224 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7613 3  XPCOM R: ( (dsIStringProperty*)12297224 )->queryInterface( 125E2F08, *0018EB88 = 12297224 ) = 0x00000000
    0x000019C0 7613 3  XPCOM C: ( (dsIStringProperty*)12297224 )->Name( 0018EBF8 )
    0x000019C0 7613 3  XPCOM R: ( (dsIStringProperty*)12297224 )->Name( *0018EBF8 = Default directory for File IO:  ) = 0x00000000
    0x000019C0 7613 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000006, 0018EC08 )
    0x000019C0 7613 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000006, *0018EC08 = 122971B8 ) = 0x00000000
    0x000019C0 7613 3  XPCOM C: ( (dsIProperty*)122971B8 )->getPropertyType( 0018EB88 )
    0x000019C0 7613 3  XPCOM R: ( (dsIProperty*)122971B8 )->getPropertyType( *0018EB88 = 0x00000004 ) = 0x00000000
    0x000019C0 7613 3  XPCOM C: ( (dsIProperty*)122971B8 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7613 3  XPCOM R: ( (dsIProperty*)122971B8 )->queryInterface( 125E2F08, *0018EB88 = 12297224 ) = 0x00000000
    0x000019C0 7613 3  XPCOM C: ( (dsIStringProperty*)12297224 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7613 3  XPCOM R: ( (dsIStringProperty*)12297224 )->queryInterface( 125E2F08, *0018EB88 = 12297224 ) = 0x00000000
    0x000019C0 7613 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->Count( 0018EC28 )
    0x000019C0 7613 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->Count( *0018EC28 = 0x00000008 ) = 0x00000000
    0x000019C0 7613 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000007, 0018EC08 )
    0x000019C0 7613 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000007, *0018EC08 = 12412420 ) = 0x00000000
    0x000019C0 7613 3  XPCOM C: ( (dsIProperty*)12412420 )->getPropertyType( 0018EB88 )
    0x000019C0 7613 3  XPCOM R: ( (dsIProperty*)12412420 )->getPropertyType( *0018EB88 = 0x00000003 ) = 0x00000000
    0x000019C0 7613 3  XPCOM C: ( (dsIProperty*)12412420 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7613 3  XPCOM R: ( (dsIProperty*)12412420 )->queryInterface( 125E2F08, *0018EB88 = 124124C4 ) = 0x00000000
    0x000019C0 7613 3  XPCOM C: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7613 3  XPCOM R: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 125E2F08, *0018EB88 = 1241248C ) = 0x00000000
    0x000019C0 7613 3  XPCOM C: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7613 3  XPCOM R: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 125E2F08, *0018EB88 = 124124C4 ) = 0x00000000
    0x000019C0 7614 3  XPCOM C: ( (dsIChoiceListProperty*)124124C4 )->Name( 0018EBF8 )
    0x000019C0 7614 3  XPCOM R: ( (dsIChoiceListProperty*)124124C4 )->Name( *0018EBF8 = When added to a sync group: ) = 0x00000000
    0x000019C0 7614 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000007, 0018EC08 )
    0x000019C0 7614 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->getProperty( 0x00000007, *0018EC08 = 12412420 ) = 0x00000000
    0x000019C0 7614 3  XPCOM C: ( (dsIProperty*)12412420 )->getPropertyType( 0018EB88 )
    0x000019C0 7614 3  XPCOM R: ( (dsIProperty*)12412420 )->getPropertyType( *0018EB88 = 0x00000003 ) = 0x00000000
    0x000019C0 7614 3  XPCOM C: ( (dsIProperty*)12412420 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7614 3  XPCOM R: ( (dsIProperty*)12412420 )->queryInterface( 125E2F08, *0018EB88 = 124124C4 ) = 0x00000000
    0x000019C0 7614 3  XPCOM C: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7614 3  XPCOM R: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 125E2F08, *0018EB88 = 1241248C ) = 0x00000000
    0x000019C0 7614 3  XPCOM C: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7614 3  XPCOM R: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 125E2F08, *0018EB88 = 124124C4 ) = 0x00000000
    0x000019C0 7614 3  XPCOM C: ( (dsIProperties*)1856F6D0 )->Count( 0018EC28 )
    0x000019C0 7614 3  XPCOM R: ( (dsIProperties*)1856F6D0 )->Count( *0018EC28 = 0x00000008 ) = 0x00000000
    0x000019C0 7614 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->Count( 0018EC68 )
    0x000019C0 7614 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->Count( *0018EC68 = 0x00000005 ) = 0x00000000
    0x000019C0 7614 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000003, 0018EC48 )
    0x000019C0 7614 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000003, *0018EC48 = 17132CB0 ) = 0x00000000
    0x000019C0 7614 3  XPCOM C: ( (dsIProperty*)17132CB0 )->getPropertyType( 0018EBC8 )
    0x000019C0 7614 3  XPCOM R: ( (dsIProperty*)17132CB0 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 7614 3  XPCOM C: ( (dsIProperty*)17132CB0 )->queryInterface( 125E2F08, 0018EBC8 )
    0x000019C0 7614 3  XPCOM R: ( (dsIProperty*)17132CB0 )->queryInterface( 125E2F08, *0018EBC8 = 17132D1C ) = 0x00000000
    0x000019C0 7614 3  XPCOM C: ( (dsINode*)17132D1C )->queryInterface( 125E2F08, 0018EBC8 )
    0x000019C0 7614 3  XPCOM R: ( (dsINode*)17132D1C )->queryInterface( 125E2F08, *0018EBC8 = 17132D1C ) = 0x00000000
    0x000019C0 7614 3  XPCOM C: ( (dsINode*)17132D1C )->Name( 0018EC38 )
    0x000019C0 7614 3  XPCOM R: ( (dsINode*)17132D1C )->Name( *0018EC38 = Cortex M Disassembly Style Options ) = 0x00000000
    0x000019C0 7614 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000003, 0018EC48 )
    0x000019C0 7614 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000003, *0018EC48 = 17132CB0 ) = 0x00000000
    0x000019C0 7614 3  XPCOM C: ( (dsIProperty*)17132CB0 )->getPropertyType( 0018EBC8 )
    0x000019C0 7614 3  XPCOM R: ( (dsIProperty*)17132CB0 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 7614 3  XPCOM C: ( (dsIProperty*)17132CB0 )->queryInterface( 125E2F08, 0018EBC8 )
    0x000019C0 7614 3  XPCOM R: ( (dsIProperty*)17132CB0 )->queryInterface( 125E2F08, *0018EBC8 = 17132D1C ) = 0x00000000
    0x000019C0 7614 3  XPCOM C: ( (dsINode*)17132D1C )->queryInterface( 125E2F08, 0018EBC8 )
    0x000019C0 7614 3  XPCOM R: ( (dsINode*)17132D1C )->queryInterface( 125E2F08, *0018EBC8 = 17132D1C ) = 0x00000000
    0x000019C0 7614 3  XPCOM C: ( (dsINode*)17132D1C )->getChildren( 0018EC08 )
    0x000019C0 7614 3  XPCOM R: ( (dsINode*)17132D1C )->getChildren( *0018EC08 = 1856FB20 ) = 0x00000000
    0x000019C0 7614 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000003, 0018EC48 )
    0x000019C0 7614 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000003, *0018EC48 = 17132CB0 ) = 0x00000000
    0x000019C0 7614 3  XPCOM C: ( (dsIProperty*)17132CB0 )->getPropertyType( 0018EBC8 )
    0x000019C0 7614 3  XPCOM R: ( (dsIProperty*)17132CB0 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 7614 3  XPCOM C: ( (dsIProperty*)17132CB0 )->queryInterface( 125E2F08, 0018EBC8 )
    0x000019C0 7614 3  XPCOM R: ( (dsIProperty*)17132CB0 )->queryInterface( 125E2F08, *0018EBC8 = 17132D1C ) = 0x00000000
    0x000019C0 7614 3  XPCOM C: ( (dsINode*)17132D1C )->queryInterface( 125E2F08, 0018EBC8 )
    0x000019C0 7614 3  XPCOM R: ( (dsINode*)17132D1C )->queryInterface( 125E2F08, *0018EBC8 = 17132D1C ) = 0x00000000
    0x000019C0 7615 3  XPCOM C: ( (dsINode*)17132D1C )->getChildren( 0018EC08 )
    0x000019C0 7615 3  XPCOM R: ( (dsINode*)17132D1C )->getChildren( *0018EC08 = 1856FDC0 ) = 0x00000000
    0x000019C0 7615 3  XPCOM C: ( (dsIProperties*)1856FDC0 )->Count( 0018EC68 )
    0x000019C0 7615 3  XPCOM R: ( (dsIProperties*)1856FDC0 )->Count( *0018EC68 = 0x00000001 ) = 0x00000000
    0x000019C0 7615 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000003, 0018EC48 )
    0x000019C0 7615 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000003, *0018EC48 = 17132CB0 ) = 0x00000000
    0x000019C0 7615 3  XPCOM C: ( (dsIProperty*)17132CB0 )->getPropertyType( 0018EBC8 )
    0x000019C0 7615 3  XPCOM R: ( (dsIProperty*)17132CB0 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 7615 3  XPCOM C: ( (dsIProperty*)17132CB0 )->queryInterface( 125E2F08, 0018EBC8 )
    0x000019C0 7615 3  XPCOM R: ( (dsIProperty*)17132CB0 )->queryInterface( 125E2F08, *0018EBC8 = 17132D1C ) = 0x00000000
    0x000019C0 7615 3  XPCOM C: ( (dsINode*)17132D1C )->queryInterface( 125E2F08, 0018EBC8 )
    0x000019C0 7615 3  XPCOM R: ( (dsINode*)17132D1C )->queryInterface( 125E2F08, *0018EBC8 = 17132D1C ) = 0x00000000
    0x000019C0 7615 3  XPCOM C: ( (dsINode*)17132D1C )->getChildren( 0018EC08 )
    0x000019C0 7615 3  XPCOM R: ( (dsINode*)17132D1C )->getChildren( *0018EC08 = 1856E680 ) = 0x00000000
    0x000019C0 7615 3  XPCOM C: ( (dsIProperties*)1856E680 )->Count( 0018EC28 )
    0x000019C0 7615 3  XPCOM R: ( (dsIProperties*)1856E680 )->Count( *0018EC28 = 0x00000001 ) = 0x00000000
    0x000019C0 7615 3  XPCOM C: ( (dsIProperties*)1856E680 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 7615 3  XPCOM R: ( (dsIProperties*)1856E680 )->getProperty( 0x00000000, *0018EC08 = 122DD968 ) = 0x00000000
    0x000019C0 7615 3  XPCOM C: ( (dsIProperty*)122DD968 )->getPropertyType( 0018EB88 )
    0x000019C0 7615 3  XPCOM R: ( (dsIProperty*)122DD968 )->getPropertyType( *0018EB88 = 0x00000003 ) = 0x00000000
    0x000019C0 7615 3  XPCOM C: ( (dsIProperty*)122DD968 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7615 3  XPCOM R: ( (dsIProperty*)122DD968 )->queryInterface( 125E2F08, *0018EB88 = 122DDA0C ) = 0x00000000
    0x000019C0 7615 3  XPCOM C: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7615 3  XPCOM R: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 125E2F08, *0018EB88 = 122DD9D4 ) = 0x00000000
    0x000019C0 7615 3  XPCOM C: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7615 3  XPCOM R: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 125E2F08, *0018EB88 = 122DDA0C ) = 0x00000000
    0x000019C0 7615 3  XPCOM C: ( (dsIChoiceListProperty*)122DDA0C )->Name( 0018EBF8 )
    0x000019C0 7615 3  XPCOM R: ( (dsIChoiceListProperty*)122DDA0C )->Name( *0018EBF8 = Disassembly Mode ) = 0x00000000
    0x000019C0 7615 3  XPCOM C: ( (dsIProperties*)1856E680 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 7615 3  XPCOM R: ( (dsIProperties*)1856E680 )->getProperty( 0x00000000, *0018EC08 = 122DD968 ) = 0x00000000
    0x000019C0 7615 3  XPCOM C: ( (dsIProperty*)122DD968 )->getPropertyType( 0018EB88 )
    0x000019C0 7615 3  XPCOM R: ( (dsIProperty*)122DD968 )->getPropertyType( *0018EB88 = 0x00000003 ) = 0x00000000
    0x000019C0 7615 3  XPCOM C: ( (dsIProperty*)122DD968 )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7615 3  XPCOM R: ( (dsIProperty*)122DD968 )->queryInterface( 125E2F08, *0018EB88 = 122DDA0C ) = 0x00000000
    0x000019C0 7615 3  XPCOM C: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7615 3  XPCOM R: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 125E2F08, *0018EB88 = 122DD9D4 ) = 0x00000000
    0x000019C0 7615 3  XPCOM C: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 125E2F08, 0018EB88 )
    0x000019C0 7615 3  XPCOM R: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 125E2F08, *0018EB88 = 122DDA0C ) = 0x00000000
    0x000019C0 7615 3  XPCOM C: ( (dsIProperties*)1856E680 )->Count( 0018EC28 )
    0x000019C0 7615 3  XPCOM R: ( (dsIProperties*)1856E680 )->Count( *0018EC28 = 0x00000001 ) = 0x00000000
    0x000019C0 7615 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->Count( 0018EC68 )
    0x000019C0 7616 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->Count( *0018EC68 = 0x00000005 ) = 0x00000000
    0x000019C0 7616 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000004, 0018EC48 )
    0x000019C0 7616 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000004, *0018EC48 = 16F52690 ) = 0x00000000
    0x000019C0 7616 3  XPCOM C: ( (dsIProperty*)16F52690 )->getPropertyType( 0018EBC8 )
    0x000019C0 7616 3  XPCOM R: ( (dsIProperty*)16F52690 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 7616 3  XPCOM C: ( (dsIProperty*)16F52690 )->queryInterface( 125E2F08, 0018EBC8 )
    0x000019C0 7616 3  XPCOM R: ( (dsIProperty*)16F52690 )->queryInterface( 125E2F08, *0018EBC8 = 16F526FC ) = 0x00000000
    0x000019C0 7616 3  XPCOM C: ( (dsINode*)16F526FC )->queryInterface( 125E2F08, 0018EBC8 )
    0x000019C0 7616 3  XPCOM R: ( (dsINode*)16F526FC )->queryInterface( 125E2F08, *0018EBC8 = 16F526FC ) = 0x00000000
    0x000019C0 7616 3  XPCOM C: ( (dsINode*)16F526FC )->Name( 0018EC38 )
    0x000019C0 7616 3  XPCOM R: ( (dsINode*)16F526FC )->Name( *0018EC38 = Flash Settings ) = 0x00000000
    0x000019C0 7616 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000004, 0018EC48 )
    0x000019C0 7616 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000004, *0018EC48 = 16F52690 ) = 0x00000000
    0x000019C0 7616 3  XPCOM C: ( (dsIProperty*)16F52690 )->getPropertyType( 0018EBC8 )
    0x000019C0 7616 3  XPCOM R: ( (dsIProperty*)16F52690 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 7616 3  XPCOM C: ( (dsIProperty*)16F52690 )->queryInterface( 125E2F08, 0018EBC8 )
    0x000019C0 7616 3  XPCOM R: ( (dsIProperty*)16F52690 )->queryInterface( 125E2F08, *0018EBC8 = 16F526FC ) = 0x00000000
    0x000019C0 7616 3  XPCOM C: ( (dsINode*)16F526FC )->queryInterface( 125E2F08, 0018EBC8 )
    0x000019C0 7616 3  XPCOM R: ( (dsINode*)16F526FC )->queryInterface( 125E2F08, *0018EBC8 = 16F526FC ) = 0x00000000
    0x000019C0 7616 3  XPCOM C: ( (dsINode*)16F526FC )->getChildren( 0018EC08 )
    0x000019C0 7616 3  XPCOM R: ( (dsINode*)16F526FC )->getChildren( *0018EC08 = 1856F250 ) = 0x00000000
    0x000019C0 7616 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000004, 0018EC48 )
    0x000019C0 7616 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000004, *0018EC48 = 16F52690 ) = 0x00000000
    0x000019C0 7616 3  XPCOM C: ( (dsIProperty*)16F52690 )->getPropertyType( 0018EBC8 )
    0x000019C0 7616 3  XPCOM R: ( (dsIProperty*)16F52690 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 7616 3  XPCOM C: ( (dsIProperty*)16F52690 )->queryInterface( 125E2E90, 0018EBC8 )
    0x000019C0 7616 3  XPCOM R: ( (dsIProperty*)16F52690 )->queryInterface( 125E2E90, *0018EBC8 = 16F526FC ) = 0x00000000
    0x000019C0 7616 3  XPCOM C: ( (dsINode*)16F526FC )->queryInterface( 125E2E90, 0018EBC8 )
    0x000019C0 7616 3  XPCOM R: ( (dsINode*)16F526FC )->queryInterface( 125E2E90, *0018EBC8 = 16F526FC ) = 0x00000000
    0x000019C0 7616 3  XPCOM C: ( (dsINode*)16F526FC )->getChildren( 0018EC08 )
    0x000019C0 7616 3  XPCOM R: ( (dsINode*)16F526FC )->getChildren( *0018EC08 = 1856F0A0 ) = 0x00000000
    0x000019C0 7616 3  XPCOM C: ( (dsIProperties*)1856F0A0 )->Count( 0018EC68 )
    0x000019C0 7616 3  XPCOM R: ( (dsIProperties*)1856F0A0 )->Count( *0018EC68 = 0x00000009 ) = 0x00000000
    0x000019C0 7616 3  XPCOM C: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000004, 0018EC48 )
    0x000019C0 7616 3  XPCOM R: ( (dsIProperties*)1856E5F0 )->getProperty( 0x00000004, *0018EC48 = 16F52690 ) = 0x00000000
    0x000019C0 7616 3  XPCOM C: ( (dsIProperty*)16F52690 )->getPropertyType( 0018EBC8 )
    0x000019C0 7616 3  XPCOM R: ( (dsIProperty*)16F52690 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 7616 3  XPCOM C: ( (dsIProperty*)16F52690 )->queryInterface( 125E2F08, 0018EBC8 )
    0x000019C0 7616 3  XPCOM R: ( (dsIProperty*)16F52690 )->queryInterface( 125E2F08, *0018EBC8 = 16F526FC ) = 0x00000000
    0x000019C0 7616 3  XPCOM C: ( (dsINode*)16F526FC )->queryInterface( 125E2F08, 0018EBC8 )
    0x000019C0 7616 3  XPCOM R: ( (dsINode*)16F526FC )->queryInterface( 125E2F08, *0018EBC8 = 16F526FC ) = 0x00000000
    0x000019C0 7616 3  XPCOM C: ( (dsINode*)16F526FC )->getChildren( 0018EC08 )
    0x000019C0 7617 3  XPCOM R: ( (dsINode*)16F526FC )->getChildren( *0018EC08 = 1856F490 ) = 0x00000000
    0x000019C0 7617 3  XPCOM C: ( (dsIProperties*)1856F490 )->Count( 0018EC28 )
    0x000019C0 7617 3  XPCOM R: ( (dsIProperties*)1856F490 )->Count( *0018EC28 = 0x00000009 ) = 0x00000000
    0x000019C0 7617 3  XPCOM C: ( (dsIProperties*)1856F490 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 7617 3  XPCOM R: ( (dsIProperties*)1856F490 )->getProperty( 0x00000000, *0018EC08 = 185E9200 ) = 0x00000000
    0x000019C0 7617 3  XPCOM C: ( (dsIProperty*)185E9200 )->getPropertyType( 0018EB88 )
    0x000019C0 7617 3  XPCOM R: ( (dsIProperty*)185E9200 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7617 3  XPCOM C: ( (dsIProperty*)185E9200 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7617 3  XPCOM R: ( (dsIProperty*)185E9200 )->queryInterface( 125E2E90, *0018EB88 = 185E926C ) = 0x00000000
    0x000019C0 7617 3  XPCOM C: ( (dsIGroup*)185E926C )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7617 3  XPCOM R: ( (dsIGroup*)185E926C )->queryInterface( 125E2E90, *0018EB88 = 185E926C ) = 0x00000000
    0x000019C0 7617 3  XPCOM C: ( (dsIGroup*)185E926C )->Name( 0018EBF8 )
    0x000019C0 7617 3  XPCOM R: ( (dsIGroup*)185E926C )->Name( *0018EBF8 = Flash Settings ) = 0x00000000
    0x000019C0 7617 3  XPCOM C: ( (dsIProperties*)1856F490 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 7617 3  XPCOM R: ( (dsIProperties*)1856F490 )->getProperty( 0x00000000, *0018EC08 = 185E9200 ) = 0x00000000
    0x000019C0 7617 3  XPCOM C: ( (dsIProperty*)185E9200 )->getPropertyType( 0018EB88 )
    0x000019C0 7617 3  XPCOM R: ( (dsIProperty*)185E9200 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7617 3  XPCOM C: ( (dsIProperty*)185E9200 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7617 3  XPCOM R: ( (dsIProperty*)185E9200 )->queryInterface( 125E2E90, *0018EB88 = 185E926C ) = 0x00000000
    0x000019C0 7617 3  XPCOM C: ( (dsIGroup*)185E926C )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7617 3  XPCOM R: ( (dsIGroup*)185E926C )->queryInterface( 125E2E90, *0018EB88 = 185E926C ) = 0x00000000
    0x000019C0 7617 3  XPCOM C: ( (dsIGroup*)185E926C )->getChildren( 0018EBC8 )
    0x000019C0 7617 3  XPCOM R: ( (dsIGroup*)185E926C )->getChildren( *0018EBC8 = 1856FBB0 ) = 0x00000000
    0x000019C0 7617 3  XPCOM C: ( (dsIProperties*)1856F490 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 7617 3  XPCOM R: ( (dsIProperties*)1856F490 )->getProperty( 0x00000000, *0018EC08 = 185E9200 ) = 0x00000000
    0x000019C0 7617 3  XPCOM C: ( (dsIProperty*)185E9200 )->getPropertyType( 0018EB88 )
    0x000019C0 7617 3  XPCOM R: ( (dsIProperty*)185E9200 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7617 3  XPCOM C: ( (dsIProperty*)185E9200 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7617 3  XPCOM R: ( (dsIProperty*)185E9200 )->queryInterface( 125E2E90, *0018EB88 = 185E926C ) = 0x00000000
    0x000019C0 7617 3  XPCOM C: ( (dsIGroup*)185E926C )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7617 3  XPCOM R: ( (dsIGroup*)185E926C )->queryInterface( 125E2E90, *0018EB88 = 185E926C ) = 0x00000000
    0x000019C0 7617 3  XPCOM C: ( (dsIGroup*)185E926C )->getChildren( 0018EBC8 )
    0x000019C0 7617 3  XPCOM R: ( (dsIGroup*)185E926C )->getChildren( *0018EBC8 = 1856F850 ) = 0x00000000
    0x000019C0 7617 3  XPCOM C: ( (dsIProperties*)1856F850 )->Count( 0018EC28 )
    0x000019C0 7617 3  XPCOM R: ( (dsIProperties*)1856F850 )->Count( *0018EC28 = 0x00000002 ) = 0x00000000
    0x000019C0 7617 3  XPCOM C: ( (dsIProperties*)1856F490 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 7617 3  XPCOM R: ( (dsIProperties*)1856F490 )->getProperty( 0x00000000, *0018EC08 = 185E9200 ) = 0x00000000
    0x000019C0 7617 3  XPCOM C: ( (dsIProperty*)185E9200 )->getPropertyType( 0018EB88 )
    0x000019C0 7617 3  XPCOM R: ( (dsIProperty*)185E9200 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7617 3  XPCOM C: ( (dsIProperty*)185E9200 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7617 3  XPCOM R: ( (dsIProperty*)185E9200 )->queryInterface( 125E2E90, *0018EB88 = 185E926C ) = 0x00000000
    0x000019C0 7617 3  XPCOM C: ( (dsIGroup*)185E926C )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7617 3  XPCOM R: ( (dsIGroup*)185E926C )->queryInterface( 125E2E90, *0018EB88 = 185E926C ) = 0x00000000
    0x000019C0 7618 3  XPCOM C: ( (dsIGroup*)185E926C )->getChildren( 0018EBC8 )
    0x000019C0 7618 3  XPCOM R: ( (dsIGroup*)185E926C )->getChildren( *0018EBC8 = 1856FD30 ) = 0x00000000
    0x000019C0 7618 3  XPCOM C: ( (dsIProperties*)1856FD30 )->Count( 0018EBE8 )
    0x000019C0 7618 3  XPCOM R: ( (dsIProperties*)1856FD30 )->Count( *0018EBE8 = 0x00000002 ) = 0x00000000
    0x000019C0 7618 3  XPCOM C: ( (dsIProperties*)1856FD30 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 7618 3  XPCOM R: ( (dsIProperties*)1856FD30 )->getProperty( 0x00000000, *0018EBC8 = 005AFD50 ) = 0x00000000
    0x000019C0 7618 3  XPCOM C: ( (dsIProperty*)005AFD50 )->getPropertyType( 0018EB48 )
    0x000019C0 7618 3  XPCOM R: ( (dsIProperty*)005AFD50 )->getPropertyType( *0018EB48 = 0x00000001 ) = 0x00000000
    0x000019C0 7618 3  XPCOM C: ( (dsIProperty*)005AFD50 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7618 3  XPCOM R: ( (dsIProperty*)005AFD50 )->queryInterface( 125E2E90, *0018EB48 = 005AFDBC ) = 0x00000000
    0x000019C0 7618 3  XPCOM C: ( (dsINumericProperty*)005AFDBC )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7618 3  XPCOM R: ( (dsINumericProperty*)005AFDBC )->queryInterface( 125E2E90, *0018EB48 = 005AFDBC ) = 0x00000000
    0x000019C0 7618 3  XPCOM C: ( (dsINumericProperty*)005AFDBC )->Name( 0018EBB8 )
    0x000019C0 7618 3  XPCOM R: ( (dsINumericProperty*)005AFDBC )->Name( *0018EBB8 = Crystal Frequency: (MHz) ) = 0x00000000
    0x000019C0 7618 3  XPCOM C: ( (dsIProperties*)1856FD30 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 7618 3  XPCOM R: ( (dsIProperties*)1856FD30 )->getProperty( 0x00000000, *0018EBC8 = 005AFD50 ) = 0x00000000
    0x000019C0 7618 3  XPCOM C: ( (dsIProperty*)005AFD50 )->getPropertyType( 0018EB48 )
    0x000019C0 7618 3  XPCOM R: ( (dsIProperty*)005AFD50 )->getPropertyType( *0018EB48 = 0x00000001 ) = 0x00000000
    0x000019C0 7618 3  XPCOM C: ( (dsIProperty*)005AFD50 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7618 3  XPCOM R: ( (dsIProperty*)005AFD50 )->queryInterface( 125E2E90, *0018EB48 = 005AFDBC ) = 0x00000000
    0x000019C0 7618 3  XPCOM C: ( (dsINumericProperty*)005AFDBC )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7618 3  XPCOM R: ( (dsINumericProperty*)005AFDBC )->queryInterface( 125E2E90, *0018EB48 = 005AFDBC ) = 0x00000000
    0x000019C0 7618 3  XPCOM C: ( (dsIProperties*)1856FD30 )->Count( 0018EBE8 )
    0x000019C0 7618 3  XPCOM R: ( (dsIProperties*)1856FD30 )->Count( *0018EBE8 = 0x00000002 ) = 0x00000000
    0x000019C0 7618 3  XPCOM C: ( (dsIProperties*)1856FD30 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 7618 3  XPCOM R: ( (dsIProperties*)1856FD30 )->getProperty( 0x00000001, *0018EBC8 = 185E9860 ) = 0x00000000
    0x000019C0 7618 3  XPCOM C: ( (dsIProperty*)185E9860 )->getPropertyType( 0018EB48 )
    0x000019C0 7618 3  XPCOM R: ( (dsIProperty*)185E9860 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7618 3  XPCOM C: ( (dsIProperty*)185E9860 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7618 3  XPCOM R: ( (dsIProperty*)185E9860 )->queryInterface( 125E2E90, *0018EB48 = 185E98CC ) = 0x00000000
    0x000019C0 7618 3  XPCOM C: ( (dsIBooleanProperty*)185E98CC )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7618 3  XPCOM R: ( (dsIBooleanProperty*)185E98CC )->queryInterface( 125E2E90, *0018EB48 = 185E98CC ) = 0x00000000
    0x000019C0 7618 3  XPCOM C: ( (dsIBooleanProperty*)185E98CC )->Name( 0018EBB8 )
    0x000019C0 7618 3  XPCOM R: ( (dsIBooleanProperty*)185E98CC )->Name( *0018EBB8 = Reset target during program load to Flash memory ) = 0x00000000
    0x000019C0 7618 3  XPCOM C: ( (dsIProperties*)1856FD30 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 7618 3  XPCOM R: ( (dsIProperties*)1856FD30 )->getProperty( 0x00000001, *0018EBC8 = 185E9860 ) = 0x00000000
    0x000019C0 7618 3  XPCOM C: ( (dsIProperty*)185E9860 )->getPropertyType( 0018EB48 )
    0x000019C0 7618 3  XPCOM R: ( (dsIProperty*)185E9860 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7618 3  XPCOM C: ( (dsIProperty*)185E9860 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7618 3  XPCOM R: ( (dsIProperty*)185E9860 )->queryInterface( 125E2E90, *0018EB48 = 185E98CC ) = 0x00000000
    0x000019C0 7619 3  XPCOM C: ( (dsIBooleanProperty*)185E98CC )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7619 3  XPCOM R: ( (dsIBooleanProperty*)185E98CC )->queryInterface( 125E2E90, *0018EB48 = 185E98CC ) = 0x00000000
    0x000019C0 7619 3  XPCOM C: ( (dsIProperties*)1856FD30 )->Count( 0018EBE8 )
    0x000019C0 7619 3  XPCOM R: ( (dsIProperties*)1856FD30 )->Count( *0018EBE8 = 0x00000002 ) = 0x00000000
    0x000019C0 7619 3  XPCOM C: ( (dsIProperties*)1856F490 )->Count( 0018EC28 )
    0x000019C0 7619 3  XPCOM R: ( (dsIProperties*)1856F490 )->Count( *0018EC28 = 0x00000009 ) = 0x00000000
    0x000019C0 7619 3  XPCOM C: ( (dsIProperties*)1856F490 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 7619 3  XPCOM R: ( (dsIProperties*)1856F490 )->getProperty( 0x00000001, *0018EC08 = 185E9288 ) = 0x00000000
    0x000019C0 7619 3  XPCOM C: ( (dsIProperty*)185E9288 )->getPropertyType( 0018EB88 )
    0x000019C0 7619 3  XPCOM R: ( (dsIProperty*)185E9288 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7619 3  XPCOM C: ( (dsIProperty*)185E9288 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7619 3  XPCOM R: ( (dsIProperty*)185E9288 )->queryInterface( 125E2E90, *0018EB88 = 185E92F4 ) = 0x00000000
    0x000019C0 7619 3  XPCOM C: ( (dsIGroup*)185E92F4 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7619 3  XPCOM R: ( (dsIGroup*)185E92F4 )->queryInterface( 125E2E90, *0018EB88 = 185E92F4 ) = 0x00000000
    0x000019C0 7619 3  XPCOM C: ( (dsIGroup*)185E92F4 )->Name( 0018EBF8 )
    0x000019C0 7619 3  XPCOM R: ( (dsIGroup*)185E92F4 )->Name( *0018EBF8 = Program Load Settings ) = 0x00000000
    0x000019C0 7619 3  XPCOM C: ( (dsIProperties*)1856F490 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 7619 3  XPCOM R: ( (dsIProperties*)1856F490 )->getProperty( 0x00000001, *0018EC08 = 185E9288 ) = 0x00000000
    0x000019C0 7619 3  XPCOM C: ( (dsIProperty*)185E9288 )->getPropertyType( 0018EB88 )
    0x000019C0 7619 3  XPCOM R: ( (dsIProperty*)185E9288 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7619 3  XPCOM C: ( (dsIProperty*)185E9288 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7619 3  XPCOM R: ( (dsIProperty*)185E9288 )->queryInterface( 125E2E90, *0018EB88 = 185E92F4 ) = 0x00000000
    0x000019C0 7619 3  XPCOM C: ( (dsIGroup*)185E92F4 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7619 3  XPCOM R: ( (dsIGroup*)185E92F4 )->queryInterface( 125E2E90, *0018EB88 = 185E92F4 ) = 0x00000000
    0x000019C0 7619 3  XPCOM C: ( (dsIGroup*)185E92F4 )->getChildren( 0018EBC8 )
    0x000019C0 7619 3  XPCOM R: ( (dsIGroup*)185E92F4 )->getChildren( *0018EBC8 = 1856F520 ) = 0x00000000
    0x000019C0 7619 3  XPCOM C: ( (dsIProperties*)1856F490 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 7619 3  XPCOM R: ( (dsIProperties*)1856F490 )->getProperty( 0x00000001, *0018EC08 = 185E9288 ) = 0x00000000
    0x000019C0 7619 3  XPCOM C: ( (dsIProperty*)185E9288 )->getPropertyType( 0018EB88 )
    0x000019C0 7619 3  XPCOM R: ( (dsIProperty*)185E9288 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7619 3  XPCOM C: ( (dsIProperty*)185E9288 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7619 3  XPCOM R: ( (dsIProperty*)185E9288 )->queryInterface( 125E2E90, *0018EB88 = 185E92F4 ) = 0x00000000
    0x000019C0 7619 3  XPCOM C: ( (dsIGroup*)185E92F4 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7619 3  XPCOM R: ( (dsIGroup*)185E92F4 )->queryInterface( 125E2E90, *0018EB88 = 185E92F4 ) = 0x00000000
    0x000019C0 7619 3  XPCOM C: ( (dsIGroup*)185E92F4 )->getChildren( 0018EBC8 )
    0x000019C0 7619 3  XPCOM R: ( (dsIGroup*)185E92F4 )->getChildren( *0018EBC8 = 1856F580 ) = 0x00000000
    0x000019C0 7620 3  XPCOM C: ( (dsIProperties*)1856F580 )->Count( 0018EC28 )
    0x000019C0 7620 3  XPCOM R: ( (dsIProperties*)1856F580 )->Count( *0018EC28 = 0x00000003 ) = 0x00000000
    0x000019C0 7620 3  XPCOM C: ( (dsIProperties*)1856F490 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 7620 3  XPCOM R: ( (dsIProperties*)1856F490 )->getProperty( 0x00000001, *0018EC08 = 185E9288 ) = 0x00000000
    0x000019C0 7620 3  XPCOM C: ( (dsIProperty*)185E9288 )->getPropertyType( 0018EB88 )
    0x000019C0 7620 3  XPCOM R: ( (dsIProperty*)185E9288 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7620 3  XPCOM C: ( (dsIProperty*)185E9288 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7620 3  XPCOM R: ( (dsIProperty*)185E9288 )->queryInterface( 125E2E90, *0018EB88 = 185E92F4 ) = 0x00000000
    0x000019C0 7620 3  XPCOM C: ( (dsIGroup*)185E92F4 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7620 3  XPCOM R: ( (dsIGroup*)185E92F4 )->queryInterface( 125E2E90, *0018EB88 = 185E92F4 ) = 0x00000000
    0x000019C0 7620 3  XPCOM C: ( (dsIGroup*)185E92F4 )->getChildren( 0018EBC8 )
    0x000019C0 7620 3  XPCOM R: ( (dsIGroup*)185E92F4 )->getChildren( *0018EBC8 = 1856F0D0 ) = 0x00000000
    0x000019C0 7620 3  XPCOM C: ( (dsIProperties*)1856F0D0 )->Count( 0018EBE8 )
    0x000019C0 7620 3  XPCOM R: ( (dsIProperties*)1856F0D0 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7620 3  XPCOM C: ( (dsIProperties*)1856F0D0 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 7620 3  XPCOM R: ( (dsIProperties*)1856F0D0 )->getProperty( 0x00000000, *0018EBC8 = 12412060 ) = 0x00000000
    0x000019C0 7620 3  XPCOM C: ( (dsIProperty*)12412060 )->getPropertyType( 0018EB48 )
    0x000019C0 7620 3  XPCOM R: ( (dsIProperty*)12412060 )->getPropertyType( *0018EB48 = 0x00000003 ) = 0x00000000
    0x000019C0 7620 3  XPCOM C: ( (dsIProperty*)12412060 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7620 3  XPCOM R: ( (dsIProperty*)12412060 )->queryInterface( 125E2E90, *0018EB48 = 12412104 ) = 0x00000000
    0x000019C0 7620 3  XPCOM C: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7620 3  XPCOM R: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 125E2E90, *0018EB48 = 124120CC ) = 0x00000000
    0x000019C0 7620 3  XPCOM C: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7620 3  XPCOM R: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 125E2E90, *0018EB48 = 12412104 ) = 0x00000000
    0x000019C0 7620 3  XPCOM C: ( (dsIChoiceListProperty*)12412104 )->Name( 0018EBB8 )
    0x000019C0 7620 3  XPCOM R: ( (dsIChoiceListProperty*)12412104 )->Name( *0018EBB8 = Erase Method ) = 0x00000000
    0x000019C0 7620 3  XPCOM C: ( (dsIProperties*)1856F0D0 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 7620 3  XPCOM R: ( (dsIProperties*)1856F0D0 )->getProperty( 0x00000000, *0018EBC8 = 12412060 ) = 0x00000000
    0x000019C0 7620 3  XPCOM C: ( (dsIProperty*)12412060 )->getPropertyType( 0018EB48 )
    0x000019C0 7620 3  XPCOM R: ( (dsIProperty*)12412060 )->getPropertyType( *0018EB48 = 0x00000003 ) = 0x00000000
    0x000019C0 7620 3  XPCOM C: ( (dsIProperty*)12412060 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7620 3  XPCOM R: ( (dsIProperty*)12412060 )->queryInterface( 125E2E90, *0018EB48 = 12412104 ) = 0x00000000
    0x000019C0 7620 3  XPCOM C: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7620 3  XPCOM R: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 125E2E90, *0018EB48 = 124120CC ) = 0x00000000
    0x000019C0 7620 3  XPCOM C: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7620 3  XPCOM R: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 125E2E90, *0018EB48 = 12412104 ) = 0x00000000
    0x000019C0 7620 3  XPCOM C: ( (dsIProperties*)1856F0D0 )->Count( 0018EBE8 )
    0x000019C0 7620 3  XPCOM R: ( (dsIProperties*)1856F0D0 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7620 3  XPCOM C: ( (dsIProperties*)1856F0D0 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 7621 3  XPCOM R: ( (dsIProperties*)1856F0D0 )->getProperty( 0x00000001, *0018EBC8 = 185E98E8 ) = 0x00000000
    0x000019C0 7621 3  XPCOM C: ( (dsIProperty*)185E98E8 )->getPropertyType( 0018EB48 )
    0x000019C0 7621 3  XPCOM R: ( (dsIProperty*)185E98E8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7621 3  XPCOM C: ( (dsIProperty*)185E98E8 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7621 3  XPCOM R: ( (dsIProperty*)185E98E8 )->queryInterface( 125E2E90, *0018EB48 = 185E9954 ) = 0x00000000
    0x000019C0 7621 3  XPCOM C: ( (dsIBooleanProperty*)185E9954 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7621 3  XPCOM R: ( (dsIBooleanProperty*)185E9954 )->queryInterface( 125E2E90, *0018EB48 = 185E9954 ) = 0x00000000
    0x000019C0 7621 3  XPCOM C: ( (dsIBooleanProperty*)185E9954 )->Name( 0018EBB8 )
    0x000019C0 7621 3  XPCOM R: ( (dsIBooleanProperty*)185E9954 )->Name( *0018EBB8 = Perform Blank Check on Flash memory before load program ) = 0x00000000
    0x000019C0 7621 3  XPCOM C: ( (dsIProperties*)1856F0D0 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 7621 3  XPCOM R: ( (dsIProperties*)1856F0D0 )->getProperty( 0x00000001, *0018EBC8 = 185E98E8 ) = 0x00000000
    0x000019C0 7621 3  XPCOM C: ( (dsIProperty*)185E98E8 )->getPropertyType( 0018EB48 )
    0x000019C0 7621 3  XPCOM R: ( (dsIProperty*)185E98E8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7621 3  XPCOM C: ( (dsIProperty*)185E98E8 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7621 3  XPCOM R: ( (dsIProperty*)185E98E8 )->queryInterface( 125E2E90, *0018EB48 = 185E9954 ) = 0x00000000
    0x000019C0 7621 3  XPCOM C: ( (dsIBooleanProperty*)185E9954 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7621 3  XPCOM R: ( (dsIBooleanProperty*)185E9954 )->queryInterface( 125E2E90, *0018EB48 = 185E9954 ) = 0x00000000
    0x000019C0 7621 3  XPCOM C: ( (dsIProperties*)1856F0D0 )->Count( 0018EBE8 )
    0x000019C0 7621 3  XPCOM R: ( (dsIProperties*)1856F0D0 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7621 3  XPCOM C: ( (dsIProperties*)1856F0D0 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 7621 3  XPCOM R: ( (dsIProperties*)1856F0D0 )->getProperty( 0x00000002, *0018EBC8 = 16EF8CD8 ) = 0x00000000
    0x000019C0 7621 3  XPCOM C: ( (dsIProperty*)16EF8CD8 )->getPropertyType( 0018EB48 )
    0x000019C0 7621 3  XPCOM R: ( (dsIProperty*)16EF8CD8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7621 3  XPCOM C: ( (dsIProperty*)16EF8CD8 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7621 3  XPCOM R: ( (dsIProperty*)16EF8CD8 )->queryInterface( 125E2E90, *0018EB48 = 16EF8D44 ) = 0x00000000
    0x000019C0 7621 3  XPCOM C: ( (dsIBooleanProperty*)16EF8D44 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7621 3  XPCOM R: ( (dsIBooleanProperty*)16EF8D44 )->queryInterface( 125E2E90, *0018EB48 = 16EF8D44 ) = 0x00000000
    0x000019C0 7621 3  XPCOM C: ( (dsIBooleanProperty*)16EF8D44 )->Name( 0018EBB8 )
    0x000019C0 7621 3  XPCOM R: ( (dsIBooleanProperty*)16EF8D44 )->Name( *0018EBB8 = Calculate CRC32 on entire Flash Memory after load program ) = 0x00000000
    0x000019C0 7621 3  XPCOM C: ( (dsIProperties*)1856F0D0 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 7621 3  XPCOM R: ( (dsIProperties*)1856F0D0 )->getProperty( 0x00000002, *0018EBC8 = 16EF8CD8 ) = 0x00000000
    0x000019C0 7621 3  XPCOM C: ( (dsIProperty*)16EF8CD8 )->getPropertyType( 0018EB48 )
    0x000019C0 7621 3  XPCOM R: ( (dsIProperty*)16EF8CD8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 7621 3  XPCOM C: ( (dsIProperty*)16EF8CD8 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7621 3  XPCOM R: ( (dsIProperty*)16EF8CD8 )->queryInterface( 125E2E90, *0018EB48 = 16EF8D44 ) = 0x00000000
    0x000019C0 7621 3  XPCOM C: ( (dsIBooleanProperty*)16EF8D44 )->queryInterface( 125E2E90, 0018EB48 )
    0x000019C0 7621 3  XPCOM R: ( (dsIBooleanProperty*)16EF8D44 )->queryInterface( 125E2E90, *0018EB48 = 16EF8D44 ) = 0x00000000
    0x000019C0 7621 3  XPCOM C: ( (dsIProperties*)1856F0D0 )->Count( 0018EBE8 )
    0x000019C0 7621 3  XPCOM R: ( (dsIProperties*)1856F0D0 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 7621 3  XPCOM C: ( (dsIProperties*)1856F490 )->Count( 0018EC28 )
    0x000019C0 7621 3  XPCOM R: ( (dsIProperties*)1856F490 )->Count( *0018EC28 = 0x00000009 ) = 0x00000000
    0x000019C0 7621 3  XPCOM C: ( (dsIProperties*)1856F490 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 7621 3  XPCOM R: ( (dsIProperties*)1856F490 )->getProperty( 0x00000002, *0018EC08 = 185E9310 ) = 0x00000000
    0x000019C0 7622 3  XPCOM C: ( (dsIProperty*)185E9310 )->getPropertyType( 0018EB88 )
    0x000019C0 7622 3  XPCOM R: ( (dsIProperty*)185E9310 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7622 3  XPCOM C: ( (dsIProperty*)185E9310 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7622 3  XPCOM R: ( (dsIProperty*)185E9310 )->queryInterface( 125E2E90, *0018EB88 = 185E937C ) = 0x00000000
    0x000019C0 7622 3  XPCOM C: ( (dsIGroup*)185E937C )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7622 3  XPCOM R: ( (dsIGroup*)185E937C )->queryInterface( 125E2E90, *0018EB88 = 185E937C ) = 0x00000000
    0x000019C0 7622 3  XPCOM C: ( (dsIGroup*)185E937C )->Name( 0018EBF8 )
    0x000019C0 7622 3  XPCOM R: ( (dsIGroup*)185E937C )->Name( *0018EBF8 = Erase ) = 0x00000000
    0x000019C0 7622 3  XPCOM C: ( (dsIProperties*)1856F490 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 7622 3  XPCOM R: ( (dsIProperties*)1856F490 )->getProperty( 0x00000002, *0018EC08 = 185E9310 ) = 0x00000000
    0x000019C0 7622 3  XPCOM C: ( (dsIProperty*)185E9310 )->getPropertyType( 0018EB88 )
    0x000019C0 7622 3  XPCOM R: ( (dsIProperty*)185E9310 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 7622 3  XPCOM C: ( (dsIProperty*)185E9310 )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7622 3  XPCOM R: ( (dsIProperty*)185E9310 )->queryInterface( 125E2E90, *0018EB88 = 185E937C ) = 0x00000000
    0x000019C0 7622 3  XPCOM C: ( (dsIGroup*)185E937C )->queryInterface( 125E2E90, 0018EB88 )
    0x000019C0 7622 3  XPCOM R: ( (dsIGroup*)185E937C )->queryInterface( 125E2E90, *0018EB88 = 185E937C ) = 0x00000000
    0x000019C0 7622 3  XPCOM C: ( (dsIGroup*)185E937C )->getChildren( 0018EC58 )
    0x000019C0 7622 3  XPCOM R: ( (dsIGroup*)185E937C )->getChildren( *0018EC58 = 1856F4F0 ) = 0x00000000
    0x000019C0 7622 3  XPCOM C: ( (dsIProperties*)1856F4F0 )->Count( 0018ECB8 )
    0x000019C0 7622 3  XPCOM R: ( (dsIProperties*)1856F4F0 )->Count( *0018ECB8 = 0x00000004 ) = 0x00000000
    0x000019C0 7622 3  XPCOM C: ( (dsIGroup*)185E937C )->getChildren( 0018EC78 )
    0x000019C0 7622 3  XPCOM R: ( (dsIGroup*)185E937C )->getChildren( *0018EC78 = 1856FC10 ) = 0x00000000
    0x000019C0 7622 3  XPCOM C: ( (dsIProperties*)1856FC10 )->Count( 0018EBD8 )
    0x000019C0 7622 3  XPCOM R: ( (dsIProperties*)1856FC10 )->Count( *0018EBD8 = 0x00000004 ) = 0x00000000
    0x000019C0 7622 3  XPCOM C: ( (dsIProperties*)1856FC10 )->getProperty( 0x00000000, 0018EBB8 )
    0x000019C0 7622 3  XPCOM R: ( (dsIProperties*)1856FC10 )->getProperty( 0x00000000, *0018EBB8 = 122DD2A8 ) = 0x00000000
    0x000019C0 7622 3  XPCOM C: ( (dsIProperty*)122DD2A8 )->getPropertyType( 0018EB38 )
    0x000019C0 7622 3  XPCOM R: ( (dsIProperty*)122DD2A8 )->getPropertyType( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 7622 3  XPCOM C: ( (dsIProperty*)122DD2A8 )->queryInterface( 125E2E90, 0018EB38 )
    0x000019C0 7622 3  XPCOM R: ( (dsIProperty*)122DD2A8 )->queryInterface( 125E2E90, *0018EB38 = 122DD34C ) = 0x00000000
    0x000019C0 7622 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 125E2E90, 0018EB38 )
    0x000019C0 7622 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 125E2E90, *0018EB38 = 122DD314 ) = 0x00000000
    0x000019C0 7622 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 125E2E90, 0018EB38 )
    0x000019C0 7622 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 125E2E90, *0018EB38 = 122DD34C ) = 0x00000000
    0x000019C0 7623 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->Name( 0018EB48 )
    0x000019C0 7623 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->Name( *0018EB48 =  ) = 0x00000000
    0x000019C0 7623 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->NumAllowedValues( 0018EB48 )
    0x000019C0 7623 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->NumAllowedValues( *0018EB48 = 0x00000002 ) = 0x00000000
    0x000019C0 7623 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->NumAllowedValues( 0018EB48 )
    0x000019C0 7623 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->NumAllowedValues( *0018EB48 = 0x00000002 ) = 0x00000000
    0x000019C0 7623 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->getAllowedValue( 0x00000000, 0018EB48 )
    0x000019C0 7623 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->getAllowedValue( 0x00000000, *0018EB48 = Entire Flash ) = 0x00000000
    0x000019C0 7624 3  XPCOM C: ( (dsIStringProperty*)122DD314 )->CurValue( 0018EB38 )
    0x000019C0 7624 3  XPCOM R: ( (dsIStringProperty*)122DD314 )->CurValue( *0018EB38 = Entire Flash ) = 0x00000000
    0x000019C0 7624 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->Iden( 0018EB38 )
    0x000019C0 7624 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->Iden( *0018EB38 = FlashEraseType ) = 0x00000000
    0x000019C0 7624 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->DisableStatus( 0018EB48 )
    0x000019C0 7624 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->DisableStatus( *0018EB48 = false ) = 0x00000000
    0x000019C0 7624 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->NumAllowedValues( 0018EB48 )
    0x000019C0 7624 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->NumAllowedValues( *0018EB48 = 0x00000002 ) = 0x00000000
    0x000019C0 7625 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->getAllowedValue( 0x00000001, 0018EB48 )
    0x000019C0 7625 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->getAllowedValue( 0x00000001, *0018EB48 = By Address Range ) = 0x00000000
    0x000019C0 7625 3  XPCOM C: ( (dsIStringProperty*)122DD314 )->CurValue( 0018EB38 )
    0x000019C0 7625 3  XPCOM R: ( (dsIStringProperty*)122DD314 )->CurValue( *0018EB38 = Entire Flash ) = 0x00000000
    0x000019C0 7625 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->Iden( 0018EB38 )
    0x000019C0 7625 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->Iden( *0018EB38 = FlashEraseType ) = 0x00000000
    0x000019C0 7625 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->DisableStatus( 0018EB48 )
    0x000019C0 7626 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->DisableStatus( *0018EB48 = false ) = 0x00000000
    0x000019C0 7626 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->NumAllowedValues( 0018EB48 )
    0x000019C0 7626 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->NumAllowedValues( *0018EB48 = 0x00000002 ) = 0x00000000
    0x000019C0 7626 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->Iden( 0018EB38 )
    0x000019C0 7626 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->Iden( *0018EB38 = FlashEraseType ) = 0x00000000
    0x000019C0 7626 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->DisableStatus( 0018EB48 )
    0x000019C0 7626 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->DisableStatus( *0018EB48 = false ) = 0x00000000
    0x000019C0 7626 3  XPCOM C: ( (dsIProperties*)1856FC10 )->Count( 0018EBD8 )
    0x000019C0 7626 3  XPCOM R: ( (dsIProperties*)1856FC10 )->Count( *0018EBD8 = 0x00000004 ) = 0x00000000
    0x000019C0 7626 3  XPCOM C: ( (dsIProperties*)1856FC10 )->getProperty( 0x00000001, 0018EBB8 )
    0x000019C0 7626 3  XPCOM R: ( (dsIProperties*)1856FC10 )->getProperty( 0x00000001, *0018EBB8 = 12296D98 ) = 0x00000000
    0x000019C0 7626 3  XPCOM C: ( (dsIProperty*)12296D98 )->getPropertyType( 0018EB38 )
    0x000019C0 7626 3  XPCOM R: ( (dsIProperty*)12296D98 )->getPropertyType( *0018EB38 = 0x00000004 ) = 0x00000000
    0x000019C0 7626 3  XPCOM C: ( (dsIProperty*)12296D98 )->queryInterface( 125E2E90, 0018EB38 )
    0x000019C0 7626 3  XPCOM R: ( (dsIProperty*)12296D98 )->queryInterface( 125E2E90, *0018EB38 = 12296E04 ) = 0x00000000
    0x000019C0 7626 3  XPCOM C: ( (dsIStringProperty*)12296E04 )->queryInterface( 125E2E90, 0018EB38 )
    0x000019C0 7626 3  XPCOM R: ( (dsIStringProperty*)12296E04 )->queryInterface( 125E2E90, *0018EB38 = 12296E04 ) = 0x00000000
    0x000019C0 7626 3  XPCOM C: ( (dsIStringProperty*)12296E04 )->getParent( 0018EA98 )
    0x000019C0 7626 3  XPCOM R: ( (dsIStringProperty*)12296E04 )->getParent( *0018EA98 = 185E9310 ) = 0x00000000
    0x000019C0 7626 3  XPCOM C: ( (dsIProperty*)185E9310 )->getPropertyType( 0018E9F8 )
    0x000019C0 7626 3  XPCOM R: ( (dsIProperty*)185E9310 )->getPropertyType( *0018E9F8 = 0x00000006 ) = 0x00000000
    0x000019C0 7626 3  XPCOM C: ( (dsIProperty*)185E9310 )->queryInterface( 125E2E90, 0018E9F8 )
    0x000019C0 7626 3  XPCOM R: ( (dsIProperty*)185E9310 )->queryInterface( 125E2E90, *0018E9F8 = 185E937C ) = 0x00000000
    0x000019C0 7626 3  XPCOM C: ( (dsIGroup*)185E937C )->queryInterface( 125E2E90, 0018E9F8 )
    0x000019C0 7626 3  XPCOM R: ( (dsIGroup*)185E937C )->queryInterface( 125E2E90, *0018E9F8 = 185E937C ) = 0x00000000
    0x000019C0 7626 3  XPCOM C: ( (dsIGroup*)185E937C )->Iden( 0018EA98 )
    0x000019C0 7626 3  XPCOM R: ( (dsIGroup*)185E937C )->Iden( *0018EA98 = FlashEraseGroup ) = 0x00000000
    0x000019C0 7627 3  XPCOM C: ( (dsIStringProperty*)12296E04 )->Name( 0018EAE8 )
    0x000019C0 7627 3  XPCOM R: ( (dsIStringProperty*)12296E04 )->Name( *0018EAE8 = Start Address: 0x ) = 0x00000000
    0x000019C0 7627 3  XPCOM C: ( (dsIStringProperty*)12296E04 )->CurValue( 0018EAF8 )
    0x000019C0 7627 3  XPCOM R: ( (dsIStringProperty*)12296E04 )->CurValue( *0018EAF8 = 0 ) = 0x00000000
    0x000019C0 7627 3  XPCOM C: ( (dsIStringProperty*)12296E04 )->ReadOnly( 0018EAF8 )
    0x000019C0 7627 3  XPCOM R: ( (dsIStringProperty*)12296E04 )->ReadOnly( *0018EAF8 = false ) = 0x00000000
    0x000019C0 7628 3  XPCOM C: ( (dsIStringProperty*)12296E04 )->DisableStatus( 0018EAE8 )
    0x000019C0 7628 3  XPCOM R: ( (dsIStringProperty*)12296E04 )->DisableStatus( *0018EAE8 = true ) = 0x00000000
    0x000019C0 7628 3  XPCOM C: ( (dsIStringProperty*)12296E04 )->Iden( 0018EAE8 )
    0x000019C0 7628 3  XPCOM R: ( (dsIStringProperty*)12296E04 )->Iden( *0018EAE8 = FlashEraseStartAddr ) = 0x00000000
    0x000019C0 7628 3  XPCOM C: ( (dsIProperties*)1856FC10 )->Count( 0018EBD8 )
    0x000019C0 7628 3  XPCOM R: ( (dsIProperties*)1856FC10 )->Count( *0018EBD8 = 0x00000004 ) = 0x00000000
    0x000019C0 7628 3  XPCOM C: ( (dsIProperties*)1856FC10 )->getProperty( 0x00000002, 0018EBB8 )
    0x000019C0 7628 3  XPCOM R: ( (dsIProperties*)1856FC10 )->getProperty( 0x00000002, *0018EBB8 = 12296FA8 ) = 0x00000000
    0x000019C0 7628 3  XPCOM C: ( (dsIProperty*)12296FA8 )->getPropertyType( 0018EB38 )
    0x000019C0 7628 3  XPCOM R: ( (dsIProperty*)12296FA8 )->getPropertyType( *0018EB38 = 0x00000004 ) = 0x00000000
    0x000019C0 7628 3  XPCOM C: ( (dsIProperty*)12296FA8 )->queryInterface( 125E2E90, 0018EB38 )
    0x000019C0 7628 3  XPCOM R: ( (dsIProperty*)12296FA8 )->queryInterface( 125E2E90, *0018EB38 = 12297014 ) = 0x00000000
    0x000019C0 7628 3  XPCOM C: ( (dsIStringProperty*)12297014 )->queryInterface( 125E2E90, 0018EB38 )
    0x000019C0 7629 3  XPCOM R: ( (dsIStringProperty*)12297014 )->queryInterface( 125E2E90, *0018EB38 = 12297014 ) = 0x00000000
    0x000019C0 7629 3  XPCOM C: ( (dsIStringProperty*)12297014 )->getParent( 0018EA98 )
    0x000019C0 7629 3  XPCOM R: ( (dsIStringProperty*)12297014 )->getParent( *0018EA98 = 185E9310 ) = 0x00000000
    0x000019C0 7629 3  XPCOM C: ( (dsIProperty*)185E9310 )->getPropertyType( 0018E9F8 )
    0x000019C0 7629 3  XPCOM R: ( (dsIProperty*)185E9310 )->getPropertyType( *0018E9F8 = 0x00000006 ) = 0x00000000
    0x000019C0 7629 3  XPCOM C: ( (dsIProperty*)185E9310 )->queryInterface( 125E2E90, 0018E9F8 )
    0x000019C0 7629 3  XPCOM R: ( (dsIProperty*)185E9310 )->queryInterface( 125E2E90, *0018E9F8 = 185E937C ) = 0x00000000
    0x000019C0 7629 3  XPCOM C: ( (dsIGroup*)185E937C )->queryInterface( 125E2E90, 0018E9F8 )
    0x000019C0 7629 3  XPCOM R: ( (dsIGroup*)185E937C )->queryInterface( 125E2E90, *0018E9F8 = 185E937C ) = 0x00000000
    0x000019C0 7629 3  XPCOM C: ( (dsIGroup*)185E937C )->Iden( 0018EA98 )
    0x000019C0 7629 3  XPCOM R: ( (dsIGroup*)185E937C )->Iden( *0018EA98 = FlashEraseGroup ) = 0x00000000
    0x000019C0 7629 3  XPCOM C: ( (dsIStringProperty*)12297014 )->Name( 0018EAE8 )
    0x000019C0 7629 3  XPCOM R: ( (dsIStringProperty*)12297014 )->Name( *0018EAE8 = End Address: 0x ) = 0x00000000
    0x000019C0 7630 3  XPCOM C: ( (dsIStringProperty*)12297014 )->CurValue( 0018EAF8 )
    0x000019C0 7630 3  XPCOM R: ( (dsIStringProperty*)12297014 )->CurValue( *0018EAF8 = 0 ) = 0x00000000
    0x000019C0 7630 3  XPCOM C: ( (dsIStringProperty*)12297014 )->ReadOnly( 0018EAF8 )
    0x000019C0 7630 3  XPCOM R: ( (dsIStringProperty*)12297014 )->ReadOnly( *0018EAF8 = false ) = 0x00000000
    0x000019C0 7630 3  XPCOM C: ( (dsIStringProperty*)12297014 )->DisableStatus( 0018EAE8 )
    0x000019C0 7630 3  XPCOM R: ( (dsIStringProperty*)12297014 )->DisableStatus( *0018EAE8 = true ) = 0x00000000
    0x000019C0 7630 3  XPCOM C: ( (dsIStringProperty*)12297014 )->Iden( 0018EAE8 )
    0x000019C0 7630 3  XPCOM R: ( (dsIStringProperty*)12297014 )->Iden( *0018EAE8 = FlashEraseEndAddr ) = 0x00000000
    0x000019C0 7630 3  XPCOM C: ( (dsIProperties*)1856FC10 )->Count( 0018EBD8 )
    0x000019C0 7630 3  XPCOM R: ( (dsIProperties*)1856FC10 )->Count( *0018EBD8 = 0x00000004 ) = 0x00000000
    0x000019C0 7631 3  XPCOM C: ( (dsIProperties*)1856FC10 )->getProperty( 0x00000003, 0018EBB8 )
    0x000019C0 7631 3  XPCOM R: ( (dsIProperties*)1856FC10 )->getProperty( 0x00000003, *0018EBB8 = 17004988 ) = 0x00000000
    0x000019C0 7631 3  XPCOM C: ( (dsIProperty*)17004988 )->getPropertyType( 0018EB38 )
    0x000019C0 7631 3  XPCOM R: ( (dsIProperty*)17004988 )->getPropertyType( *0018EB38 = 0x00000008 ) = 0x00000000
    0x000019C0 7631 3  XPCOM C: ( (dsIProperty*)17004988 )->queryInterface( 125E2E90, 0018EB38 )
    0x000019C0 7631 3  XPCOM R: ( (dsIProperty*)17004988 )->queryInterface( 125E2E90, *0018EB38 = 170049F4 ) = 0x00000000
    0x000019C0 7631 3  XPCOM C: ( (dsIButton*)170049F4 )->queryInterface( 125E2E90, 0018EB38 )
    0x000019C0 7631 3  XPCOM R: ( (dsIButton*)170049F4 )->queryInterface( 125E2E90, *0018EB38 = 170049F4 ) = 0x00000000
    0x000019C0 7631 3  XPCOM C: ( (dsIButton*)170049F4 )->getParent( 0018EAE8 )
    0x000019C0 7631 3  XPCOM R: ( (dsIButton*)170049F4 )->getParent( *0018EAE8 = 185E9310 ) = 0x00000000
    0x000019C0 7631 3  XPCOM C: ( (dsIProperty*)185E9310 )->getPropertyType( 0018EA58 )
    0x000019C0 7631 3  XPCOM R: ( (dsIProperty*)185E9310 )->getPropertyType( *0018EA58 = 0x00000006 ) = 0x00000000
    0x000019C0 7631 3  XPCOM C: ( (dsIProperty*)185E9310 )->queryInterface( 125E2E90, 0018EA58 )
    0x000019C0 7631 3  XPCOM R: ( (dsIProperty*)185E9310 )->queryInterface( 125E2E90, *0018EA58 = 185E937C ) = 0x00000000
    0x000019C0 7631 3  XPCOM C: ( (dsIGroup*)185E937C )->queryInterface( 125E2E90, 0018EA58 )
    0x000019C0 7631 3  XPCOM R: ( (dsIGroup*)185E937C )->queryInterface( 125E2E90, *0018EA58 = 185E937C ) = 0x00000000
    0x000019C0 7631 3  XPCOM C: ( (dsIGroup*)185E937C )->Iden( 0018EAE8 )
    0x000019C0 7631 3  XPCOM R: ( (dsIGroup*)185E937C )->Iden( *0018EAE8 = FlashEraseGroup ) = 0x00000000
    0x000019C0 7632 3  XPCOM C: ( (dsIButton*)170049F4 )->Name( 0018EB48 )
    0x000019C0 7632 3  XPCOM R: ( (dsIButton*)170049F4 )->Name( *0018EB48 = Erase Flash ) = 0x00000000
    0x000019C0 7632 3  XPCOM C: ( (dsIButton*)170049F4 )->Iden( 0018EB38 )
    0x000019C0 7632 3  XPCOM R: ( (dsIButton*)170049F4 )->Iden( *0018EB38 = FlashEraseButton ) = 0x00000000
    0x000019C0 7632 3  XPCOM C: ( (dsIButton*)170049F4 )->DisableStatus( 0018EB48 )
    0x000019C0 7632 3  XPCOM R: ( (dsIButton*)170049F4 )->DisableStatus( *0018EB48 = false ) = 0x00000000
    0x000019C0 7632 3  XPCOM C: ( (dsIProperties*)1856FC10 )->Count( 0018EBD8 )
    0x000019C0 7632 3  XPCOM R: ( (dsIProperties*)1856FC10 )->Count( *0018EBD8 = 0x00000004 ) = 0x00000000
    0x000019C0 7632 3  XPCOM C: ( (dsIStringEvent*)16EE8B58 )->addListener( 125E2E90 )
    0x000019C0 7632 3  XPCOM R: ( (dsIStringEvent*)16EE8B58 )->addListener( 125E2E90 ) = 0x00000000
    0x000019C0 7632 3  XPCOM C: ( (dsIStringEvent*)16EE8BD8 )->addListener( 170B3FD8 )
    0x000019C0 7632 3  XPCOM R: ( (dsIStringEvent*)16EE8BD8 )->addListener( 170B3FD8 ) = 0x00000000
    0x00002BA8 8068 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 8068 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 8068 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 8068 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 8068 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1932 ms
    0x00002BA8 8068 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 8068 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 8068 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1932 ms
    0x00002BA8 8568 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 8568 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 8568 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 8568 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 8568 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1432 ms
    0x00002BA8 8568 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 8568 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 8568 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1432 ms
    0x00002BA8 9068 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 9068 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 9068 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 9068 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 9068 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 932 ms
    0x00002BA8 9068 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 9068 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 9068 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 932 ms
    0x00002BA8 9568 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 9568 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 9568 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 9568 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 9568 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 432 ms
    0x00002BA8 9568 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 9568 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 9568 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 432 ms
    0x00002BA8 9568 4  POLL I: TimeToSleep() found shorter sleep time of 432 ms from class DevicePollFrequencyManager
    0x000019C0 9785 3  XPCOM C: ( (dsIDebugProperties*)125D0AF0 )->getProperty( FlashEraseButton, 0018EEA8 )
    0x000019C0 9785 3  XPCOM R: ( (dsIDebugProperties*)125D0AF0 )->getProperty( FlashEraseButton, *0018EEA8 = 17004988 ) = 0x00000000
    0x000019C0 9785 3  XPCOM C: ( (dsIProperty*)17004988 )->getPropertyType( 0018EDF8 )
    0x000019C0 9785 3  XPCOM R: ( (dsIProperty*)17004988 )->getPropertyType( *0018EDF8 = 0x00000008 ) = 0x00000000
    0x000019C0 9785 3  XPCOM C: ( (dsIProperty*)17004988 )->queryInterface( 170B3E10, 0018EDF8 )
    0x000019C0 9785 3  XPCOM R: ( (dsIProperty*)17004988 )->queryInterface( 170B3E10, *0018EDF8 = 170049F4 ) = 0x00000000
    0x000019C0 9785 3  XPCOM C: ( (dsIButton*)170049F4 )->queryInterface( 170B3E10, 0018EDF8 )
    0x000019C0 9785 3  XPCOM R: ( (dsIButton*)170049F4 )->queryInterface( 170B3E10, *0018EDF8 = 170049F4 ) = 0x00000000
    0x000019C0 9785 3  XPCOM C: ( (dsIButton*)170049F4 )->Action( 0018EF08 )
    0x000019C0 9785 3  XPCOM R: ( (dsIButton*)170049F4 )->Action( *0018EF08 = DPActiveDebugSession.flash.performOperation("Erase") ) = 0x00000000
    0x000019C0 9785 3  XPCOM C: ( (dsIProcessorInfo*)0050F498 )->Partnum( 0018ED68 )
    0x000019C0 9785 3  XPCOM R: ( (dsIProcessorInfo*)0050F498 )->Partnum( *0018ED68 = TM4C123GE6PM ) = 0x00000000
    0x000019C0 9786 3  XPCOM C: ( (dsIConnectDisconnect*)125EB74C )->connectionStatus( 0018ECA8 )
    0x000019C0 9786 3  XPCOM R: ( (dsIConnectDisconnect*)125EB74C )->connectionStatus( *0018ECA8 = 0x00000002 ) = 0x00000000
    0x00000918 9804 3  XPCOM C: ( (dsIConnectDisconnect*)125EB74C )->connect()
    0x00000918 9804 3 CS_DAP_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00000918 9804 3 CS_DAP_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00000918 9804 3  XPCOM R: ( (dsIConnectDisconnect*)125EB74C )->connect() = 0x00000000
    0x00002BA8 9804 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 9804 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 9804 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 9804 4 CS_DAP_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x00002BA8 9804 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 9804 4  POLL I: Yielding to other threads
    0x00002BA8 9804 3 CS_DAP_0 POLL C: Polling with state CPU_ST_CONNECT and status EVENT_DSP_HALT
    0x00002BA8 9805 3 CS_DAP_0 GTI C: GTI_CONNECT2( 0x127D48F0 )
    0x00002BA8 12517 3 CS_DAP_0 GTI R: GTI_CONNECT2( 0x127D48F0 ) = 0x00000000
    0x00002BA8 12517 3 CS_DAP_0 GTI C: GTI_GETERRSTR_EX3( 0x127D48F0, *0x0FB6EC90 = 0x00000000, *0x0FB6EC70 = 0x00000000, *0x0FB6EC8C = 0x00000000, *0x0FB6EC68 = 0x00000000, *0x0FB6EC88 = 0x00000000, *0x0FB6EC84 = 0x00000000, *0x0FB6EC7C = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x00002BA8 12517 3 CS_DAP_0 GTI R: GTI_GETERRSTR_EX3( 0x127D48F0, *0x0FB6EC90 = 0x00000000, *0x0FB6EC70 = 0x00000000, *0x0FB6EC8C = 0x00000000, *0x0FB6EC68 = 0x00000002, *0x0FB6EC88 = 0x00000000, *0x0FB6EC84 = 0x00000008, *0x0FB6EC7C = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x00002BA8 12517 3 CS_DAP_0 STATE I: Connection state changed to 4
    0x00002BA8 12517 3 CS_DAP_0 GTI C: GTI_STAT( 0x127D48F0 )
    0x00002BA8 12517 3 CS_DAP_0 GTI R: GTI_STAT( 0x127D48F0 ) = 0x0000000D
    0x00002BA8 12517 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_CHANGE
    0x00002BA8 12517 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x00002BA8 12517 3 CS_DAP_0 STATE I: Connection state changed to 0
    0x00002BA8 12517 3 CS_DAP_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eConnected )
    0x00002BA8 12518 3 CS_DAP_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eConnected )
    0x00002BA8 12518 3 CORTEX_M4_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 12518 3 CORTEX_M4_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 12518 3  COM_DBG_IF C: class DSP_CO_USER::OnConnected()
    0x00002BA8 12518 3  XPCOM C: ( (dsISimpleEventCallback*)122406C8 )->onEvent()
    0x00002BA8 12518 3  XPCOM C: ( (dsIRefreshControl*)125EB97C )->beginRefresh( 0FB6E1E8 )
    0x00002BA8 12518 3  XPCOM R: ( (dsIRefreshControl*)125EB97C )->beginRefresh( *0FB6E1E8 = 0x00000000 ) = 0x00000000
    0x00002BA8 12519 3  XPCOM R: ( (dsISimpleEventCallback*)122406C8 )->onEvent() = 0x00000000
    0x00002BA8 12519 3  COM_DBG_IF R: class DSP_CO_USER::OnConnected()
    0x00002BA8 12519 3  COM_DBG_IF C: class DSP_CO_USER::OnRefresh()
    0x00002BA8 12519 3  XPCOM C: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000003 )
    0x00002BA8 12519 3  XPCOM R: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000003 ) = 0x00000000
    0x00002BA8 12519 3  COM_DBG_IF R: class DSP_CO_USER::OnRefresh()
    0x00002BA8 12519 3  COM_DBG_IF C: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x00002BA8 12519 3  XPCOM C: ( (dsISimpleEventCallback*)12240CC8 )->onEvent()
    0x00002BA8 12519 3  XPCOM R: ( (dsISimpleEventCallback*)12240CC8 )->onEvent() = 0x00000000
    0x00002BA8 12519 3  COM_DBG_IF R: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x00002BA8 12519 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 12519 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 12519 3 CORTEX_M4_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 12519 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 12519 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 12519 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 12519 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 12519 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x00002BA8 12519 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 12519 4  POLL I: Yielding to other threads
    0x00002BA8 12519 3 CORTEX_M4_0 POLL C: Polling with state CPU_ST_CONNECT and status EVENT_DSP_HALT
    0x00002BA8 12519 3 CORTEX_M4_0 GTI C: GTI_CONNECT2( 0x101C1208 )
    0x00000490 12519 3  XPCOM C: ( (dsIRtdxCapable*)0050F664 )->IsRtdxCapable( 17AEF738 )
    0x00002BA8 12593 3 CORTEX_M4_0 GTI R: GTI_CONNECT2( 0x101C1208 ) = 0x00000000
    0x00002BA8 12593 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6EC90 = 0x00000000, *0x0FB6EC70 = 0x00000000, *0x0FB6EC8C = 0x00000000, *0x0FB6EC68 = 0x00000000, *0x0FB6EC88 = 0x00000000, *0x0FB6EC84 = 0x00000000, *0x0FB6EC7C = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x00002BA8 12593 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6EC90 = 0x00000000, *0x0FB6EC70 = 0x00000000, *0x0FB6EC8C = 0x00000000, *0x0FB6EC68 = 0x00000002, *0x0FB6EC88 = 0x00000000, *0x0FB6EC84 = 0x00000008, *0x0FB6EC7C = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x00002BA8 12593 3 CORTEX_M4_0 STATE I: Connection state changed to 4
    0x00002BA8 12594 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x101C1208, *0x0FB6F174 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x00002BA8 12595 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x101C1208, *0x0FB6F174 = { 4, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x00002BA8 12595 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_HALTED
    0x00002BA8 12595 3  CT C: JobMgrIFDS::DSPHaltedRefresh( 1, -1, 00000000 )
    0x00002BA8 12595 3  CT R: JobMgrIFDS::DSPHaltedRefresh( 1, -1, 00000000 )
    0x00002BA8 12595 3 CORTEX_M4_0 CT C: SyncMode::OnHalt()
    0x00002BA8 12639 3 CORTEX_M4_0 CT R: SyncMode::OnHalt() = (null)
    0x00002BA8 12639 3 CORTEX_M4_0 STATE I: Connection state changed to 0
    0x00002BA8 12639 3 CORTEX_M4_0 GEL I: Evaluating "OnTargetConnect()"
    0x00002BA8 12640 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class `anonymous namespace'::NullRequestNotification
    0x00002BA8 12640 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 12640 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 12640 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 12640 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 12640 4  POLL I: Yielding to other threads for 10 ms
    0x00000490 12640 3  XPCOM R: ( (dsIRtdxCapable*)0050F664 )->IsRtdxCapable( *17AEF738 = false ) = 0x00000000
    0x00002BA8 12650 3 CORTEX_M4_0 POLL C: Polling with state STATE_GET_PC and status EVENT_DSP_HALT
    0x00002BA8 12650 3 CORTEX_M4_0 GTI C: GTI_READREG( 0x101C1208, 0x0000020F, *0x0FB6F118 = 0x00000000 )
    0x00002BA8 12650 3 CORTEX_M4_0 GTI R: GTI_READREG( 0x101C1208, 0x0000020F, *0x0FB6F118 = 0x00002D54 ) = 0x00000000
    0x00002BA8 12650 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6EAE0 = 0x00000000, *0x0FB6EAC0 = 0x00000000, *0x0FB6EADC = 0x00000000, *0x0FB6EAB8 = 0x00000000, *0x0FB6EAD8 = 0x00000000, *0x0FB6EAD4 = 0x00000000, *0x0FB6EACC = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x00002BA8 12650 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6EAE0 = 0x00000000, *0x0FB6EAC0 = 0x00000000, *0x0FB6EADC = 0x00000000, *0x0FB6EAB8 = 0x00000002, *0x0FB6EAD8 = 0x00000000, *0x0FB6EAD4 = 0x00000008, *0x0FB6EACC = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x00002BA8 12650 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6EBF8 = 0x00000000, *0x0FB6EBD8 = 0x00000000, *0x0FB6EBF4 = 0x00000000, *0x0FB6EBD0 = 0x00000000, *0x0FB6EBF0 = 0x00000000, *0x0FB6EBEC = 0x00000000, *0x0FB6EBE4 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x00002BA8 12650 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6EBF8 = 0x00000000, *0x0FB6EBD8 = 0x00000000, *0x0FB6EBF4 = 0x00000000, *0x0FB6EBD0 = 0x00000002, *0x0FB6EBF0 = 0x00000000, *0x0FB6EBEC = 0x00000008, *0x0FB6EBE4 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x00002BA8 12650 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 12650 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 12650 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 12650 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 12650 4  POLL I: Yielding to other threads
    0x00002BA8 12650 3 CORTEX_M4_0 POLL C: Polling with state STATE_GET_CLK and status EVENT_DSP_HALT
    0x00002BA8 12650 3 CORTEX_M4_0 GTI C: GTI_READREG( 0x101C1208, 0x0000020D, *0x0FB6F120 = 0x00000000 )
    0x00002BA8 12650 3 CORTEX_M4_0 GTI R: GTI_READREG( 0x101C1208, 0x0000020D, *0x0FB6F120 = 0x20003630 ) = 0x00000000
    0x00002BA8 12650 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6EAE8 = 0x00000000, *0x0FB6EAC8 = 0x00000000, *0x0FB6EAE4 = 0x00000000, *0x0FB6EAC0 = 0x00000000, *0x0FB6EAE0 = 0x00000000, *0x0FB6EADC = 0x00000000, *0x0FB6EAD4 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x00002BA8 12650 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6EAE8 = 0x00000000, *0x0FB6EAC8 = 0x00000000, *0x0FB6EAE4 = 0x00000000, *0x0FB6EAC0 = 0x00000002, *0x0FB6EAE0 = 0x00000000, *0x0FB6EADC = 0x00000008, *0x0FB6EAD4 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x00002BA8 12650 3  COM_DBG_IF C: class DSP_CO_USER::OnTargetHaltDetected()
    0x00002BA8 12650 3  COM_DBG_IF R: class DSP_CO_USER::OnTargetHaltDetected()
    0x00002BA8 12650 3 CORTEX_M4_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x00002BA8 12650 3 CORTEX_M4_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eHalted )
    0x00002BA8 12650 3 CORTEX_M4_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eHalted )
    0x00002BA8 12650 3  COM_DBG_IF C: class DSP_CO_USER::OnHalt()
    0x00002BA8 12651 3  XPCOM C: ( (dsIObjectEventCallback*)16F734F8 )->onEvent( 1709A260 )
    0x00002BA8 12651 3  XPCOM C: ( (nsISupports*)1709A268 )->queryInterface( 124BCDD8, 0FB6DF28 )
    0x00002BA8 12651 3  XPCOM R: ( (nsISupports*)1709A268 )->queryInterface( 124BCDD8, *0FB6DF28 = 1709A260 ) = 0x00000000
    0x00002BA8 12651 3  XPCOM C: ( (dsITargetData*)1709A260 )->toUnsignedInt( 0FB6DF58 )
    0x00002BA8 12651 3  XPCOM R: ( (dsITargetData*)1709A260 )->toUnsignedInt( *0FB6DF58 = 0x00002D54 ) = 0x00000000
    0x00002BA8 12651 3  XPCOM C: ( (dsIRefreshControl*)125EB784 )->beginRefresh( 0FB6DF08 )
    0x00002BA8 12651 3  XPCOM R: ( (dsIRefreshControl*)125EB784 )->beginRefresh( *0FB6DF08 = 0x00000000 ) = 0x00000000
    0x00002BA8 12651 3  XPCOM R: ( (dsIObjectEventCallback*)16F734F8 )->onEvent( 1709A260 ) = 0x00000000
    0x00002BA8 12651 3  COM_DBG_IF R: class DSP_CO_USER::OnHalt()
    0x00002BA8 12651 3  COM_DBG_IF C: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x00002BA8 12651 3  XPCOM C: ( (dsISimpleEventCallback*)16F725B8 )->onEvent()
    0x00002BA8 12651 3  XPCOM R: ( (dsISimpleEventCallback*)16F725B8 )->onEvent() = 0x00000000
    0x00002BA8 12651 3  COM_DBG_IF R: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x00002BA8 12651 3  COM_DBG_IF C: class DSP_CO_USER::OnExecutionStatusChanged()
    0x00002BA8 12651 3  XPCOM C: ( (dsISimpleEventCallback*)16F71CB8 )->onEvent()
    0x00002BA8 12651 3  XPCOM R: ( (dsISimpleEventCallback*)16F71CB8 )->onEvent() = 0x00000000
    0x00002BA8 12651 3  COM_DBG_IF R: class DSP_CO_USER::OnExecutionStatusChanged()
    0x00002BA8 12651 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_READ_MEM added to polling loop by class `anonymous namespace'::TpiStatusRegistersImpl
    0x00002BA8 12651 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 12651 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 12651 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 12651 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 12651 4  POLL I: Yielding to other threads
    0x00002BA8 12651 3 CORTEX_M4_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 12651 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 12651 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 12651 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 12651 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 12651 4  POLL I: Yielding to other threads
    0x00002BA8 12651 3 CORTEX_M4_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x00002BA8 12651 2 CORTEX_M4_0 GEL I: tm4c123ge6pm.gel:24    Enter function OnTargetConnect
    0x00002BA8 12651 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class `anonymous namespace'::NullRequestNotification
    0x00002BA8 12651 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 12651 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 12651 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 12651 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 12651 4  POLL I: Yielding to other threads
    0x00002BA8 12651 3 CORTEX_M4_0 POLL C: Polling with state STATE_READ and status EVENT_DSP_HALT
    0x00002BA8 12651 3 CORTEX_M4_0 GTI C: GTI_READREG( 0x101C1208, 0x61001002, *0x0FB6F158 = 0x00000000 )
    0x00002BA8 12651 3 CORTEX_M4_0 GTI R: GTI_READREG( 0x101C1208, 0x61001002, *0x0FB6F158 = 0x00000000 ) = 0x00000000
    0x00002BA8 12652 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6EB20 = 0x00000000, *0x0FB6EB00 = 0x00000000, *0x0FB6EB1C = 0x00000000, *0x0FB6EAF8 = 0x00000000, *0x0FB6EB18 = 0x00000000, *0x0FB6EB14 = 0x00000000, *0x0FB6EB0C = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x00002BA8 12652 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6EB20 = 0x00000000, *0x0FB6EB00 = 0x00000000, *0x0FB6EB1C = 0x00000000, *0x0FB6EAF8 = 0x00000002, *0x0FB6EB18 = 0x00000000, *0x0FB6EB14 = 0x00000008, *0x0FB6EB0C = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x00002BA8 12652 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 12652 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 12652 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 12652 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 12652 4  POLL I: Yielding to other threads
    0x00002BA8 12652 3 CORTEX_M4_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x00002BA8 12652 2 CORTEX_M4_0 GEL I: tm4c123ge6pm.gel:0    Leave function OnTargetConnect
    0x00002BA8 12652 3 CORTEX_M4_0 GEL I: Evaluation of "OnTargetConnect()" completed - Value: 0 Location: unknown
    0x00002BA8 12652 3 CORTEX_M4_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eConnected )
    0x00002BA8 12652 3 CORTEX_M4_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eConnected )
    0x00002BA8 12652 3  COM_DBG_IF C: class DSP_CO_USER::OnConnected()
    0x00002BA8 12652 3  XPCOM C: ( (dsISimpleEventCallback*)16F721B8 )->onEvent()
    0x00002BA8 12652 3  XPCOM C: ( (dsIRefreshControl*)125EB784 )->beginRefresh( 0FB6E168 )
    0x00002BA8 12652 3  XPCOM R: ( (dsIRefreshControl*)125EB784 )->beginRefresh( *0FB6E168 = 0x00000000 ) = 0x00000000
    0x00000490 12652 3  XPCOM C: ( (dsIRtdxCapable*)0050F4B4 )->IsRtdxCapable( 17AEF738 )
    0x00002BA8 12652 3  XPCOM R: ( (dsISimpleEventCallback*)16F721B8 )->onEvent() = 0x00000000
    0x00002BA8 12652 3  COM_DBG_IF R: class DSP_CO_USER::OnConnected()
    0x00002BA8 12652 3  COM_DBG_IF C: class DSP_CO_USER::OnRefresh()
    0x00002BA8 12652 3  XPCOM C: ( (dsINumberEventCallback*)16F71F78 )->onEvent( 0x00000003 )
    0x00002BA8 12652 3  XPCOM R: ( (dsINumberEventCallback*)16F71F78 )->onEvent( 0x00000003 ) = 0x00000000
    0x00002BA8 12652 3  COM_DBG_IF R: class DSP_CO_USER::OnRefresh()
    0x00002BA8 12652 3  COM_DBG_IF C: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x00002BA8 12652 3  XPCOM C: ( (dsISimpleEventCallback*)16F725B8 )->onEvent()
    0x00002BA8 12652 3  XPCOM R: ( (dsISimpleEventCallback*)16F725B8 )->onEvent() = 0x00000000
    0x00002BA8 12652 3  COM_DBG_IF R: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x00002BA8 12652 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 12652 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 12652 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 12652 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 12653 4  POLL I: Yielding to other threads for 10 ms
    0x00000490 12653 3  XPCOM R: ( (dsIRtdxCapable*)0050F4B4 )->IsRtdxCapable( *17AEF738 = false ) = 0x00000000
    0x00002BA8 12663 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 12663 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 12663 3 CS_DAP_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 12663 3 CS_DAP_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 12663 3 CS_DAP_0 GTI C: GTI_STAT( 0x127D48F0 )
    0x00002BA8 12663 3 CS_DAP_0 GTI R: GTI_STAT( 0x127D48F0 ) = 0x0000000D
    0x00002BA8 12663 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_CHANGE
    0x00002BA8 12663 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x00002BA8 12663 3  COM_DBG_IF C: class DSP_CO_USER::OnRefresh()
    0x00002BA8 12663 3  XPCOM C: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 )
    0x00002BA8 12663 3  XPCOM R: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 ) = 0x00000000
    0x00002BA8 12663 3  COM_DBG_IF R: class DSP_CO_USER::OnRefresh()
    0x00002BA8 12663 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 12663 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 12663 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4989 ms
    0x00002BA8 12663 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 12663 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 12663 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4989 ms
    0x000019C0 12811 3  XPCOM C: ( (dsIConnectDisconnect*)125EB74C )->connectionStatus( 0018ECA8 )
    0x000019C0 12811 3  XPCOM R: ( (dsIConnectDisconnect*)125EB74C )->connectionStatus( *0018ECA8 = 0x00000000 ) = 0x00000000
    0x000019C0 12811 3  XPCOM C: ( (dsIProcessorInfo*)0050F498 )->Partnum( 0018ED68 )
    0x000019C0 12811 3  XPCOM R: ( (dsIProcessorInfo*)0050F498 )->Partnum( *0018ED68 = TM4C123GE6PM ) = 0x00000000
    0x000019C0 12811 3  XPCOM C: ( (dsIProcessorInfo*)0050F498 )->Partnum( 0018ED68 )
    0x000019C0 12811 3  XPCOM R: ( (dsIProcessorInfo*)0050F498 )->Partnum( *0018ED68 = TM4C123GE6PM ) = 0x00000000
    0x000021A8 12830 3  XPCOM C: ( (dsIFlashProgrammerManager*)16F72BF8 )->performOperation( Erase, 1994F6B8 )
    0x000021A8 12830 3  FLASH C: FlashProgrammerManager::PerformOperation( Erase )
    0x000021A8 12830 3  FLASH C: FlashProgrammerManager::TargetSupported()
    0x000021A8 12830 3  FLASH C: FlashStellaris::FlashAvailable()
    0x000021A8 12830 3  FLASH R: FlashStellaris::FlashAvailable() = 1
    0x000021A8 12830 3  FLASH I: FlashProgrammerManager::TargetSupported(), !m_pTargetInfo.isSimulator = 1
    0x000021A8 12830 3  FLASH I: FlashProgrammerManager::TargetSupported(), (m_flashDeviceInterface != NULL) = 1
    0x000021A8 12830 3  FLASH R: FlashProgrammerManager::TargetSupported() = 1
    0x000021A8 12830 3  FLASH C: FlashProgrammerUtility::GetValueOfProperty( FlashVerboseMode )
    0x000021A8 12830 3  FLASH R: FlashProgrammerUtility::GetValueOfProperty( FlashVerboseMode ) = 1
    0x000021A8 12830 3  FLASH C: FlashStellaris::PerformOperation(Erase)
    0x000021A8 12830 3  FLASH I: FlashProgrammerUtility::ReportInfo(), Info: Erasing Flash memory...
    0x000021A8 12830 3  COM_DBG_IF C: class dsDebugger::OnInfo()
    0x000021A8 12830 3  XPCOM C: ( (dsIStringEventCallback*)0051ED68 )->onEvent( CORTEX_M4_0: Erasing Flash memory...
     )
    0x000021A8 12830 3  XPCOM R: ( (dsIStringEventCallback*)0051ED68 )->onEvent( CORTEX_M4_0: Erasing Flash memory...
     ) = 0x00000000
    0x000021A8 12830 3  COM_DBG_IF R: class dsDebugger::OnInfo()
    0x000021A8 12830 3  COM_DBG_IF C: class DSP_CO_USER::OnInfo()
    0x000021A8 12830 3  XPCOM C: ( (dsIStringEventCallback*)16F72D38 )->onEvent( CORTEX_M4_0: Erasing Flash memory...
     )
    0x000021A8 12831 3  XPCOM R: ( (dsIStringEventCallback*)16F72D38 )->onEvent( CORTEX_M4_0: Erasing Flash memory...
     ) = 0x00000000
    0x000021A8 12831 3  COM_DBG_IF R: class DSP_CO_USER::OnInfo()
    0x000021A8 12831 3  FLASH C: FlashStellaris::InitializeDevice()
    0x000021A8 12831 3  FLASH C: FlashProgrammerUtility::WriteMem( 0x400FD0FC, 0x00000003, 2, 1 )
    0x000021A8 12831 3 CORTEX_M4_0 GTI C: GTI_WRITEMEM_WITH_STAT( 0x101C1208, 0x400FD0FC, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000003, 0xFFFFFFFF, *0x00000000 = (nullptr) )
    0x000021A8 12833 3 CORTEX_M4_0 GTI R: GTI_WRITEMEM_WITH_STAT( 0x101C1208, 0x400FD0FC, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000003, 0xFFFFFFFF, *0x00000000 = (nullptr) ) = 0x00000000
    0x000021A8 12833 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E884 = 0x00000000, *0x1994E864 = 0x00000000, *0x1994E880 = 0x00000000, *0x1994E85C = 0x00000000, *0x1994E87C = 0x00000000, *0x1994E878 = 0x00000000, *0x1994E870 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 12833 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E884 = 0x00000000, *0x1994E864 = 0x00000000, *0x1994E880 = 0x00000000, *0x1994E85C = 0x00000002, *0x1994E87C = 0x00000000, *0x1994E878 = 0x00000008, *0x1994E870 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 12833 3  FLASH R: FlashProgrammerUtility::WriteMem( 0x400FD0FC, 0x00000003, 2, 1 ) = 1
    0x000021A8 12833 3  FLASH C: FlashProgrammerUtility::WriteMem( 0x400AE2C0, 0x00000000, 2, 1 )
    0x000021A8 12833 3 CORTEX_M4_0 GTI C: GTI_WRITEMEM_WITH_STAT( 0x101C1208, 0x400AE2C0, 0x00000000, 0x00000004, 0x00000000, "NONE", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) )
    0x000021A8 12835 3 CORTEX_M4_0 GTI R: GTI_WRITEMEM_WITH_STAT( 0x101C1208, 0x400AE2C0, 0x00000000, 0x00000004, 0x00000000, "NONE", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) ) = 0x00000000
    0x000021A8 12835 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E884 = 0x00000000, *0x1994E864 = 0x00000000, *0x1994E880 = 0x00000000, *0x1994E85C = 0x00000000, *0x1994E87C = 0x00000000, *0x1994E878 = 0x00000000, *0x1994E870 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 12835 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E884 = 0x00000000, *0x1994E864 = 0x00000000, *0x1994E880 = 0x00000000, *0x1994E85C = 0x00000002, *0x1994E87C = 0x00000000, *0x1994E878 = 0x00000008, *0x1994E870 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 12835 3  FLASH R: FlashProgrammerUtility::WriteMem( 0x400AE2C0, 0x00000000, 2, 1 ) = 1
    0x000021A8 12835 3  FLASH C: FlashProgrammerUtility::WriteMem( 0x400FD0FC, 0x00000000, 2, 1 )
    0x000021A8 12835 3 CORTEX_M4_0 GTI C: GTI_WRITEMEM_WITH_STAT( 0x101C1208, 0x400FD0FC, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) )
    0x000021A8 12837 3 CORTEX_M4_0 GTI R: GTI_WRITEMEM_WITH_STAT( 0x101C1208, 0x400FD0FC, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) ) = 0x00000000
    0x000021A8 12837 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E884 = 0x00000000, *0x1994E864 = 0x00000000, *0x1994E880 = 0x00000000, *0x1994E85C = 0x00000000, *0x1994E87C = 0x00000000, *0x1994E878 = 0x00000000, *0x1994E870 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 12837 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E884 = 0x00000000, *0x1994E864 = 0x00000000, *0x1994E880 = 0x00000000, *0x1994E85C = 0x00000002, *0x1994E87C = 0x00000000, *0x1994E878 = 0x00000008, *0x1994E870 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 12837 3  FLASH R: FlashProgrammerUtility::WriteMem( 0x400FD0FC, 0x00000000, 2, 1 ) = 1
    0x000021A8 12837 3  FLASH R: FlashStellaris::InitializeDevice()
    0x000021A8 12837 3  FLASH C: FlashStellaris::Erase()
    0x000021A8 12837 3  FLASH C: FlashProgrammerUtility::DisplayProgressMessage( Erasing Flash. )
    0x000021A8 12837 3  COM_DBG_IF C: class dsDebugger::OnTaskStart()
    0x000021A8 12837 3  XPCOM C: ( (dsIObjectEventCallback*)0051ECE8 )->onEvent( 18566604 )
    0x000021A8 12837 3  XPCOM C: ( (nsISupports*)18566608 )->queryInterface( 125CF628, 1994E1B8 )
    0x000021A8 12837 3  XPCOM R: ( (nsISupports*)18566608 )->queryInterface( 125CF628, *1994E1B8 = 18566604 ) = 0x00000000
    0x000021A8 12837 3  XPCOM C: ( (dsIProgressTask*)18566604 )->onCompleted( 1994E178 )
    0x000021A8 12837 3  XPCOM R: ( (dsIProgressTask*)18566604 )->onCompleted( *1994E178 = 1709ABE0 ) = 0x00000000
    0x000021A8 12837 3  XPCOM C: ( (dsIProgressTask*)18566604 )->onUpdate( 1994E178 )
    0x000021A8 12837 3  XPCOM R: ( (dsIProgressTask*)18566604 )->onUpdate( *1994E178 = 1709A3E0 ) = 0x00000000
    0x000021A8 12837 3  XPCOM C: ( (dsIProgressTask*)18566604 )->HasPercentCompletion( 1994E1D8 )
    0x000021A8 12837 3  XPCOM R: ( (dsIProgressTask*)18566604 )->HasPercentCompletion( *1994E1D8 = true ) = 0x00000000
    0x000021A8 12837 3  XPCOM C: ( (dsIObjectEvent*)1709A3E0 )->addListener( 125CF628 )
    0x000021A8 12837 3  XPCOM R: ( (dsIObjectEvent*)1709A3E0 )->addListener( 125CF628 ) = 0x00000000
    0x000021A8 12837 3  XPCOM R: ( (dsIObjectEventCallback*)0051ECE8 )->onEvent( 18566604 ) = 0x00000000
    0x000021A8 12837 3  COM_DBG_IF R: class dsDebugger::OnTaskStart()
    0x000021A8 12837 3  FLASH R: FlashProgrammerUtility::DisplayProgressMessage()
    0x000021A8 12837 3  FLASH C: FlashProgrammerUtility::GetValueOfProperty( FlashEraseType )
    0x000021A8 12837 3  FLASH R: FlashProgrammerUtility::GetValueOfProperty( FlashEraseType ) = Entire Flash
    0x000021A8 12837 3  FLASH C: FlashProgrammerUtility::WriteMem( 0x400FD000, 0x00000000, 2, 1 )
    0x000021A8 12837 3 CORTEX_M4_0 GTI C: GTI_WRITEMEM_WITH_STAT( 0x101C1208, 0x400FD000, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) )
    0x000021A8 12839 3 CORTEX_M4_0 GTI R: GTI_WRITEMEM_WITH_STAT( 0x101C1208, 0x400FD000, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) ) = 0x00000000
    0x000021A8 12839 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E874 = 0x00000000, *0x1994E854 = 0x00000000, *0x1994E870 = 0x00000000, *0x1994E84C = 0x00000000, *0x1994E86C = 0x00000000, *0x1994E868 = 0x00000000, *0x1994E860 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 12839 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E874 = 0x00000000, *0x1994E854 = 0x00000000, *0x1994E870 = 0x00000000, *0x1994E84C = 0x00000002, *0x1994E86C = 0x00000000, *0x1994E868 = 0x00000008, *0x1994E860 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 12839 3  FLASH R: FlashProgrammerUtility::WriteMem( 0x400FD000, 0x00000000, 2, 1 ) = 1
    0x000021A8 12839 3  FLASH C: FlashProgrammerUtility::GetValueOfProperty( FlashVerboseMode )
    0x000021A8 12839 3  FLASH R: FlashProgrammerUtility::GetValueOfProperty( FlashVerboseMode ) = 1
    0x000021A8 12839 3  FLASH I: FlashProgrammerUtility::ReportInfo(), Info: Performing Mass Erase on Flash memory
    0x000021A8 12839 3  COM_DBG_IF C: class dsDebugger::OnInfo()
    0x000021A8 12839 3  XPCOM C: ( (dsIStringEventCallback*)0051ED68 )->onEvent( CORTEX_M4_0: Performing Mass Erase on Flash memory
     )
    0x000021A8 12839 3  XPCOM R: ( (dsIStringEventCallback*)0051ED68 )->onEvent( CORTEX_M4_0: Performing Mass Erase on Flash memory
     ) = 0x00000000
    0x000021A8 12839 3  COM_DBG_IF R: class dsDebugger::OnInfo()
    0x000021A8 12839 3  COM_DBG_IF C: class DSP_CO_USER::OnInfo()
    0x000021A8 12839 3  XPCOM C: ( (dsIStringEventCallback*)16F72D38 )->onEvent( CORTEX_M4_0: Performing Mass Erase on Flash memory
     )
    0x000021A8 12839 3  XPCOM R: ( (dsIStringEventCallback*)16F72D38 )->onEvent( CORTEX_M4_0: Performing Mass Erase on Flash memory
     ) = 0x00000000
    0x000021A8 12839 3  COM_DBG_IF R: class DSP_CO_USER::OnInfo()
    0x000021A8 12839 3  FLASH C: FlashStellaris::MassErase()
    0x000021A8 12839 3  FLASH C: FlashProgrammerUtility::Halt()
    0x000021A8 12839 3 CORTEX_M4_0 GTI C: GTI_HALT( 0x101C1208, 0x00000000 )
    0x000021A8 12839 3 CORTEX_M4_0 GTI R: GTI_HALT( 0x101C1208, 0x00000000 ) = 0x00000000
    0x000021A8 12840 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E928 = 0x00000000, *0x1994E908 = 0x00000000, *0x1994E924 = 0x00000000, *0x1994E900 = 0x00000000, *0x1994E920 = 0x00000000, *0x1994E91C = 0x00000000, *0x1994E914 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 12840 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E928 = 0x00000000, *0x1994E908 = 0x00000000, *0x1994E924 = 0x00000000, *0x1994E900 = 0x00000002, *0x1994E920 = 0x00000000, *0x1994E91C = 0x00000008, *0x1994E914 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 12840 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E860 = 0x00000000, *0x1994E840 = 0x00000000, *0x1994E85C = 0x00000000, *0x1994E838 = 0x00000000, *0x1994E858 = 0x00000000, *0x1994E854 = 0x00000000, *0x1994E84C = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 12840 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E860 = 0x00000000, *0x1994E840 = 0x00000000, *0x1994E85C = 0x00000000, *0x1994E838 = 0x00000002, *0x1994E858 = 0x00000000, *0x1994E854 = 0x00000008, *0x1994E84C = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 12840 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x101C1208, *0x1994EF54 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x000021A8 12841 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x101C1208, *0x1994EF54 = { 4, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x000021A8 12841 3  FLASH R: FlashProgrammerUtility::Halt() = 1
    0x000021A8 12841 3  FLASH C: FlashProgrammerUtility::ReadMem( 0x400FE1D0, 1994EFE0, 2, 1 )
    0x000021A8 12841 3 CORTEX_M4_0 GTI C: GTI_READMEM_WITH_STAT( 0x101C1208, 0x400FE1D0, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) )
    0x000021A8 12842 3 CORTEX_M4_0 GTI R: GTI_READMEM_WITH_STAT( 0x101C1208, 0x400FE1D0, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x000000FE, 0xFFFFFFFF, *0x00000000 = (nullptr) ) = 0x00000000
    0x000021A8 12842 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E86C = 0x00000000, *0x1994E84C = 0x00000000, *0x1994E868 = 0x00000000, *0x1994E844 = 0x00000000, *0x1994E864 = 0x00000000, *0x1994E860 = 0x00000000, *0x1994E858 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 12842 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E86C = 0x00000000, *0x1994E84C = 0x00000000, *0x1994E868 = 0x00000000, *0x1994E844 = 0x00000002, *0x1994E864 = 0x00000000, *0x1994E860 = 0x00000008, *0x1994E858 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 12842 3  FLASH R: FlashProgrammerUtility::ReadMem( 0x400FE1D0, 1994EFE0 = -2, 2, 1 ) = 1
    0x000021A8 12842 3  FLASH C: FlashProgrammerUtility::WriteMem( 0x400FD008, 0xA4420004, 2, 1 )
    0x000021A8 12843 3 CORTEX_M4_0 GTI C: GTI_WRITEMEM_WITH_STAT( 0x101C1208, 0x400FD008, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000004, 0xFFFFFFFF, *0x00000000 = (nullptr) )
    0x000021A8 12844 3 CORTEX_M4_0 GTI R: GTI_WRITEMEM_WITH_STAT( 0x101C1208, 0x400FD008, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0xA4420004, 0xFFFFFFFF, *0x00000000 = (nullptr) ) = 0x00000000
    0x000021A8 12844 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E85C = 0x00000000, *0x1994E83C = 0x00000000, *0x1994E858 = 0x00000000, *0x1994E834 = 0x00000000, *0x1994E854 = 0x00000000, *0x1994E850 = 0x00000000, *0x1994E848 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 12844 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E85C = 0x00000000, *0x1994E83C = 0x00000000, *0x1994E858 = 0x00000000, *0x1994E834 = 0x00000002, *0x1994E854 = 0x00000000, *0x1994E850 = 0x00000008, *0x1994E848 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 12844 3  FLASH R: FlashProgrammerUtility::WriteMem( 0x400FD008, 0xA4420004, 2, 1 ) = 1
    0x000021A8 12854 3  FLASH C: FlashProgrammerUtility::ReadMem( 0x400FD008, 1994EFE0, 2, 1 )
    0x000021A8 12854 3 CORTEX_M4_0 GTI C: GTI_READMEM_WITH_STAT( 0x101C1208, 0x400FD008, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) )
    0x000021A8 12855 3 CORTEX_M4_0 GTI R: GTI_READMEM_WITH_STAT( 0x101C1208, 0x400FD008, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) ) = 0x00000000
    0x000021A8 12855 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E86C = 0x00000000, *0x1994E84C = 0x00000000, *0x1994E868 = 0x00000000, *0x1994E844 = 0x00000000, *0x1994E864 = 0x00000000, *0x1994E860 = 0x00000000, *0x1994E858 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 12855 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E86C = 0x00000000, *0x1994E84C = 0x00000000, *0x1994E868 = 0x00000000, *0x1994E844 = 0x00000002, *0x1994E864 = 0x00000000, *0x1994E860 = 0x00000008, *0x1994E858 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 12855 3  FLASH R: FlashProgrammerUtility::ReadMem( 0x400FD008, 1994EFE0 = 0, 2, 1 ) = 1
    0x000021A8 12855 3  FLASH C: FlashProgrammerUtility::ResetTarget( 0 )
    0x000021A8 12855 3 CORTEX_M4_0 GTI C: GTI_GET_NUM_RESETS( 0x101C1208 )
    0x000021A8 12855 3 CORTEX_M4_0 GTI R: GTI_GET_NUM_RESETS( 0x101C1208 ) = 0x00000002
    0x000021A8 12855 3 CORTEX_M4_0 GTI C: GTI_RESET_EX( 0x101C1208, 0x00000000 )
    0x000021A8 12920 3 CORTEX_M4_0 GTI R: GTI_RESET_EX( 0x101C1208, 0x00000000 ) = 0x00000000
    0x000021A8 12920 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E928 = 0x00000000, *0x1994E908 = 0x00000000, *0x1994E924 = 0x00000000, *0x1994E900 = 0x00000000, *0x1994E920 = 0x00000000, *0x1994E91C = 0x00000000, *0x1994E914 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 12920 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E928 = 0x00000000, *0x1994E908 = 0x00000000, *0x1994E924 = 0x00000000, *0x1994E900 = 0x00000002, *0x1994E920 = 0x00000000, *0x1994E91C = 0x00000008, *0x1994E914 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 12920 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E860 = 0x00000000, *0x1994E840 = 0x00000000, *0x1994E85C = 0x00000000, *0x1994E838 = 0x00000000, *0x1994E858 = 0x00000000, *0x1994E854 = 0x00000000, *0x1994E84C = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 12920 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E860 = 0x00000000, *0x1994E840 = 0x00000000, *0x1994E85C = 0x00000000, *0x1994E838 = 0x00000002, *0x1994E858 = 0x00000000, *0x1994E854 = 0x00000008, *0x1994E84C = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 12920 3  FLASH R: FlashProgrammerUtility::ResetTarget( 0 )
    0x000021A8 12920 3  FLASH C: FlashStellaris::ROMAliasClear()
    0x000021A8 12920 3  FLASH C: FlashProgrammerUtility::ReadMem( 0x400FE000, 1994EFC8, 2, 1 )
    0x000021A8 12920 3 CORTEX_M4_0 GTI C: GTI_READMEM_WITH_STAT( 0x101C1208, 0x400FE000, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) )
    0x000021A8 12922 3 CORTEX_M4_0 GTI R: GTI_READMEM_WITH_STAT( 0x101C1208, 0x400FE000, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000001, 0xFFFFFFFF, *0x00000000 = (nullptr) ) = 0x00000000
    0x000021A8 12922 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E85C = 0x00000000, *0x1994E83C = 0x00000000, *0x1994E858 = 0x00000000, *0x1994E834 = 0x00000000, *0x1994E854 = 0x00000000, *0x1994E850 = 0x00000000, *0x1994E848 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 12922 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E85C = 0x00000000, *0x1994E83C = 0x00000000, *0x1994E858 = 0x00000000, *0x1994E834 = 0x00000002, *0x1994E854 = 0x00000000, *0x1994E850 = 0x00000008, *0x1994E848 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 12922 3  FLASH R: FlashProgrammerUtility::ReadMem( 0x400FE000, 1994EFC8 = 402981121, 2, 1 ) = 1
    0x000021A8 12922 3  FLASH C: FlashProgrammerUtility::ReadMem( 0x400FE0F0, 1994EFC8, 2, 1 )
    0x000021A8 12922 3 CORTEX_M4_0 GTI C: GTI_READMEM_WITH_STAT( 0x101C1208, 0x400FE0F0, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) )
    0x000021A8 12923 3 CORTEX_M4_0 GTI R: GTI_READMEM_WITH_STAT( 0x101C1208, 0x400FE0F0, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) ) = 0x00000000
    0x000021A8 12923 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E85C = 0x00000000, *0x1994E83C = 0x00000000, *0x1994E858 = 0x00000000, *0x1994E834 = 0x00000000, *0x1994E854 = 0x00000000, *0x1994E850 = 0x00000000, *0x1994E848 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 12923 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E85C = 0x00000000, *0x1994E83C = 0x00000000, *0x1994E858 = 0x00000000, *0x1994E834 = 0x00000002, *0x1994E854 = 0x00000000, *0x1994E850 = 0x00000008, *0x1994E848 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 12923 3  FLASH R: FlashProgrammerUtility::ReadMem( 0x400FE0F0, 1994EFC8 = 0, 2, 1 ) = 1
    0x000021A8 12923 3  FLASH C: FlashProgrammerUtility::WriteMem( 0x400FE0F0, 0x00000000, 2, 1 )
    0x000021A8 12923 3 CORTEX_M4_0 GTI C: GTI_WRITEMEM_WITH_STAT( 0x101C1208, 0x400FE0F0, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) )
    0x000021A8 12925 3 CORTEX_M4_0 GTI R: GTI_WRITEMEM_WITH_STAT( 0x101C1208, 0x400FE0F0, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) ) = 0x00000000
    0x000021A8 12925 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E84C = 0x00000000, *0x1994E82C = 0x00000000, *0x1994E848 = 0x00000000, *0x1994E824 = 0x00000000, *0x1994E844 = 0x00000000, *0x1994E840 = 0x00000000, *0x1994E838 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 12925 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E84C = 0x00000000, *0x1994E82C = 0x00000000, *0x1994E848 = 0x00000000, *0x1994E824 = 0x00000002, *0x1994E844 = 0x00000000, *0x1994E840 = 0x00000008, *0x1994E838 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 12925 3  FLASH R: FlashProgrammerUtility::WriteMem( 0x400FE0F0, 0x00000000, 2, 1 ) = 1
    0x000021A8 12935 3  FLASH R: FlashStellaris::ROMAliasClear() = true
    0x000021A8 12935 3  FLASH R: FlashStellaris::MassErase() = true
    0x000021A8 12935 3  FLASH C: FlashProgrammerUtility::WriteMem( 0x400FD000, 0x00020000, 2, 1 )
    0x000021A8 12935 3 CORTEX_M4_0 GTI C: GTI_WRITEMEM_WITH_STAT( 0x101C1208, 0x400FD000, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) )
    0x000021A8 12936 3 CORTEX_M4_0 GTI R: GTI_WRITEMEM_WITH_STAT( 0x101C1208, 0x400FD000, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00020000, 0xFFFFFFFF, *0x00000000 = (nullptr) ) = 0x00000000
    0x000021A8 12936 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E874 = 0x00000000, *0x1994E854 = 0x00000000, *0x1994E870 = 0x00000000, *0x1994E84C = 0x00000000, *0x1994E86C = 0x00000000, *0x1994E868 = 0x00000000, *0x1994E860 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 12936 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E874 = 0x00000000, *0x1994E854 = 0x00000000, *0x1994E870 = 0x00000000, *0x1994E84C = 0x00000002, *0x1994E86C = 0x00000000, *0x1994E868 = 0x00000008, *0x1994E860 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 12936 3  FLASH R: FlashProgrammerUtility::WriteMem( 0x400FD000, 0x00020000, 2, 1 ) = 1
    0x000021A8 12936 3  FLASH C: FlashStellaris::MassErase()
    0x000021A8 12936 3  FLASH C: FlashProgrammerUtility::Halt()
    0x000021A8 12936 3 CORTEX_M4_0 GTI C: GTI_HALT( 0x101C1208, 0x00000000 )
    0x000021A8 12936 3 CORTEX_M4_0 GTI R: GTI_HALT( 0x101C1208, 0x00000000 ) = 0x00000000
    0x000021A8 12936 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E928 = 0x00000000, *0x1994E908 = 0x00000000, *0x1994E924 = 0x00000000, *0x1994E900 = 0x00000000, *0x1994E920 = 0x00000000, *0x1994E91C = 0x00000000, *0x1994E914 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 12937 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E928 = 0x00000000, *0x1994E908 = 0x00000000, *0x1994E924 = 0x00000000, *0x1994E900 = 0x00000002, *0x1994E920 = 0x00000000, *0x1994E91C = 0x00000008, *0x1994E914 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 12937 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E860 = 0x00000000, *0x1994E840 = 0x00000000, *0x1994E85C = 0x00000000, *0x1994E838 = 0x00000000, *0x1994E858 = 0x00000000, *0x1994E854 = 0x00000000, *0x1994E84C = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 12937 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E860 = 0x00000000, *0x1994E840 = 0x00000000, *0x1994E85C = 0x00000000, *0x1994E838 = 0x00000002, *0x1994E858 = 0x00000000, *0x1994E854 = 0x00000008, *0x1994E84C = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 12937 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x101C1208, *0x1994EF54 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x000021A8 12938 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x101C1208, *0x1994EF54 = { 4, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x000021A8 12938 3  FLASH R: FlashProgrammerUtility::Halt() = 1
    0x000021A8 12938 3  FLASH C: FlashProgrammerUtility::ReadMem( 0x400FE1D0, 1994EFE0, 2, 1 )
    0x000021A8 12938 3 CORTEX_M4_0 GTI C: GTI_READMEM_WITH_STAT( 0x101C1208, 0x400FE1D0, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) )
    0x000021A8 12939 3 CORTEX_M4_0 GTI R: GTI_READMEM_WITH_STAT( 0x101C1208, 0x400FE1D0, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x000000FE, 0xFFFFFFFF, *0x00000000 = (nullptr) ) = 0x00000000
    0x000021A8 12939 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E86C = 0x00000000, *0x1994E84C = 0x00000000, *0x1994E868 = 0x00000000, *0x1994E844 = 0x00000000, *0x1994E864 = 0x00000000, *0x1994E860 = 0x00000000, *0x1994E858 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 12939 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E86C = 0x00000000, *0x1994E84C = 0x00000000, *0x1994E868 = 0x00000000, *0x1994E844 = 0x00000002, *0x1994E864 = 0x00000000, *0x1994E860 = 0x00000008, *0x1994E858 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 12940 3  FLASH R: FlashProgrammerUtility::ReadMem( 0x400FE1D0, 1994EFE0 = -2, 2, 1 ) = 1
    0x000021A8 12940 3  FLASH C: FlashProgrammerUtility::WriteMem( 0x400FD008, 0xA4420004, 2, 1 )
    0x000021A8 12940 3 CORTEX_M4_0 GTI C: GTI_WRITEMEM_WITH_STAT( 0x101C1208, 0x400FD008, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000004, 0xFFFFFFFF, *0x00000000 = (nullptr) )
    0x000021A8 12941 3 CORTEX_M4_0 GTI R: GTI_WRITEMEM_WITH_STAT( 0x101C1208, 0x400FD008, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0xA4420004, 0xFFFFFFFF, *0x00000000 = (nullptr) ) = 0x00000000
    0x000021A8 12941 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E85C = 0x00000000, *0x1994E83C = 0x00000000, *0x1994E858 = 0x00000000, *0x1994E834 = 0x00000000, *0x1994E854 = 0x00000000, *0x1994E850 = 0x00000000, *0x1994E848 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 12941 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E85C = 0x00000000, *0x1994E83C = 0x00000000, *0x1994E858 = 0x00000000, *0x1994E834 = 0x00000002, *0x1994E854 = 0x00000000, *0x1994E850 = 0x00000008, *0x1994E848 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 12941 3  FLASH R: FlashProgrammerUtility::WriteMem( 0x400FD008, 0xA4420004, 2, 1 ) = 1
    0x000021A8 12951 3  FLASH C: FlashProgrammerUtility::ReadMem( 0x400FD008, 1994EFE0, 2, 1 )
    0x000021A8 12951 3 CORTEX_M4_0 GTI C: GTI_READMEM_WITH_STAT( 0x101C1208, 0x400FD008, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) )
    0x000021A8 12952 3 CORTEX_M4_0 GTI R: GTI_READMEM_WITH_STAT( 0x101C1208, 0x400FD008, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) ) = 0x00000000
    0x000021A8 12952 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E86C = 0x00000000, *0x1994E84C = 0x00000000, *0x1994E868 = 0x00000000, *0x1994E844 = 0x00000000, *0x1994E864 = 0x00000000, *0x1994E860 = 0x00000000, *0x1994E858 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 12952 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E86C = 0x00000000, *0x1994E84C = 0x00000000, *0x1994E868 = 0x00000000, *0x1994E844 = 0x00000002, *0x1994E864 = 0x00000000, *0x1994E860 = 0x00000008, *0x1994E858 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 12952 3  FLASH R: FlashProgrammerUtility::ReadMem( 0x400FD008, 1994EFE0 = 0, 2, 1 ) = 1
    0x000021A8 12952 3  FLASH C: FlashProgrammerUtility::ResetTarget( 0 )
    0x000021A8 12952 3 CORTEX_M4_0 GTI C: GTI_GET_NUM_RESETS( 0x101C1208 )
    0x000021A8 12952 3 CORTEX_M4_0 GTI R: GTI_GET_NUM_RESETS( 0x101C1208 ) = 0x00000002
    0x000021A8 12952 3 CORTEX_M4_0 GTI C: GTI_RESET_EX( 0x101C1208, 0x00000000 )
    0x000021A8 13016 3 CORTEX_M4_0 GTI R: GTI_RESET_EX( 0x101C1208, 0x00000000 ) = 0x00000000
    0x000021A8 13016 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E928 = 0x00000000, *0x1994E908 = 0x00000000, *0x1994E924 = 0x00000000, *0x1994E900 = 0x00000000, *0x1994E920 = 0x00000000, *0x1994E91C = 0x00000000, *0x1994E914 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 13016 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E928 = 0x00000000, *0x1994E908 = 0x00000000, *0x1994E924 = 0x00000000, *0x1994E900 = 0x00000002, *0x1994E920 = 0x00000000, *0x1994E91C = 0x00000008, *0x1994E914 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 13016 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E860 = 0x00000000, *0x1994E840 = 0x00000000, *0x1994E85C = 0x00000000, *0x1994E838 = 0x00000000, *0x1994E858 = 0x00000000, *0x1994E854 = 0x00000000, *0x1994E84C = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 13016 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E860 = 0x00000000, *0x1994E840 = 0x00000000, *0x1994E85C = 0x00000000, *0x1994E838 = 0x00000002, *0x1994E858 = 0x00000000, *0x1994E854 = 0x00000008, *0x1994E84C = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 13016 3  FLASH R: FlashProgrammerUtility::ResetTarget( 0 )
    0x000021A8 13016 3  FLASH C: FlashStellaris::ROMAliasClear()
    0x000021A8 13016 3  FLASH C: FlashProgrammerUtility::ReadMem( 0x400FE000, 1994EFC8, 2, 1 )
    0x000021A8 13017 3 CORTEX_M4_0 GTI C: GTI_READMEM_WITH_STAT( 0x101C1208, 0x400FE000, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) )
    0x000021A8 13018 3 CORTEX_M4_0 GTI R: GTI_READMEM_WITH_STAT( 0x101C1208, 0x400FE000, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000001, 0xFFFFFFFF, *0x00000000 = (nullptr) ) = 0x00000000
    0x000021A8 13018 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E85C = 0x00000000, *0x1994E83C = 0x00000000, *0x1994E858 = 0x00000000, *0x1994E834 = 0x00000000, *0x1994E854 = 0x00000000, *0x1994E850 = 0x00000000, *0x1994E848 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 13018 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E85C = 0x00000000, *0x1994E83C = 0x00000000, *0x1994E858 = 0x00000000, *0x1994E834 = 0x00000002, *0x1994E854 = 0x00000000, *0x1994E850 = 0x00000008, *0x1994E848 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 13018 3  FLASH R: FlashProgrammerUtility::ReadMem( 0x400FE000, 1994EFC8 = 402981121, 2, 1 ) = 1
    0x000021A8 13018 3  FLASH C: FlashProgrammerUtility::ReadMem( 0x400FE0F0, 1994EFC8, 2, 1 )
    0x000021A8 13018 3 CORTEX_M4_0 GTI C: GTI_READMEM_WITH_STAT( 0x101C1208, 0x400FE0F0, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) )
    0x000021A8 13019 3 CORTEX_M4_0 GTI R: GTI_READMEM_WITH_STAT( 0x101C1208, 0x400FE0F0, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) ) = 0x00000000
    0x000021A8 13019 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E85C = 0x00000000, *0x1994E83C = 0x00000000, *0x1994E858 = 0x00000000, *0x1994E834 = 0x00000000, *0x1994E854 = 0x00000000, *0x1994E850 = 0x00000000, *0x1994E848 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 13020 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E85C = 0x00000000, *0x1994E83C = 0x00000000, *0x1994E858 = 0x00000000, *0x1994E834 = 0x00000002, *0x1994E854 = 0x00000000, *0x1994E850 = 0x00000008, *0x1994E848 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 13020 3  FLASH R: FlashProgrammerUtility::ReadMem( 0x400FE0F0, 1994EFC8 = 0, 2, 1 ) = 1
    0x000021A8 13020 3  FLASH C: FlashProgrammerUtility::WriteMem( 0x400FE0F0, 0x00000000, 2, 1 )
    0x000021A8 13020 3 CORTEX_M4_0 GTI C: GTI_WRITEMEM_WITH_STAT( 0x101C1208, 0x400FE0F0, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) )
    0x000021A8 13021 3 CORTEX_M4_0 GTI R: GTI_WRITEMEM_WITH_STAT( 0x101C1208, 0x400FE0F0, 0x00000000, 0x00000004, 0x00000003, "R|W", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) ) = 0x00000000
    0x000021A8 13021 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E84C = 0x00000000, *0x1994E82C = 0x00000000, *0x1994E848 = 0x00000000, *0x1994E824 = 0x00000000, *0x1994E844 = 0x00000000, *0x1994E840 = 0x00000000, *0x1994E838 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000021A8 13021 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1994E84C = 0x00000000, *0x1994E82C = 0x00000000, *0x1994E848 = 0x00000000, *0x1994E824 = 0x00000002, *0x1994E844 = 0x00000000, *0x1994E840 = 0x00000008, *0x1994E838 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000021A8 13021 3  FLASH R: FlashProgrammerUtility::WriteMem( 0x400FE0F0, 0x00000000, 2, 1 ) = 1
    0x000021A8 13031 3  FLASH R: FlashStellaris::ROMAliasClear() = true
    0x000021A8 13031 3  FLASH R: FlashStellaris::MassErase() = true
    0x000021A8 13031 3  FLASH C: FlashProgrammerUtility::EndProgressMessage()
    0x000021A8 13031 3  COM_DBG_IF C: class DebugEngine_Progress_Stream::OnCompleted()
    0x000021A8 13031 3  COM_DBG_IF R: class DebugEngine_Progress_Stream::OnCompleted()
    0x000021A8 13031 3  FLASH R: FlashProgrammerUtility::EndProgressMessage()
    0x000021A8 13031 3  FLASH R: FlashStellaris::Erase() = true
    0x000021A8 13031 3  FLASH C: FlashStellaris::ResetSettings(0)
    0x000021A8 13031 3  FLASH C: FlashProgrammerUtility::GetValueOfProperty( FlashResetSetting )
    0x000021A8 13031 3  FLASH R: FlashProgrammerUtility::GetValueOfProperty( FlashResetSetting ) = 0
    0x000021A8 13031 3  FLASH R: FlashStellaris::ResetSettings()
    0x000021A8 13031 3  FLASH I: FlashProgrammerUtility::ReportInfo(), Info: Operation completed successfully.
    0x000021A8 13031 3  COM_DBG_IF C: class dsDebugger::OnInfo()
    0x000021A8 13031 3  XPCOM C: ( (dsIStringEventCallback*)0051ED68 )->onEvent( CORTEX_M4_0: Operation completed successfully.
     )
    0x000021A8 13031 3  XPCOM R: ( (dsIStringEventCallback*)0051ED68 )->onEvent( CORTEX_M4_0: Operation completed successfully.
     ) = 0x00000000
    0x000021A8 13031 3  COM_DBG_IF R: class dsDebugger::OnInfo()
    0x000021A8 13031 3  COM_DBG_IF C: class DSP_CO_USER::OnInfo()
    0x000021A8 13031 3  XPCOM C: ( (dsIStringEventCallback*)16F72D38 )->onEvent( CORTEX_M4_0: Operation completed successfully.
     )
    0x000021A8 13031 3  XPCOM R: ( (dsIStringEventCallback*)16F72D38 )->onEvent( CORTEX_M4_0: Operation completed successfully.
     ) = 0x00000000
    0x000021A8 13031 3  COM_DBG_IF R: class DSP_CO_USER::OnInfo()
    0x000021A8 13031 3  FLASH R: FlashStellaris::PerformOperation() = true
    0x000021A8 13031 3  FLASH C: FlashProgrammerUtility::RestoreBackedUpRAM()
    0x000021A8 13031 3  FLASH R: FlashProgrammerUtility::RestoreBackedUpRAM() = 1
    0x000021A8 13031 3  FLASH R: FlashProgrammerManager::PerformOperation( Erase ) = 1
    0x000021A8 13031 3  XPCOM R: ( (dsIFlashProgrammerManager*)16F72BF8 )->performOperation( Erase, *1994F6B8 = true ) = 0x00000000
    0x000019C0 13138 3  XPCOM C: ( (dsIConnectDisconnect*)125EB74C )->disconnect( true )
    0x000019C0 13138 3 CORTEX_M4_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x000019C0 13138 3 CORTEX_M4_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x000019C0 13138 3 CORTEX_M4_0 STATE I: Connection state changed to 3
    0x000019C0 13138 3 CORTEX_M4_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::ePreDisconnect )
    0x000019C0 13138 3 CORTEX_M4_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::ePreDisconnect )
    0x000019C0 13138 3  COM_DBG_IF C: class DSP_CO_USER::OnDisconnecting()
    0x000019C0 13138 3  XPCOM C: ( (dsIBooleanEventCallback*)16F72238 )->onEvent( false )
    0x000019C0 13138 3  XPCOM C: ( (dsIRefreshControl*)125EB784 )->beginRefresh( 0018D688 )
    0x000019C0 13138 3  XPCOM R: ( (dsIRefreshControl*)125EB784 )->beginRefresh( *0018D688 = 0x00000000 ) = 0x00000000
    0x000019C0 13138 3  XPCOM R: ( (dsIBooleanEventCallback*)16F72238 )->onEvent( false ) = 0x00000000
    0x000019C0 13138 3  COM_DBG_IF R: class DSP_CO_USER::OnDisconnecting()
    0x000019C0 13138 3  COM_DBG_IF C: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x000019C0 13138 3  XPCOM C: ( (dsISimpleEventCallback*)16F725B8 )->onEvent()
    0x000019C0 13138 3  XPCOM R: ( (dsISimpleEventCallback*)16F725B8 )->onEvent() = 0x00000000
    0x000019C0 13138 3  COM_DBG_IF R: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x000019C0 13138 3  COM_DBG_IF C: class CoBreakpointManager::OnBatchUpdateStarted()
    0x000019C0 13138 3  COM_DBG_IF R: class CoBreakpointManager::OnBatchUpdateStarted()
    0x000019C0 13138 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class DebuggerListeners
    0x000019C0 13138 3  COM_DBG_IF C: class DSP_CO_USER::OnRemoveDebugState()
    0x000019C0 13138 3  COM_DBG_IF R: class DSP_CO_USER::OnRemoveDebugState()
    0x000019C0 13138 3  XPCOM R: ( (dsIConnectDisconnect*)125EB74C )->disconnect( true ) = 0x00000000
    0x00002BA8 13139 3 CORTEX_M4_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 13139 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 13139 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 13139 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 24 ms
    0x00002BA8 13139 4  POLL I: TimeToSleep() found shorter sleep time of 24 ms from class DevicePollFrequencyManager
    0x00002BA8 13139 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x00002BA8 13139 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 13139 4  POLL I: Yielding to other threads
    0x00002BA8 13139 3 CORTEX_M4_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x00002BA8 13139 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class DebuggerListeners
    0x00002BA8 13139 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 13139 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 13139 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 24 ms
    0x00002BA8 13139 4  POLL I: TimeToSleep() found shorter sleep time of 24 ms from class DevicePollFrequencyManager
    0x00002BA8 13139 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x00002BA8 13139 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 13139 4  POLL I: Yielding to other threads
    0x00002BA8 13139 3 CORTEX_M4_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x00002BA8 13139 3  COM_DBG_IF C: class CoBreakpointManager::OnBatchUpdateFinished()
    0x00002BA8 13139 3  COM_DBG_IF R: class CoBreakpointManager::OnBatchUpdateFinished()
    0x00002BA8 13139 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 13139 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 13139 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 24 ms
    0x00002BA8 13139 4  POLL I: TimeToSleep() found shorter sleep time of 24 ms from class DevicePollFrequencyManager
    0x00002BA8 13139 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x00002BA8 13139 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 13139 4  POLL I: Yielding to other threads
    0x00002BA8 13139 3 CORTEX_M4_0 POLL C: Polling with state CPU_ST_DISCONNECT and status EVENT_DSP_HALT
    0x00002BA8 13139 3 CORTEX_M4_0 GTI C: GTI_DONE_REMOVING_DEBUG_STATE( 0x101C1208 )
    0x00002BA8 13139 3 CORTEX_M4_0 GTI R: GTI_DONE_REMOVING_DEBUG_STATE( 0x101C1208 ) = 0x00000000
    0x00002BA8 13139 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6ECF8 = 0x00000000, *0x0FB6ECD8 = 0x00000000, *0x0FB6ECF4 = 0x00000000, *0x0FB6ECD0 = 0x00000000, *0x0FB6ECF0 = 0x00000000, *0x0FB6ECEC = 0x00000000, *0x0FB6ECE4 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x00002BA8 13139 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6ECF8 = 0x00000000, *0x0FB6ECD8 = 0x00000000, *0x0FB6ECF4 = 0x00000000, *0x0FB6ECD0 = 0x00000002, *0x0FB6ECF0 = 0x00000000, *0x0FB6ECEC = 0x00000008, *0x0FB6ECE4 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x00002BA8 13139 3 CORTEX_M4_0 GTI C: GTI_DISCONNECT( 0x101C1208 )
    0x00002BA8 13194 3 CORTEX_M4_0 GTI R: GTI_DISCONNECT( 0x101C1208 ) = 0x00000000
    0x00002BA8 13194 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6ECF8 = 0x00000000, *0x0FB6ECD8 = 0x00000000, *0x0FB6ECF4 = 0x00000000, *0x0FB6ECD0 = 0x00000000, *0x0FB6ECF0 = 0x00000000, *0x0FB6ECEC = 0x00000000, *0x0FB6ECE4 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x00002BA8 13194 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6ECF8 = 0x00000000, *0x0FB6ECD8 = 0x00000000, *0x0FB6ECF4 = 0x00000000, *0x0FB6ECD0 = 0x00000002, *0x0FB6ECF0 = 0x00000000, *0x0FB6ECEC = 0x00000008, *0x0FB6ECE4 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x00002BA8 13194 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x101C1208, *0x0FB6F30C = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x00002BA8 13194 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x101C1208, *0x0FB6F30C = { 1, 100, 202, 301, 401, 0, 0, 0 } ) = 0x00000000
    0x00002BA8 13194 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x00002BA8 13194 3 CORTEX_M4_0 STATE I: Connection state changed to 2
    0x00002BA8 13194 3 CORTEX_M4_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eDisconnected )
    0x00002BA8 13194 3 CORTEX_M4_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eDisconnected )
    0x00002BA8 13194 3 CS_DAP_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 13194 3 CS_DAP_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 13194 3 CS_DAP_0 STATE I: Connection state changed to 3
    0x00002BA8 13194 3 CS_DAP_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::ePreDisconnect )
    0x00002BA8 13195 3 CS_DAP_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::ePreDisconnect )
    0x00002BA8 13195 3  COM_DBG_IF C: class DSP_CO_USER::OnDisconnecting()
    0x00002BA8 13195 3  XPCOM C: ( (dsIBooleanEventCallback*)12240648 )->onEvent( false )
    0x00002BA8 13195 3  XPCOM C: ( (dsIRefreshControl*)125EB97C )->beginRefresh( 0FB6DC88 )
    0x00002BA8 13195 3  XPCOM R: ( (dsIRefreshControl*)125EB97C )->beginRefresh( *0FB6DC88 = 0x00000000 ) = 0x00000000
    0x00002BA8 13195 3  XPCOM R: ( (dsIBooleanEventCallback*)12240648 )->onEvent( false ) = 0x00000000
    0x00002BA8 13195 3  COM_DBG_IF R: class DSP_CO_USER::OnDisconnecting()
    0x00002BA8 13195 3  COM_DBG_IF C: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x00002BA8 13195 3  XPCOM C: ( (dsISimpleEventCallback*)12240CC8 )->onEvent()
    0x00002BA8 13195 3  XPCOM R: ( (dsISimpleEventCallback*)12240CC8 )->onEvent() = 0x00000000
    0x00002BA8 13195 3  COM_DBG_IF R: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x00002BA8 13195 3  COM_DBG_IF C: class CoBreakpointManager::OnBatchUpdateStarted()
    0x00002BA8 13195 3  COM_DBG_IF R: class CoBreakpointManager::OnBatchUpdateStarted()
    0x00002BA8 13195 3 CS_DAP_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class DebuggerListeners
    0x00002BA8 13195 3  COM_DBG_IF C: class DSP_CO_USER::OnRemoveDebugState()
    0x00002BA8 13195 3  COM_DBG_IF R: class DSP_CO_USER::OnRemoveDebugState()
    0x00002BA8 13195 3  COM_DBG_IF C: class DSP_CO_USER::OnDisconnected()
    0x00002BA8 13195 3  XPCOM C: ( (dsISimpleEventCallback*)16F722B8 )->onEvent()
    0x00002BA8 13195 3  XPCOM R: ( (dsISimpleEventCallback*)16F722B8 )->onEvent() = 0x00000000
    0x00002BA8 13195 3  COM_DBG_IF R: class DSP_CO_USER::OnDisconnected()
    0x00002BA8 13195 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 13195 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 13195 4 CS_DAP_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x00002BA8 13195 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 13195 4  POLL I: Yielding to other threads
    0x00002BA8 13195 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 13195 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 13195 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 13195 4 CS_DAP_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x00002BA8 13195 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 13195 4  POLL I: Yielding to other threads
    0x00002BA8 13195 3 CS_DAP_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x00002BA8 13195 3 CS_DAP_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class DebuggerListeners
    0x00002BA8 13195 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 13195 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 13195 4 CS_DAP_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x00002BA8 13195 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 13195 4  POLL I: Yielding to other threads
    0x00002BA8 13195 3 CS_DAP_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x00002BA8 13195 3  COM_DBG_IF C: class CoBreakpointManager::OnBatchUpdateFinished()
    0x00002BA8 13195 3  COM_DBG_IF R: class CoBreakpointManager::OnBatchUpdateFinished()
    0x00002BA8 13195 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 13195 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 13195 4 CS_DAP_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x00002BA8 13195 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 13196 4  POLL I: Yielding to other threads
    0x00002BA8 13196 3 CS_DAP_0 POLL C: Polling with state CPU_ST_DISCONNECT and status EVENT_DSP_HALT
    0x00002BA8 13196 3 CS_DAP_0 GTI C: GTI_DONE_REMOVING_DEBUG_STATE( 0x127D48F0 )
    0x00002BA8 13196 3 CS_DAP_0 GTI R: GTI_DONE_REMOVING_DEBUG_STATE( 0x127D48F0 ) = 0x00000000
    0x00002BA8 13196 3 CS_DAP_0 GTI C: GTI_GETERRSTR_EX3( 0x127D48F0, *0x0FB6ECF8 = 0x00000000, *0x0FB6ECD8 = 0x00000000, *0x0FB6ECF4 = 0x00000000, *0x0FB6ECD0 = 0x00000000, *0x0FB6ECF0 = 0x00000000, *0x0FB6ECEC = 0x00000000, *0x0FB6ECE4 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x00002BA8 13196 3 CS_DAP_0 GTI R: GTI_GETERRSTR_EX3( 0x127D48F0, *0x0FB6ECF8 = 0x00000000, *0x0FB6ECD8 = 0x00000000, *0x0FB6ECF4 = 0x00000000, *0x0FB6ECD0 = 0x00000002, *0x0FB6ECF0 = 0x00000000, *0x0FB6ECEC = 0x00000008, *0x0FB6ECE4 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x00002BA8 13196 3 CS_DAP_0 GTI C: GTI_DISCONNECT( 0x127D48F0 )
    0x000019C0 13642 3  XPCOM C: ( (dsIProcessorInfo*)0050F498 )->Partnum( 0018EB88 )
    0x00002BA8 14471 3 CS_DAP_0 GTI R: GTI_DISCONNECT( 0x127D48F0 ) = 0x00000000
    0x00002BA8 14471 3 CS_DAP_0 GTI C: GTI_GETERRSTR_EX3( 0x127D48F0, *0x0FB6ECF8 = 0x00000000, *0x0FB6ECD8 = 0x00000000, *0x0FB6ECF4 = 0x00000000, *0x0FB6ECD0 = 0x00000000, *0x0FB6ECF0 = 0x00000000, *0x0FB6ECEC = 0x00000000, *0x0FB6ECE4 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x00002BA8 14471 3 CS_DAP_0 GTI R: GTI_GETERRSTR_EX3( 0x127D48F0, *0x0FB6ECF8 = 0x00000000, *0x0FB6ECD8 = 0x00000000, *0x0FB6ECF4 = 0x00000000, *0x0FB6ECD0 = 0x00000002, *0x0FB6ECF0 = 0x00000000, *0x0FB6ECEC = 0x00000008, *0x0FB6ECE4 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x00002BA8 14471 3 CS_DAP_0 GTI C: GTI_STAT( 0x127D48F0 )
    0x00002BA8 14471 3 CS_DAP_0 GTI R: GTI_STAT( 0x127D48F0 ) = 0x0000000B
    0x00002BA8 14471 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x00002BA8 14471 3 CS_DAP_0 STATE I: Connection state changed to 2
    0x00002BA8 14472 3 CS_DAP_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eDisconnected )
    0x00002BA8 14472 3 CS_DAP_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eDisconnected )
    0x00002BA8 14472 3  COM_DBG_IF C: class DSP_CO_USER::OnDisconnected()
    0x00002BA8 14472 3  XPCOM C: ( (dsISimpleEventCallback*)12240608 )->onEvent()
    0x00002BA8 14472 3  XPCOM R: ( (dsISimpleEventCallback*)12240608 )->onEvent() = 0x00000000
    0x00002BA8 14472 3  COM_DBG_IF R: class DSP_CO_USER::OnDisconnected()
    0x00002BA8 14472 4 CS_DAP_0 POLL I: Yielding to other threads
    0x000019C0 14472 3  XPCOM R: ( (dsIProcessorInfo*)0050F498 )->Partnum( *0018EB88 = TM4C123GE6PM ) = 0x00000000
    0x00002BA8 14472 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 14472 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 14472 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 14472 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4943 ms
    0x000019C0 14473 3  XPCOM C: ( (dsIProcessorInfo*)0050F498 )->Partnum( 0018EB88 )
    0x000019C0 14473 3  XPCOM R: ( (dsIProcessorInfo*)0050F498 )->Partnum( *0018EB88 = TM4C123GE6PM ) = 0x00000000
    0x000019C0 14473 3  XPCOM C: ( (dsITarget*)0050F488 )->TargetType( 0018EB88 )
    0x000019C0 14473 3  XPCOM R: ( (dsITarget*)0050F488 )->TargetType( *0018EB88 = TMS470REX ) = 0x00000000
    0x000019C0 14473 3  XPCOM C: ( (dsIDebugPropertiesManager*)005A3E30 )->getDebugPropertiesWithAttribute( Texas Instruments XDS100v2 USB Emulator_0/CORTEX_M4_0, TMS470REX, partnum=TM4C123GE6PM, 0018EB98 )
    0x000019C0 14473 3  XPCOM R: ( (dsIDebugPropertiesManager*)005A3E30 )->getDebugPropertiesWithAttribute( Texas Instruments XDS100v2 USB Emulator_0/CORTEX_M4_0, TMS470REX, partnum=TM4C123GE6PM, *0018EB98 = 125D0AF0 ) = 0x00000000
    0x000019C0 14473 3  XPCOM C: ( (dsIDebugProperties*)125D0AF0 )->queryInterface( 170B3BE8, 0018EB48 )
    0x000019C0 14473 3  XPCOM R: ( (dsIDebugProperties*)125D0AF0 )->queryInterface( 170B3BE8, *0018EB48 = 125D0AF4 ) = 0x00000000
    0x000019C0 14473 3  XPCOM C: ( (dsIDebugPropertiesEvents*)125D0AF4 )->onDisableStatusChanged( 0018EB38 )
    0x000019C0 14473 3  XPCOM R: ( (dsIDebugPropertiesEvents*)125D0AF4 )->onDisableStatusChanged( *0018EB38 = 16EE8B58 ) = 0x00000000
    0x000019C0 14473 3  XPCOM C: ( (dsIDebugPropertiesEvents*)125D0AF4 )->onPropertyValueChanged( 0018EB38 )
    0x000019C0 14473 3  XPCOM R: ( (dsIDebugPropertiesEvents*)125D0AF4 )->onPropertyValueChanged( *0018EB38 = 16EE8BD8 ) = 0x00000000
    0x000019C0 14474 3  XPCOM C: ( (dsIDebugProperties*)125D0AF0 )->loadSettings(  )
    0x000019C0 14474 3  XPCOM R: ( (dsIDebugProperties*)125D0AF0 )->loadSettings(  ) = 0x00000000
    0x000019C0 14474 3  XPCOM C: ( (dsIDebugProperties*)125D0AF0 )->getProperty( VerifyAfterProgramLoad, 0018EB38 )
    0x000019C0 14475 3  XPCOM R: ( (dsIDebugProperties*)125D0AF0 )->getProperty( VerifyAfterProgramLoad, *0018EB38 = 124124E0 ) = 0x00000000
    0x000019C0 14475 3  XPCOM C: ( (dsIProperty*)124124E0 )->getPropertyType( 0018EA88 )
    0x000019C0 14475 3  XPCOM R: ( (dsIProperty*)124124E0 )->getPropertyType( *0018EA88 = 0x00000003 ) = 0x00000000
    0x000019C0 14475 3  XPCOM C: ( (dsIProperty*)124124E0 )->queryInterface( 170B3BE8, 0018EA88 )
    0x000019C0 14475 3  XPCOM R: ( (dsIProperty*)124124E0 )->queryInterface( 170B3BE8, *0018EA88 = 12412584 ) = 0x00000000
    0x000019C0 14475 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B3BE8, 0018EA88 )
    0x000019C0 14475 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B3BE8, *0018EA88 = 1241254C ) = 0x00000000
    0x000019C0 14475 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B3BE8, 0018EA88 )
    0x000019C0 14475 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B3BE8, *0018EA88 = 12412584 ) = 0x00000000
    0x000019C0 14475 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( 0018EAF8 )
    0x000019C0 14475 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14475 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000000, 0018EAF8 )
    0x000019C0 14475 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000000, *0018EAF8 = Full verification ) = 0x00000000
    0x000019C0 14475 3  XPCOM C: ( (dsIStringProperty*)1241254C )->CurValue( Full verification )
    0x000019C0 14475 3  XPCOM R: ( (dsIStringProperty*)1241254C )->CurValue( Full verification ) = 0x00000000
    0x000019C0 14475 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( 0018EAF8 )
    0x000019C0 14475 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14475 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000001, 0018EAF8 )
    0x000019C0 14475 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000001, *0018EAF8 = Fast verification ) = 0x00000000
    0x000019C0 14475 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( 0018EAF8 )
    0x000019C0 14475 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14475 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000002, 0018EAF8 )
    0x000019C0 14475 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000002, *0018EAF8 = No verification ) = 0x00000000
    0x000019C0 14475 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( 0018EAF8 )
    0x000019C0 14475 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14475 3  XPCOM C: ( (dsIDebugProperties*)125D0AF0 )->getProperty( AutoRunToLabelOnRestart, 0018EB68 )
    0x000019C0 14475 3  XPCOM R: ( (dsIDebugProperties*)125D0AF0 )->getProperty( AutoRunToLabelOnRestart, *0018EB68 = 1702FDB8 ) = 0x00000000
    0x000019C0 14475 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->getPropertyType( 0018EAB8 )
    0x000019C0 14475 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->getPropertyType( *0018EAB8 = 0x00000000 ) = 0x00000000
    0x000019C0 14475 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->queryInterface( 170B3BE8, 0018EAB8 )
    0x000019C0 14475 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->queryInterface( 170B3BE8, *0018EAB8 = 1702FE24 ) = 0x00000000
    0x000019C0 14475 3  XPCOM C: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 170B3BE8, 0018EAB8 )
    0x000019C0 14475 3  XPCOM R: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 170B3BE8, *0018EAB8 = 1702FE24 ) = 0x00000000
    0x000019C0 14475 3  XPCOM C: ( (dsIBooleanProperty*)1702FE24 )->CurValue( false )
    0x000019C0 14475 3  XPCOM R: ( (dsIBooleanProperty*)1702FE24 )->CurValue( false ) = 0x00000000
    0x000019C0 14475 3  XPCOM C: ( (dsIDebugProperties*)125D0AF0 )->getRootMenuElements( 0018EB88 )
    0x000019C0 14475 3  XPCOM R: ( (dsIDebugProperties*)125D0AF0 )->getRootMenuElements( *0018EB88 = 1856FB50 ) = 0x00000000
    0x000019C0 14475 3  XPCOM C: ( (dsIProperties*)1856FB50 )->Count( 0018EB78 )
    0x000019C0 14475 3  XPCOM R: ( (dsIProperties*)1856FB50 )->Count( *0018EB78 = 0x00000005 ) = 0x00000000
    0x000019C0 14475 3  XPCOM C: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000000, 0018EB58 )
    0x000019C0 14475 3  XPCOM R: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000000, *0018EB58 = 170D7380 ) = 0x00000000
    0x000019C0 14475 3  XPCOM C: ( (dsIProperty*)170D7380 )->getPropertyType( 0018EAD8 )
    0x000019C0 14476 3  XPCOM R: ( (dsIProperty*)170D7380 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 14476 3  XPCOM C: ( (dsIProperty*)170D7380 )->queryInterface( 170B40E0, 0018EAD8 )
    0x000019C0 14476 3  XPCOM R: ( (dsIProperty*)170D7380 )->queryInterface( 170B40E0, *0018EAD8 = 170D73EC ) = 0x00000000
    0x000019C0 14476 3  XPCOM C: ( (dsINode*)170D73EC )->queryInterface( 170B40E0, 0018EAD8 )
    0x000019C0 14476 3  XPCOM R: ( (dsINode*)170D73EC )->queryInterface( 170B40E0, *0018EAD8 = 170D73EC ) = 0x00000000
    0x000019C0 14476 3  XPCOM C: ( (dsINode*)170D73EC )->Name( 0018EB48 )
    0x000019C0 14476 3  XPCOM R: ( (dsINode*)170D73EC )->Name( *0018EB48 = Program/Memory Load Options ) = 0x00000000
    0x000019C0 14476 3  XPCOM C: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000000, 0018EB58 )
    0x000019C0 14476 3  XPCOM R: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000000, *0018EB58 = 170D7380 ) = 0x00000000
    0x000019C0 14476 3  XPCOM C: ( (dsIProperty*)170D7380 )->getPropertyType( 0018EAD8 )
    0x000019C0 14476 3  XPCOM R: ( (dsIProperty*)170D7380 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 14476 3  XPCOM C: ( (dsIProperty*)170D7380 )->queryInterface( 170B40E0, 0018EAD8 )
    0x000019C0 14476 3  XPCOM R: ( (dsIProperty*)170D7380 )->queryInterface( 170B40E0, *0018EAD8 = 170D73EC ) = 0x00000000
    0x000019C0 14476 3  XPCOM C: ( (dsINode*)170D73EC )->queryInterface( 170B40E0, 0018EAD8 )
    0x000019C0 14476 3  XPCOM R: ( (dsINode*)170D73EC )->queryInterface( 170B40E0, *0018EAD8 = 170D73EC ) = 0x00000000
    0x000019C0 14476 3  XPCOM C: ( (dsINode*)170D73EC )->getChildren( 0018EB18 )
    0x000019C0 14476 3  XPCOM R: ( (dsINode*)170D73EC )->getChildren( *0018EB18 = 1856FA30 ) = 0x00000000
    0x000019C0 14476 3  XPCOM C: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000000, 0018EB58 )
    0x000019C0 14476 3  XPCOM R: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000000, *0018EB58 = 170D7380 ) = 0x00000000
    0x000019C0 14476 3  XPCOM C: ( (dsIProperty*)170D7380 )->getPropertyType( 0018EAD8 )
    0x000019C0 14476 3  XPCOM R: ( (dsIProperty*)170D7380 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 14476 3  XPCOM C: ( (dsIProperty*)170D7380 )->queryInterface( 170B3BE8, 0018EAD8 )
    0x000019C0 14476 3  XPCOM R: ( (dsIProperty*)170D7380 )->queryInterface( 170B3BE8, *0018EAD8 = 170D73EC ) = 0x00000000
    0x000019C0 14476 3  XPCOM C: ( (dsINode*)170D73EC )->queryInterface( 170B3BE8, 0018EAD8 )
    0x000019C0 14476 3  XPCOM R: ( (dsINode*)170D73EC )->queryInterface( 170B3BE8, *0018EAD8 = 170D73EC ) = 0x00000000
    0x000019C0 14476 3  XPCOM C: ( (dsINode*)170D73EC )->getChildren( 0018EB18 )
    0x000019C0 14476 3  XPCOM R: ( (dsINode*)170D73EC )->getChildren( *0018EB18 = 17034C00 ) = 0x00000000
    0x000019C0 14476 3  XPCOM C: ( (dsIProperties*)17034C00 )->Count( 0018EB78 )
    0x000019C0 14476 3  XPCOM R: ( (dsIProperties*)17034C00 )->Count( *0018EB78 = 0x00000005 ) = 0x00000000
    0x000019C0 14476 3  XPCOM C: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000000, 0018EB58 )
    0x000019C0 14476 3  XPCOM R: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000000, *0018EB58 = 170D7380 ) = 0x00000000
    0x000019C0 14476 3  XPCOM C: ( (dsIProperty*)170D7380 )->getPropertyType( 0018EAD8 )
    0x000019C0 14476 3  XPCOM R: ( (dsIProperty*)170D7380 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 14476 3  XPCOM C: ( (dsIProperty*)170D7380 )->queryInterface( 170B40E0, 0018EAD8 )
    0x000019C0 14476 3  XPCOM R: ( (dsIProperty*)170D7380 )->queryInterface( 170B40E0, *0018EAD8 = 170D73EC ) = 0x00000000
    0x000019C0 14477 3  XPCOM C: ( (dsINode*)170D73EC )->queryInterface( 170B40E0, 0018EAD8 )
    0x000019C0 14477 3  XPCOM R: ( (dsINode*)170D73EC )->queryInterface( 170B40E0, *0018EAD8 = 170D73EC ) = 0x00000000
    0x000019C0 14477 3  XPCOM C: ( (dsINode*)170D73EC )->getChildren( 0018EB18 )
    0x000019C0 14477 3  XPCOM R: ( (dsINode*)170D73EC )->getChildren( *0018EB18 = 170347E0 ) = 0x00000000
    0x000019C0 14477 3  XPCOM C: ( (dsIProperties*)170347E0 )->Count( 0018EB38 )
    0x000019C0 14477 3  XPCOM R: ( (dsIProperties*)170347E0 )->Count( *0018EB38 = 0x00000005 ) = 0x00000000
    0x000019C0 14477 3  XPCOM C: ( (dsIProperties*)170347E0 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 14477 3  XPCOM R: ( (dsIProperties*)170347E0 )->getProperty( 0x00000000, *0018EB18 = 17132DC0 ) = 0x00000000
    0x000019C0 14477 3  XPCOM C: ( (dsIProperty*)17132DC0 )->getPropertyType( 0018EA98 )
    0x000019C0 14477 3  XPCOM R: ( (dsIProperty*)17132DC0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14477 3  XPCOM C: ( (dsIProperty*)17132DC0 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 14477 3  XPCOM R: ( (dsIProperty*)17132DC0 )->queryInterface( 170B3BE8, *0018EA98 = 17132E2C ) = 0x00000000
    0x000019C0 14477 3  XPCOM C: ( (dsIGroup*)17132E2C )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 14477 3  XPCOM R: ( (dsIGroup*)17132E2C )->queryInterface( 170B3BE8, *0018EA98 = 17132E2C ) = 0x00000000
    0x000019C0 14477 3  XPCOM C: ( (dsIGroup*)17132E2C )->Name( 0018EB08 )
    0x000019C0 14477 3  XPCOM R: ( (dsIGroup*)17132E2C )->Name( *0018EB08 = Program/Memory Load Options ) = 0x00000000
    0x000019C0 14477 3  XPCOM C: ( (dsIProperties*)170347E0 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 14477 3  XPCOM R: ( (dsIProperties*)170347E0 )->getProperty( 0x00000000, *0018EB18 = 17132DC0 ) = 0x00000000
    0x000019C0 14477 3  XPCOM C: ( (dsIProperty*)17132DC0 )->getPropertyType( 0018EA98 )
    0x000019C0 14477 3  XPCOM R: ( (dsIProperty*)17132DC0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14477 3  XPCOM C: ( (dsIProperty*)17132DC0 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 14477 3  XPCOM R: ( (dsIProperty*)17132DC0 )->queryInterface( 170B3BE8, *0018EA98 = 17132E2C ) = 0x00000000
    0x000019C0 14477 3  XPCOM C: ( (dsIGroup*)17132E2C )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 14477 3  XPCOM R: ( (dsIGroup*)17132E2C )->queryInterface( 170B3BE8, *0018EA98 = 17132E2C ) = 0x00000000
    0x000019C0 14477 3  XPCOM C: ( (dsIGroup*)17132E2C )->getChildren( 0018EAD8 )
    0x000019C0 14477 3  XPCOM R: ( (dsIGroup*)17132E2C )->getChildren( *0018EAD8 = 17034780 ) = 0x00000000
    0x000019C0 14477 3  XPCOM C: ( (dsIProperties*)170347E0 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 14477 3  XPCOM R: ( (dsIProperties*)170347E0 )->getProperty( 0x00000000, *0018EB18 = 17132DC0 ) = 0x00000000
    0x000019C0 14477 3  XPCOM C: ( (dsIProperty*)17132DC0 )->getPropertyType( 0018EA98 )
    0x000019C0 14477 3  XPCOM R: ( (dsIProperty*)17132DC0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14477 3  XPCOM C: ( (dsIProperty*)17132DC0 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14477 3  XPCOM R: ( (dsIProperty*)17132DC0 )->queryInterface( 170B40E0, *0018EA98 = 17132E2C ) = 0x00000000
    0x000019C0 14477 3  XPCOM C: ( (dsIGroup*)17132E2C )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14477 3  XPCOM R: ( (dsIGroup*)17132E2C )->queryInterface( 170B40E0, *0018EA98 = 17132E2C ) = 0x00000000
    0x000019C0 14477 3  XPCOM C: ( (dsIGroup*)17132E2C )->getChildren( 0018EAD8 )
    0x000019C0 14477 3  XPCOM R: ( (dsIGroup*)17132E2C )->getChildren( *0018EAD8 = 17033490 ) = 0x00000000
    0x000019C0 14477 3  XPCOM C: ( (dsIProperties*)17033490 )->Count( 0018EB38 )
    0x000019C0 14477 3  XPCOM R: ( (dsIProperties*)17033490 )->Count( *0018EB38 = 0x00000005 ) = 0x00000000
    0x000019C0 14477 3  XPCOM C: ( (dsIProperties*)170347E0 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 14477 3  XPCOM R: ( (dsIProperties*)170347E0 )->getProperty( 0x00000000, *0018EB18 = 17132DC0 ) = 0x00000000
    0x000019C0 14478 3  XPCOM C: ( (dsIProperty*)17132DC0 )->getPropertyType( 0018EA98 )
    0x000019C0 14478 3  XPCOM R: ( (dsIProperty*)17132DC0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14478 3  XPCOM C: ( (dsIProperty*)17132DC0 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 14478 3  XPCOM R: ( (dsIProperty*)17132DC0 )->queryInterface( 170B3BE8, *0018EA98 = 17132E2C ) = 0x00000000
    0x000019C0 14478 3  XPCOM C: ( (dsIGroup*)17132E2C )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 14478 3  XPCOM R: ( (dsIGroup*)17132E2C )->queryInterface( 170B3BE8, *0018EA98 = 17132E2C ) = 0x00000000
    0x000019C0 14478 3  XPCOM C: ( (dsIGroup*)17132E2C )->getChildren( 0018EAD8 )
    0x000019C0 14478 3  XPCOM R: ( (dsIGroup*)17132E2C )->getChildren( *0018EAD8 = 17033520 ) = 0x00000000
    0x000019C0 14478 3  XPCOM C: ( (dsIProperties*)17033520 )->Count( 0018EAF8 )
    0x000019C0 14478 3  XPCOM R: ( (dsIProperties*)17033520 )->Count( *0018EAF8 = 0x00000005 ) = 0x00000000
    0x000019C0 14478 3  XPCOM C: ( (dsIProperties*)17033520 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 14478 3  XPCOM R: ( (dsIProperties*)17033520 )->getProperty( 0x00000000, *0018EAD8 = 170E7DF0 ) = 0x00000000
    0x000019C0 14478 3  XPCOM C: ( (dsIProperty*)170E7DF0 )->getPropertyType( 0018EA58 )
    0x000019C0 14478 3  XPCOM R: ( (dsIProperty*)170E7DF0 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14478 3  XPCOM C: ( (dsIProperty*)170E7DF0 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14478 3  XPCOM R: ( (dsIProperty*)170E7DF0 )->queryInterface( 170B40E0, *0018EA58 = 170E7E5C ) = 0x00000000
    0x000019C0 14478 3  XPCOM C: ( (dsIBooleanProperty*)170E7E5C )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14478 3  XPCOM R: ( (dsIBooleanProperty*)170E7E5C )->queryInterface( 170B40E0, *0018EA58 = 170E7E5C ) = 0x00000000
    0x000019C0 14478 3  XPCOM C: ( (dsIBooleanProperty*)170E7E5C )->Name( 0018EAC8 )
    0x000019C0 14478 3  XPCOM R: ( (dsIBooleanProperty*)170E7E5C )->Name( *0018EAC8 = Disable all breakpoints when loading a different program ) = 0x00000000
    0x000019C0 14478 3  XPCOM C: ( (dsIProperties*)17033520 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 14478 3  XPCOM R: ( (dsIProperties*)17033520 )->getProperty( 0x00000000, *0018EAD8 = 170E7DF0 ) = 0x00000000
    0x000019C0 14478 3  XPCOM C: ( (dsIProperty*)170E7DF0 )->getPropertyType( 0018EA58 )
    0x000019C0 14478 3  XPCOM R: ( (dsIProperty*)170E7DF0 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14478 3  XPCOM C: ( (dsIProperty*)170E7DF0 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14478 3  XPCOM R: ( (dsIProperty*)170E7DF0 )->queryInterface( 170B40E0, *0018EA58 = 170E7E5C ) = 0x00000000
    0x000019C0 14478 3  XPCOM C: ( (dsIBooleanProperty*)170E7E5C )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14478 3  XPCOM R: ( (dsIBooleanProperty*)170E7E5C )->queryInterface( 170B40E0, *0018EA58 = 170E7E5C ) = 0x00000000
    0x000019C0 14478 3  XPCOM C: ( (dsIProperties*)17033520 )->Count( 0018EAF8 )
    0x000019C0 14478 3  XPCOM R: ( (dsIProperties*)17033520 )->Count( *0018EAF8 = 0x00000005 ) = 0x00000000
    0x000019C0 14478 3  XPCOM C: ( (dsIProperties*)17033520 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 14478 3  XPCOM R: ( (dsIProperties*)17033520 )->getProperty( 0x00000001, *0018EAD8 = 170E7E78 ) = 0x00000000
    0x000019C0 14478 3  XPCOM C: ( (dsIProperty*)170E7E78 )->getPropertyType( 0018EA58 )
    0x000019C0 14478 3  XPCOM R: ( (dsIProperty*)170E7E78 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14478 3  XPCOM C: ( (dsIProperty*)170E7E78 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14478 3  XPCOM R: ( (dsIProperty*)170E7E78 )->queryInterface( 170B40E0, *0018EA58 = 170E7EE4 ) = 0x00000000
    0x000019C0 14478 3  XPCOM C: ( (dsIBooleanProperty*)170E7EE4 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14478 3  XPCOM R: ( (dsIBooleanProperty*)170E7EE4 )->queryInterface( 170B40E0, *0018EA58 = 170E7EE4 ) = 0x00000000
    0x000019C0 14478 3  XPCOM C: ( (dsIBooleanProperty*)170E7EE4 )->Name( 0018EAC8 )
    0x000019C0 14479 3  XPCOM R: ( (dsIBooleanProperty*)170E7EE4 )->Name( *0018EAC8 = Halt at program termination (requires setting a breakpoint) ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIProperties*)17033520 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 14479 3  XPCOM R: ( (dsIProperties*)17033520 )->getProperty( 0x00000001, *0018EAD8 = 170E7E78 ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIProperty*)170E7E78 )->getPropertyType( 0018EA58 )
    0x000019C0 14479 3  XPCOM R: ( (dsIProperty*)170E7E78 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIProperty*)170E7E78 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14479 3  XPCOM R: ( (dsIProperty*)170E7E78 )->queryInterface( 170B40E0, *0018EA58 = 170E7EE4 ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIBooleanProperty*)170E7EE4 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14479 3  XPCOM R: ( (dsIBooleanProperty*)170E7EE4 )->queryInterface( 170B40E0, *0018EA58 = 170E7EE4 ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIProperties*)17033520 )->Count( 0018EAF8 )
    0x000019C0 14479 3  XPCOM R: ( (dsIProperties*)17033520 )->Count( *0018EAF8 = 0x00000005 ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIProperties*)17033520 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 14479 3  XPCOM R: ( (dsIProperties*)17033520 )->getProperty( 0x00000002, *0018EAD8 = 1702F758 ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIProperty*)1702F758 )->getPropertyType( 0018EA58 )
    0x000019C0 14479 3  XPCOM R: ( (dsIProperty*)1702F758 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIProperty*)1702F758 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14479 3  XPCOM R: ( (dsIProperty*)1702F758 )->queryInterface( 170B40E0, *0018EA58 = 1702F7C4 ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIBooleanProperty*)1702F7C4 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14479 3  XPCOM R: ( (dsIBooleanProperty*)1702F7C4 )->queryInterface( 170B40E0, *0018EA58 = 1702F7C4 ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIBooleanProperty*)1702F7C4 )->Name( 0018EAC8 )
    0x000019C0 14479 3  XPCOM R: ( (dsIBooleanProperty*)1702F7C4 )->Name( *0018EAC8 = Enable CIO function use (requires setting a breakpoint) ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIProperties*)17033520 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 14479 3  XPCOM R: ( (dsIProperties*)17033520 )->getProperty( 0x00000002, *0018EAD8 = 1702F758 ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIProperty*)1702F758 )->getPropertyType( 0018EA58 )
    0x000019C0 14479 3  XPCOM R: ( (dsIProperty*)1702F758 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIProperty*)1702F758 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14479 3  XPCOM R: ( (dsIProperty*)1702F758 )->queryInterface( 170B40E0, *0018EA58 = 1702F7C4 ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIBooleanProperty*)1702F7C4 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14479 3  XPCOM R: ( (dsIBooleanProperty*)1702F7C4 )->queryInterface( 170B40E0, *0018EA58 = 1702F7C4 ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIProperties*)17033520 )->Count( 0018EAF8 )
    0x000019C0 14479 3  XPCOM R: ( (dsIProperties*)17033520 )->Count( *0018EAF8 = 0x00000005 ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIProperties*)17033520 )->getProperty( 0x00000003, 0018EAD8 )
    0x000019C0 14479 3  XPCOM R: ( (dsIProperties*)17033520 )->getProperty( 0x00000003, *0018EAD8 = 1702F7E0 ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIProperty*)1702F7E0 )->getPropertyType( 0018EA58 )
    0x000019C0 14479 3  XPCOM R: ( (dsIProperty*)1702F7E0 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIProperty*)1702F7E0 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14479 3  XPCOM R: ( (dsIProperty*)1702F7E0 )->queryInterface( 170B40E0, *0018EA58 = 1702F84C ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIBooleanProperty*)1702F84C )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14479 3  XPCOM R: ( (dsIBooleanProperty*)1702F84C )->queryInterface( 170B40E0, *0018EA58 = 1702F84C ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIBooleanProperty*)1702F84C )->Name( 0018EAC8 )
    0x000019C0 14479 3  XPCOM R: ( (dsIBooleanProperty*)1702F84C )->Name( *0018EAC8 = Enable Semihosting (requires setting a breakpoint at SVC_Handler ) ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIProperties*)17033520 )->getProperty( 0x00000003, 0018EAD8 )
    0x000019C0 14479 3  XPCOM R: ( (dsIProperties*)17033520 )->getProperty( 0x00000003, *0018EAD8 = 1702F7E0 ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIProperty*)1702F7E0 )->getPropertyType( 0018EA58 )
    0x000019C0 14479 3  XPCOM R: ( (dsIProperty*)1702F7E0 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14479 3  XPCOM C: ( (dsIProperty*)1702F7E0 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14480 3  XPCOM R: ( (dsIProperty*)1702F7E0 )->queryInterface( 170B40E0, *0018EA58 = 1702F84C ) = 0x00000000
    0x000019C0 14480 3  XPCOM C: ( (dsIBooleanProperty*)1702F84C )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14480 3  XPCOM R: ( (dsIBooleanProperty*)1702F84C )->queryInterface( 170B40E0, *0018EA58 = 1702F84C ) = 0x00000000
    0x000019C0 14480 3  XPCOM C: ( (dsIProperties*)17033520 )->Count( 0018EAF8 )
    0x000019C0 14480 3  XPCOM R: ( (dsIProperties*)17033520 )->Count( *0018EAF8 = 0x00000005 ) = 0x00000000
    0x000019C0 14480 3  XPCOM C: ( (dsIProperties*)17033520 )->getProperty( 0x00000004, 0018EAD8 )
    0x000019C0 14480 3  XPCOM R: ( (dsIProperties*)17033520 )->getProperty( 0x00000004, *0018EAD8 = 124124E0 ) = 0x00000000
    0x000019C0 14480 3  XPCOM C: ( (dsIProperty*)124124E0 )->getPropertyType( 0018EA58 )
    0x000019C0 14480 3  XPCOM R: ( (dsIProperty*)124124E0 )->getPropertyType( *0018EA58 = 0x00000003 ) = 0x00000000
    0x000019C0 14480 3  XPCOM C: ( (dsIProperty*)124124E0 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14480 3  XPCOM R: ( (dsIProperty*)124124E0 )->queryInterface( 170B40E0, *0018EA58 = 12412584 ) = 0x00000000
    0x000019C0 14480 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14480 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B40E0, *0018EA58 = 1241254C ) = 0x00000000
    0x000019C0 14480 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14480 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B40E0, *0018EA58 = 12412584 ) = 0x00000000
    0x000019C0 14480 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->Name( 0018EAC8 )
    0x000019C0 14480 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->Name( *0018EAC8 = Verification Options ) = 0x00000000
    0x000019C0 14480 3  XPCOM C: ( (dsIProperties*)17033520 )->getProperty( 0x00000004, 0018EAD8 )
    0x000019C0 14480 3  XPCOM R: ( (dsIProperties*)17033520 )->getProperty( 0x00000004, *0018EAD8 = 124124E0 ) = 0x00000000
    0x000019C0 14480 3  XPCOM C: ( (dsIProperty*)124124E0 )->getPropertyType( 0018EA58 )
    0x000019C0 14480 3  XPCOM R: ( (dsIProperty*)124124E0 )->getPropertyType( *0018EA58 = 0x00000003 ) = 0x00000000
    0x000019C0 14480 3  XPCOM C: ( (dsIProperty*)124124E0 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14480 3  XPCOM R: ( (dsIProperty*)124124E0 )->queryInterface( 170B40E0, *0018EA58 = 12412584 ) = 0x00000000
    0x000019C0 14480 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14480 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B40E0, *0018EA58 = 1241254C ) = 0x00000000
    0x000019C0 14480 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14480 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B40E0, *0018EA58 = 12412584 ) = 0x00000000
    0x000019C0 14480 3  XPCOM C: ( (dsIProperties*)17033520 )->Count( 0018EAF8 )
    0x000019C0 14480 3  XPCOM R: ( (dsIProperties*)17033520 )->Count( *0018EAF8 = 0x00000005 ) = 0x00000000
    0x000019C0 14480 3  XPCOM C: ( (dsIProperties*)170347E0 )->Count( 0018EB38 )
    0x000019C0 14480 3  XPCOM R: ( (dsIProperties*)170347E0 )->Count( *0018EB38 = 0x00000005 ) = 0x00000000
    0x000019C0 14480 3  XPCOM C: ( (dsIProperties*)170347E0 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 14480 3  XPCOM R: ( (dsIProperties*)170347E0 )->getProperty( 0x00000001, *0018EB18 = 17133068 ) = 0x00000000
    0x000019C0 14480 3  XPCOM C: ( (dsIProperty*)17133068 )->getPropertyType( 0018EA98 )
    0x000019C0 14480 3  XPCOM R: ( (dsIProperty*)17133068 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14480 3  XPCOM C: ( (dsIProperty*)17133068 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14480 3  XPCOM R: ( (dsIProperty*)17133068 )->queryInterface( 170B40E0, *0018EA98 = 171330D4 ) = 0x00000000
    0x000019C0 14480 3  XPCOM C: ( (dsIGroup*)171330D4 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14480 3  XPCOM R: ( (dsIGroup*)171330D4 )->queryInterface( 170B40E0, *0018EA98 = 171330D4 ) = 0x00000000
    0x000019C0 14480 3  XPCOM C: ( (dsIGroup*)171330D4 )->Name( 0018EB08 )
    0x000019C0 14480 3  XPCOM R: ( (dsIGroup*)171330D4 )->Name( *0018EB08 = Connection Options ) = 0x00000000
    0x000019C0 14480 3  XPCOM C: ( (dsIProperties*)170347E0 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 14480 3  XPCOM R: ( (dsIProperties*)170347E0 )->getProperty( 0x00000001, *0018EB18 = 17133068 ) = 0x00000000
    0x000019C0 14481 3  XPCOM C: ( (dsIProperty*)17133068 )->getPropertyType( 0018EA98 )
    0x000019C0 14481 3  XPCOM R: ( (dsIProperty*)17133068 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14481 3  XPCOM C: ( (dsIProperty*)17133068 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14481 3  XPCOM R: ( (dsIProperty*)17133068 )->queryInterface( 170B40E0, *0018EA98 = 171330D4 ) = 0x00000000
    0x000019C0 14481 3  XPCOM C: ( (dsIGroup*)171330D4 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14481 3  XPCOM R: ( (dsIGroup*)171330D4 )->queryInterface( 170B40E0, *0018EA98 = 171330D4 ) = 0x00000000
    0x000019C0 14481 3  XPCOM C: ( (dsIGroup*)171330D4 )->getChildren( 0018EAD8 )
    0x000019C0 14481 3  XPCOM R: ( (dsIGroup*)171330D4 )->getChildren( *0018EAD8 = 17033370 ) = 0x00000000
    0x000019C0 14481 3  XPCOM C: ( (dsIProperties*)170347E0 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 14481 3  XPCOM R: ( (dsIProperties*)170347E0 )->getProperty( 0x00000001, *0018EB18 = 17133068 ) = 0x00000000
    0x000019C0 14481 3  XPCOM C: ( (dsIProperty*)17133068 )->getPropertyType( 0018EA98 )
    0x000019C0 14481 3  XPCOM R: ( (dsIProperty*)17133068 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14481 3  XPCOM C: ( (dsIProperty*)17133068 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14481 3  XPCOM R: ( (dsIProperty*)17133068 )->queryInterface( 170B40E0, *0018EA98 = 171330D4 ) = 0x00000000
    0x000019C0 14481 3  XPCOM C: ( (dsIGroup*)171330D4 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14481 3  XPCOM R: ( (dsIGroup*)171330D4 )->queryInterface( 170B40E0, *0018EA98 = 171330D4 ) = 0x00000000
    0x000019C0 14481 3  XPCOM C: ( (dsIGroup*)171330D4 )->getChildren( 0018EAD8 )
    0x000019C0 14481 3  XPCOM R: ( (dsIGroup*)171330D4 )->getChildren( *0018EAD8 = 17034060 ) = 0x00000000
    0x000019C0 14481 3  XPCOM C: ( (dsIProperties*)17034060 )->Count( 0018EB38 )
    0x000019C0 14481 3  XPCOM R: ( (dsIProperties*)17034060 )->Count( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 14481 3  XPCOM C: ( (dsIProperties*)170347E0 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 14481 3  XPCOM R: ( (dsIProperties*)170347E0 )->getProperty( 0x00000001, *0018EB18 = 17133068 ) = 0x00000000
    0x000019C0 14481 3  XPCOM C: ( (dsIProperty*)17133068 )->getPropertyType( 0018EA98 )
    0x000019C0 14481 3  XPCOM R: ( (dsIProperty*)17133068 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14481 3  XPCOM C: ( (dsIProperty*)17133068 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14481 3  XPCOM R: ( (dsIProperty*)17133068 )->queryInterface( 170B40E0, *0018EA98 = 171330D4 ) = 0x00000000
    0x000019C0 14481 3  XPCOM C: ( (dsIGroup*)171330D4 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14481 3  XPCOM R: ( (dsIGroup*)171330D4 )->queryInterface( 170B40E0, *0018EA98 = 171330D4 ) = 0x00000000
    0x000019C0 14481 3  XPCOM C: ( (dsIGroup*)171330D4 )->getChildren( 0018EAD8 )
    0x000019C0 14481 3  XPCOM R: ( (dsIGroup*)171330D4 )->getChildren( *0018EAD8 = 17034BD0 ) = 0x00000000
    0x000019C0 14481 3  XPCOM C: ( (dsIProperties*)17034BD0 )->Count( 0018EAF8 )
    0x000019C0 14481 3  XPCOM R: ( (dsIProperties*)17034BD0 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14481 3  XPCOM C: ( (dsIProperties*)17034BD0 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 14481 3  XPCOM R: ( (dsIProperties*)17034BD0 )->getProperty( 0x00000000, *0018EAD8 = 16F52030 ) = 0x00000000
    0x000019C0 14481 3  XPCOM C: ( (dsIProperty*)16F52030 )->getPropertyType( 0018EA58 )
    0x000019C0 14481 3  XPCOM R: ( (dsIProperty*)16F52030 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14481 3  XPCOM C: ( (dsIProperty*)16F52030 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14481 3  XPCOM R: ( (dsIProperty*)16F52030 )->queryInterface( 170B40E0, *0018EA58 = 16F5209C ) = 0x00000000
    0x000019C0 14481 3  XPCOM C: ( (dsIBooleanProperty*)16F5209C )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14481 3  XPCOM R: ( (dsIBooleanProperty*)16F5209C )->queryInterface( 170B40E0, *0018EA58 = 16F5209C ) = 0x00000000
    0x000019C0 14481 3  XPCOM C: ( (dsIBooleanProperty*)16F5209C )->Name( 0018EAC8 )
    0x000019C0 14481 3  XPCOM R: ( (dsIBooleanProperty*)16F5209C )->Name( *0018EAC8 = Halt the target on a connect ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIProperties*)17034BD0 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 14482 3  XPCOM R: ( (dsIProperties*)17034BD0 )->getProperty( 0x00000000, *0018EAD8 = 16F52030 ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIProperty*)16F52030 )->getPropertyType( 0018EA58 )
    0x000019C0 14482 3  XPCOM R: ( (dsIProperty*)16F52030 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIProperty*)16F52030 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14482 3  XPCOM R: ( (dsIProperty*)16F52030 )->queryInterface( 170B40E0, *0018EA58 = 16F5209C ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIBooleanProperty*)16F5209C )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14482 3  XPCOM R: ( (dsIBooleanProperty*)16F5209C )->queryInterface( 170B40E0, *0018EA58 = 16F5209C ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIProperties*)17034BD0 )->Count( 0018EAF8 )
    0x000019C0 14482 3  XPCOM R: ( (dsIProperties*)17034BD0 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIProperties*)17034BD0 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 14482 3  XPCOM R: ( (dsIProperties*)17034BD0 )->getProperty( 0x00000001, *0018EAD8 = 16F520B8 ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIProperty*)16F520B8 )->getPropertyType( 0018EA58 )
    0x000019C0 14482 3  XPCOM R: ( (dsIProperty*)16F520B8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIProperty*)16F520B8 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14482 3  XPCOM R: ( (dsIProperty*)16F520B8 )->queryInterface( 170B40E0, *0018EA58 = 16F52124 ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIBooleanProperty*)16F52124 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14482 3  XPCOM R: ( (dsIBooleanProperty*)16F52124 )->queryInterface( 170B40E0, *0018EA58 = 16F52124 ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIBooleanProperty*)16F52124 )->Name( 0018EAC8 )
    0x000019C0 14482 3  XPCOM R: ( (dsIBooleanProperty*)16F52124 )->Name( *0018EAC8 = Reset the target on a connect ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIProperties*)17034BD0 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 14482 3  XPCOM R: ( (dsIProperties*)17034BD0 )->getProperty( 0x00000001, *0018EAD8 = 16F520B8 ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIProperty*)16F520B8 )->getPropertyType( 0018EA58 )
    0x000019C0 14482 3  XPCOM R: ( (dsIProperty*)16F520B8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIProperty*)16F520B8 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14482 3  XPCOM R: ( (dsIProperty*)16F520B8 )->queryInterface( 170B40E0, *0018EA58 = 16F52124 ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIBooleanProperty*)16F52124 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14482 3  XPCOM R: ( (dsIBooleanProperty*)16F52124 )->queryInterface( 170B40E0, *0018EA58 = 16F52124 ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIProperties*)17034BD0 )->Count( 0018EAF8 )
    0x000019C0 14482 3  XPCOM R: ( (dsIProperties*)17034BD0 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIProperties*)17034BD0 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 14482 3  XPCOM R: ( (dsIProperties*)17034BD0 )->getProperty( 0x00000002, *0018EAD8 = 16F52250 ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIProperty*)16F52250 )->getPropertyType( 0018EA58 )
    0x000019C0 14482 3  XPCOM R: ( (dsIProperty*)16F52250 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIProperty*)16F52250 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14482 3  XPCOM R: ( (dsIProperty*)16F52250 )->queryInterface( 170B40E0, *0018EA58 = 16F522BC ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIBooleanProperty*)16F522BC )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14482 3  XPCOM R: ( (dsIBooleanProperty*)16F522BC )->queryInterface( 170B40E0, *0018EA58 = 16F522BC ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIBooleanProperty*)16F522BC )->Name( 0018EAC8 )
    0x000019C0 14482 3  XPCOM R: ( (dsIBooleanProperty*)16F522BC )->Name( *0018EAC8 = Auto connect if a child connects ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIProperties*)17034BD0 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 14482 3  XPCOM R: ( (dsIProperties*)17034BD0 )->getProperty( 0x00000002, *0018EAD8 = 16F52250 ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIProperty*)16F52250 )->getPropertyType( 0018EA58 )
    0x000019C0 14482 3  XPCOM R: ( (dsIProperty*)16F52250 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14482 3  XPCOM C: ( (dsIProperty*)16F52250 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14482 3  XPCOM R: ( (dsIProperty*)16F52250 )->queryInterface( 170B40E0, *0018EA58 = 16F522BC ) = 0x00000000
    0x000019C0 14483 3  XPCOM C: ( (dsIBooleanProperty*)16F522BC )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14483 3  XPCOM R: ( (dsIBooleanProperty*)16F522BC )->queryInterface( 170B40E0, *0018EA58 = 16F522BC ) = 0x00000000
    0x000019C0 14483 3  XPCOM C: ( (dsIProperties*)17034BD0 )->Count( 0018EAF8 )
    0x000019C0 14483 3  XPCOM R: ( (dsIProperties*)17034BD0 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14483 3  XPCOM C: ( (dsIProperties*)170347E0 )->Count( 0018EB38 )
    0x000019C0 14483 3  XPCOM R: ( (dsIProperties*)170347E0 )->Count( *0018EB38 = 0x00000005 ) = 0x00000000
    0x000019C0 14483 3  XPCOM C: ( (dsIProperties*)170347E0 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 14483 3  XPCOM R: ( (dsIProperties*)170347E0 )->getProperty( 0x00000002, *0018EB18 = 170E7D68 ) = 0x00000000
    0x000019C0 14483 3  XPCOM C: ( (dsIProperty*)170E7D68 )->getPropertyType( 0018EA98 )
    0x000019C0 14483 3  XPCOM R: ( (dsIProperty*)170E7D68 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14483 3  XPCOM C: ( (dsIProperty*)170E7D68 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14483 3  XPCOM R: ( (dsIProperty*)170E7D68 )->queryInterface( 170B40E0, *0018EA98 = 170E7DD4 ) = 0x00000000
    0x000019C0 14483 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14483 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B40E0, *0018EA98 = 170E7DD4 ) = 0x00000000
    0x000019C0 14483 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->Name( 0018EB08 )
    0x000019C0 14483 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->Name( *0018EB08 = Disable interrupts ) = 0x00000000
    0x000019C0 14483 3  XPCOM C: ( (dsIProperties*)170347E0 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 14483 3  XPCOM R: ( (dsIProperties*)170347E0 )->getProperty( 0x00000002, *0018EB18 = 170E7D68 ) = 0x00000000
    0x000019C0 14483 3  XPCOM C: ( (dsIProperty*)170E7D68 )->getPropertyType( 0018EA98 )
    0x000019C0 14483 3  XPCOM R: ( (dsIProperty*)170E7D68 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14483 3  XPCOM C: ( (dsIProperty*)170E7D68 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14483 3  XPCOM R: ( (dsIProperty*)170E7D68 )->queryInterface( 170B40E0, *0018EA98 = 170E7DD4 ) = 0x00000000
    0x000019C0 14483 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14483 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B40E0, *0018EA98 = 170E7DD4 ) = 0x00000000
    0x000019C0 14483 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->getChildren( 0018EAD8 )
    0x000019C0 14483 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->getChildren( *0018EAD8 = 17033790 ) = 0x00000000
    0x000019C0 14483 3  XPCOM C: ( (dsIProperties*)170347E0 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 14483 3  XPCOM R: ( (dsIProperties*)170347E0 )->getProperty( 0x00000002, *0018EB18 = 170E7D68 ) = 0x00000000
    0x000019C0 14483 3  XPCOM C: ( (dsIProperty*)170E7D68 )->getPropertyType( 0018EA98 )
    0x000019C0 14483 3  XPCOM R: ( (dsIProperty*)170E7D68 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14483 3  XPCOM C: ( (dsIProperty*)170E7D68 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14483 3  XPCOM R: ( (dsIProperty*)170E7D68 )->queryInterface( 170B40E0, *0018EA98 = 170E7DD4 ) = 0x00000000
    0x000019C0 14483 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14483 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B40E0, *0018EA98 = 170E7DD4 ) = 0x00000000
    0x000019C0 14483 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->getChildren( 0018EAD8 )
    0x000019C0 14483 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->getChildren( *0018EAD8 = 17033AC0 ) = 0x00000000
    0x000019C0 14483 3  XPCOM C: ( (dsIProperties*)17033AC0 )->Count( 0018EB38 )
    0x000019C0 14483 3  XPCOM R: ( (dsIProperties*)17033AC0 )->Count( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 14483 3  XPCOM C: ( (dsIProperties*)170347E0 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 14483 3  XPCOM R: ( (dsIProperties*)170347E0 )->getProperty( 0x00000002, *0018EB18 = 170E7D68 ) = 0x00000000
    0x000019C0 14483 3  XPCOM C: ( (dsIProperty*)170E7D68 )->getPropertyType( 0018EA98 )
    0x000019C0 14483 3  XPCOM R: ( (dsIProperty*)170E7D68 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14484 3  XPCOM C: ( (dsIProperty*)170E7D68 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14484 3  XPCOM R: ( (dsIProperty*)170E7D68 )->queryInterface( 170B40E0, *0018EA98 = 170E7DD4 ) = 0x00000000
    0x000019C0 14484 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14484 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B40E0, *0018EA98 = 170E7DD4 ) = 0x00000000
    0x000019C0 14484 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->getChildren( 0018EAD8 )
    0x000019C0 14484 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->getChildren( *0018EAD8 = 170346C0 ) = 0x00000000
    0x000019C0 14484 3  XPCOM C: ( (dsIProperties*)170346C0 )->Count( 0018EAF8 )
    0x000019C0 14484 3  XPCOM R: ( (dsIProperties*)170346C0 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14484 3  XPCOM C: ( (dsIProperties*)170346C0 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 14484 3  XPCOM R: ( (dsIProperties*)170346C0 )->getProperty( 0x00000000, *0018EAD8 = 16F522D8 ) = 0x00000000
    0x000019C0 14484 3  XPCOM C: ( (dsIProperty*)16F522D8 )->getPropertyType( 0018EA58 )
    0x000019C0 14484 3  XPCOM R: ( (dsIProperty*)16F522D8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14484 3  XPCOM C: ( (dsIProperty*)16F522D8 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14484 3  XPCOM R: ( (dsIProperty*)16F522D8 )->queryInterface( 170B40E0, *0018EA58 = 16F52344 ) = 0x00000000
    0x000019C0 14484 3  XPCOM C: ( (dsIBooleanProperty*)16F52344 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14484 3  XPCOM R: ( (dsIBooleanProperty*)16F52344 )->queryInterface( 170B40E0, *0018EA58 = 16F52344 ) = 0x00000000
    0x000019C0 14484 3  XPCOM C: ( (dsIBooleanProperty*)16F52344 )->Name( 0018EAC8 )
    0x000019C0 14484 3  XPCOM R: ( (dsIBooleanProperty*)16F52344 )->Name( *0018EAC8 = When assembly stepping ) = 0x00000000
    0x000019C0 14484 3  XPCOM C: ( (dsIProperties*)170346C0 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 14484 3  XPCOM R: ( (dsIProperties*)170346C0 )->getProperty( 0x00000000, *0018EAD8 = 16F522D8 ) = 0x00000000
    0x000019C0 14484 3  XPCOM C: ( (dsIProperty*)16F522D8 )->getPropertyType( 0018EA58 )
    0x000019C0 14484 3  XPCOM R: ( (dsIProperty*)16F522D8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14484 3  XPCOM C: ( (dsIProperty*)16F522D8 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14484 3  XPCOM R: ( (dsIProperty*)16F522D8 )->queryInterface( 170B40E0, *0018EA58 = 16F52344 ) = 0x00000000
    0x000019C0 14484 3  XPCOM C: ( (dsIBooleanProperty*)16F52344 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14484 3  XPCOM R: ( (dsIBooleanProperty*)16F52344 )->queryInterface( 170B40E0, *0018EA58 = 16F52344 ) = 0x00000000
    0x000019C0 14484 3  XPCOM C: ( (dsIProperties*)170346C0 )->Count( 0018EAF8 )
    0x000019C0 14484 3  XPCOM R: ( (dsIProperties*)170346C0 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14484 3  XPCOM C: ( (dsIProperties*)170346C0 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 14484 3  XPCOM R: ( (dsIProperties*)170346C0 )->getProperty( 0x00000001, *0018EAD8 = 16F52360 ) = 0x00000000
    0x000019C0 14484 3  XPCOM C: ( (dsIProperty*)16F52360 )->getPropertyType( 0018EA58 )
    0x000019C0 14484 3  XPCOM R: ( (dsIProperty*)16F52360 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14484 3  XPCOM C: ( (dsIProperty*)16F52360 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14484 3  XPCOM R: ( (dsIProperty*)16F52360 )->queryInterface( 170B40E0, *0018EA58 = 16F523CC ) = 0x00000000
    0x000019C0 14484 3  XPCOM C: ( (dsIBooleanProperty*)16F523CC )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14484 3  XPCOM R: ( (dsIBooleanProperty*)16F523CC )->queryInterface( 170B40E0, *0018EA58 = 16F523CC ) = 0x00000000
    0x000019C0 14484 3  XPCOM C: ( (dsIBooleanProperty*)16F523CC )->Name( 0018EAC8 )
    0x000019C0 14484 3  XPCOM R: ( (dsIBooleanProperty*)16F523CC )->Name( *0018EAC8 = When source stepping ) = 0x00000000
    0x000019C0 14484 3  XPCOM C: ( (dsIProperties*)170346C0 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 14484 3  XPCOM R: ( (dsIProperties*)170346C0 )->getProperty( 0x00000001, *0018EAD8 = 16F52360 ) = 0x00000000
    0x000019C0 14484 3  XPCOM C: ( (dsIProperty*)16F52360 )->getPropertyType( 0018EA58 )
    0x000019C0 14484 3  XPCOM R: ( (dsIProperty*)16F52360 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14484 3  XPCOM C: ( (dsIProperty*)16F52360 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14484 3  XPCOM R: ( (dsIProperty*)16F52360 )->queryInterface( 170B40E0, *0018EA58 = 16F523CC ) = 0x00000000
    0x000019C0 14485 3  XPCOM C: ( (dsIBooleanProperty*)16F523CC )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14485 3  XPCOM R: ( (dsIBooleanProperty*)16F523CC )->queryInterface( 170B40E0, *0018EA58 = 16F523CC ) = 0x00000000
    0x000019C0 14485 3  XPCOM C: ( (dsIProperties*)170346C0 )->Count( 0018EAF8 )
    0x000019C0 14485 3  XPCOM R: ( (dsIProperties*)170346C0 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14485 3  XPCOM C: ( (dsIProperties*)170346C0 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 14485 3  XPCOM R: ( (dsIProperties*)170346C0 )->getProperty( 0x00000002, *0018EAD8 = 16F523E8 ) = 0x00000000
    0x000019C0 14485 3  XPCOM C: ( (dsIProperty*)16F523E8 )->getPropertyType( 0018EA58 )
    0x000019C0 14485 3  XPCOM R: ( (dsIProperty*)16F523E8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14485 3  XPCOM C: ( (dsIProperty*)16F523E8 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14485 3  XPCOM R: ( (dsIProperty*)16F523E8 )->queryInterface( 170B40E0, *0018EA58 = 16F52454 ) = 0x00000000
    0x000019C0 14485 3  XPCOM C: ( (dsIBooleanProperty*)16F52454 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14485 3  XPCOM R: ( (dsIBooleanProperty*)16F52454 )->queryInterface( 170B40E0, *0018EA58 = 16F52454 ) = 0x00000000
    0x000019C0 14485 3  XPCOM C: ( (dsIBooleanProperty*)16F52454 )->Name( 0018EAC8 )
    0x000019C0 14485 3  XPCOM R: ( (dsIBooleanProperty*)16F52454 )->Name( *0018EAC8 = When running ) = 0x00000000
    0x000019C0 14485 3  XPCOM C: ( (dsIProperties*)170346C0 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 14485 3  XPCOM R: ( (dsIProperties*)170346C0 )->getProperty( 0x00000002, *0018EAD8 = 16F523E8 ) = 0x00000000
    0x000019C0 14485 3  XPCOM C: ( (dsIProperty*)16F523E8 )->getPropertyType( 0018EA58 )
    0x000019C0 14485 3  XPCOM R: ( (dsIProperty*)16F523E8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14485 3  XPCOM C: ( (dsIProperty*)16F523E8 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14485 3  XPCOM R: ( (dsIProperty*)16F523E8 )->queryInterface( 170B40E0, *0018EA58 = 16F52454 ) = 0x00000000
    0x000019C0 14485 3  XPCOM C: ( (dsIBooleanProperty*)16F52454 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14485 3  XPCOM R: ( (dsIBooleanProperty*)16F52454 )->queryInterface( 170B40E0, *0018EA58 = 16F52454 ) = 0x00000000
    0x000019C0 14485 3  XPCOM C: ( (dsIProperties*)170346C0 )->Count( 0018EAF8 )
    0x000019C0 14485 3  XPCOM R: ( (dsIProperties*)170346C0 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14485 3  XPCOM C: ( (dsIProperties*)170347E0 )->Count( 0018EB38 )
    0x000019C0 14485 3  XPCOM R: ( (dsIProperties*)170347E0 )->Count( *0018EB38 = 0x00000005 ) = 0x00000000
    0x000019C0 14485 3  XPCOM C: ( (dsIProperties*)170347E0 )->getProperty( 0x00000003, 0018EB18 )
    0x000019C0 14485 3  XPCOM R: ( (dsIProperties*)170347E0 )->getProperty( 0x00000003, *0018EB18 = 1702F978 ) = 0x00000000
    0x000019C0 14485 3  XPCOM C: ( (dsIProperty*)1702F978 )->getPropertyType( 0018EA98 )
    0x000019C0 14485 3  XPCOM R: ( (dsIProperty*)1702F978 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 14485 3  XPCOM C: ( (dsIProperty*)1702F978 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14485 3  XPCOM R: ( (dsIProperty*)1702F978 )->queryInterface( 170B40E0, *0018EA98 = 1702F9E4 ) = 0x00000000
    0x000019C0 14485 3  XPCOM C: ( (dsIBooleanProperty*)1702F9E4 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14485 3  XPCOM R: ( (dsIBooleanProperty*)1702F9E4 )->queryInterface( 170B40E0, *0018EA98 = 1702F9E4 ) = 0x00000000
    0x000019C0 14485 3  XPCOM C: ( (dsIBooleanProperty*)1702F9E4 )->Name( 0018EB08 )
    0x000019C0 14485 3  XPCOM R: ( (dsIBooleanProperty*)1702F9E4 )->Name( *0018EB08 = Reset the target on a program load or restart ) = 0x00000000
    0x000019C0 14485 3  XPCOM C: ( (dsIProperties*)170347E0 )->getProperty( 0x00000003, 0018EB18 )
    0x000019C0 14485 3  XPCOM R: ( (dsIProperties*)170347E0 )->getProperty( 0x00000003, *0018EB18 = 1702F978 ) = 0x00000000
    0x000019C0 14485 3  XPCOM C: ( (dsIProperty*)1702F978 )->getPropertyType( 0018EA98 )
    0x000019C0 14485 3  XPCOM R: ( (dsIProperty*)1702F978 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 14485 3  XPCOM C: ( (dsIProperty*)1702F978 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14485 3  XPCOM R: ( (dsIProperty*)1702F978 )->queryInterface( 170B40E0, *0018EA98 = 1702F9E4 ) = 0x00000000
    0x000019C0 14485 3  XPCOM C: ( (dsIBooleanProperty*)1702F9E4 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14485 3  XPCOM R: ( (dsIBooleanProperty*)1702F9E4 )->queryInterface( 170B40E0, *0018EA98 = 1702F9E4 ) = 0x00000000
    0x000019C0 14486 3  XPCOM C: ( (dsIProperties*)170347E0 )->Count( 0018EB38 )
    0x000019C0 14486 3  XPCOM R: ( (dsIProperties*)170347E0 )->Count( *0018EB38 = 0x00000005 ) = 0x00000000
    0x000019C0 14486 3  XPCOM C: ( (dsIProperties*)170347E0 )->getProperty( 0x00000004, 0018EB18 )
    0x000019C0 14486 3  XPCOM R: ( (dsIProperties*)170347E0 )->getProperty( 0x00000004, *0018EB18 = 1702FA00 ) = 0x00000000
    0x000019C0 14486 3  XPCOM C: ( (dsIProperty*)1702FA00 )->getPropertyType( 0018EA98 )
    0x000019C0 14486 3  XPCOM R: ( (dsIProperty*)1702FA00 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 14486 3  XPCOM C: ( (dsIProperty*)1702FA00 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14486 3  XPCOM R: ( (dsIProperty*)1702FA00 )->queryInterface( 170B40E0, *0018EA98 = 1702FA6C ) = 0x00000000
    0x000019C0 14486 3  XPCOM C: ( (dsIBooleanProperty*)1702FA6C )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14486 3  XPCOM R: ( (dsIBooleanProperty*)1702FA6C )->queryInterface( 170B40E0, *0018EA98 = 1702FA6C ) = 0x00000000
    0x000019C0 14486 3  XPCOM C: ( (dsIBooleanProperty*)1702FA6C )->Name( 0018EB08 )
    0x000019C0 14486 3  XPCOM R: ( (dsIBooleanProperty*)1702FA6C )->Name( *0018EB08 = Restart the target on a symbol load as well as a program load ) = 0x00000000
    0x000019C0 14486 3  XPCOM C: ( (dsIProperties*)170347E0 )->getProperty( 0x00000004, 0018EB18 )
    0x000019C0 14486 3  XPCOM R: ( (dsIProperties*)170347E0 )->getProperty( 0x00000004, *0018EB18 = 1702FA00 ) = 0x00000000
    0x000019C0 14486 3  XPCOM C: ( (dsIProperty*)1702FA00 )->getPropertyType( 0018EA98 )
    0x000019C0 14486 3  XPCOM R: ( (dsIProperty*)1702FA00 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 14486 3  XPCOM C: ( (dsIProperty*)1702FA00 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14486 3  XPCOM R: ( (dsIProperty*)1702FA00 )->queryInterface( 170B40E0, *0018EA98 = 1702FA6C ) = 0x00000000
    0x000019C0 14486 3  XPCOM C: ( (dsIBooleanProperty*)1702FA6C )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14486 3  XPCOM R: ( (dsIBooleanProperty*)1702FA6C )->queryInterface( 170B40E0, *0018EA98 = 1702FA6C ) = 0x00000000
    0x000019C0 14486 3  XPCOM C: ( (dsIProperties*)170347E0 )->Count( 0018EB38 )
    0x000019C0 14486 3  XPCOM R: ( (dsIProperties*)170347E0 )->Count( *0018EB38 = 0x00000005 ) = 0x00000000
    0x000019C0 14486 3  XPCOM C: ( (dsIProperties*)1856FB50 )->Count( 0018EB78 )
    0x000019C0 14486 3  XPCOM R: ( (dsIProperties*)1856FB50 )->Count( *0018EB78 = 0x00000005 ) = 0x00000000
    0x000019C0 14486 3  XPCOM C: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000001, 0018EB58 )
    0x000019C0 14486 3  XPCOM R: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000001, *0018EB58 = 17020EA0 ) = 0x00000000
    0x000019C0 14486 3  XPCOM C: ( (dsIProperty*)17020EA0 )->getPropertyType( 0018EAD8 )
    0x000019C0 14486 3  XPCOM R: ( (dsIProperty*)17020EA0 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 14486 3  XPCOM C: ( (dsIProperty*)17020EA0 )->queryInterface( 170B40E0, 0018EAD8 )
    0x000019C0 14486 3  XPCOM R: ( (dsIProperty*)17020EA0 )->queryInterface( 170B40E0, *0018EAD8 = 17020F0C ) = 0x00000000
    0x000019C0 14486 3  XPCOM C: ( (dsINode*)17020F0C )->queryInterface( 170B40E0, 0018EAD8 )
    0x000019C0 14486 3  XPCOM R: ( (dsINode*)17020F0C )->queryInterface( 170B40E0, *0018EAD8 = 17020F0C ) = 0x00000000
    0x000019C0 14486 3  XPCOM C: ( (dsINode*)17020F0C )->Name( 0018EB48 )
    0x000019C0 14486 3  XPCOM R: ( (dsINode*)17020F0C )->Name( *0018EB48 = Auto Run and Launch Options ) = 0x00000000
    0x000019C0 14486 3  XPCOM C: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000001, 0018EB58 )
    0x000019C0 14486 3  XPCOM R: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000001, *0018EB58 = 17020EA0 ) = 0x00000000
    0x000019C0 14486 3  XPCOM C: ( (dsIProperty*)17020EA0 )->getPropertyType( 0018EAD8 )
    0x000019C0 14486 3  XPCOM R: ( (dsIProperty*)17020EA0 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 14486 3  XPCOM C: ( (dsIProperty*)17020EA0 )->queryInterface( 170B40E0, 0018EAD8 )
    0x000019C0 14486 3  XPCOM R: ( (dsIProperty*)17020EA0 )->queryInterface( 170B40E0, *0018EAD8 = 17020F0C ) = 0x00000000
    0x000019C0 14486 3  XPCOM C: ( (dsINode*)17020F0C )->queryInterface( 170B40E0, 0018EAD8 )
    0x000019C0 14486 3  XPCOM R: ( (dsINode*)17020F0C )->queryInterface( 170B40E0, *0018EAD8 = 17020F0C ) = 0x00000000
    0x000019C0 14486 3  XPCOM C: ( (dsINode*)17020F0C )->getChildren( 0018EB18 )
    0x000019C0 14486 3  XPCOM R: ( (dsINode*)17020F0C )->getChildren( *0018EB18 = 170340C0 ) = 0x00000000
    0x000019C0 14487 3  XPCOM C: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000001, 0018EB58 )
    0x000019C0 14487 3  XPCOM R: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000001, *0018EB58 = 17020EA0 ) = 0x00000000
    0x000019C0 14487 3  XPCOM C: ( (dsIProperty*)17020EA0 )->getPropertyType( 0018EAD8 )
    0x000019C0 14487 3  XPCOM R: ( (dsIProperty*)17020EA0 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 14487 3  XPCOM C: ( (dsIProperty*)17020EA0 )->queryInterface( 170B40E0, 0018EAD8 )
    0x000019C0 14487 3  XPCOM R: ( (dsIProperty*)17020EA0 )->queryInterface( 170B40E0, *0018EAD8 = 17020F0C ) = 0x00000000
    0x000019C0 14487 3  XPCOM C: ( (dsINode*)17020F0C )->queryInterface( 170B40E0, 0018EAD8 )
    0x000019C0 14487 3  XPCOM R: ( (dsINode*)17020F0C )->queryInterface( 170B40E0, *0018EAD8 = 17020F0C ) = 0x00000000
    0x000019C0 14487 3  XPCOM C: ( (dsINode*)17020F0C )->getChildren( 0018EB18 )
    0x000019C0 14487 3  XPCOM R: ( (dsINode*)17020F0C )->getChildren( *0018EB18 = 17034540 ) = 0x00000000
    0x000019C0 14487 3  XPCOM C: ( (dsIProperties*)17034540 )->Count( 0018EB78 )
    0x000019C0 14487 3  XPCOM R: ( (dsIProperties*)17034540 )->Count( *0018EB78 = 0x00000003 ) = 0x00000000
    0x000019C0 14487 3  XPCOM C: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000001, 0018EB58 )
    0x000019C0 14487 3  XPCOM R: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000001, *0018EB58 = 17020EA0 ) = 0x00000000
    0x000019C0 14487 3  XPCOM C: ( (dsIProperty*)17020EA0 )->getPropertyType( 0018EAD8 )
    0x000019C0 14487 3  XPCOM R: ( (dsIProperty*)17020EA0 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 14487 3  XPCOM C: ( (dsIProperty*)17020EA0 )->queryInterface( 170B40E0, 0018EAD8 )
    0x000019C0 14487 3  XPCOM R: ( (dsIProperty*)17020EA0 )->queryInterface( 170B40E0, *0018EAD8 = 17020F0C ) = 0x00000000
    0x000019C0 14487 3  XPCOM C: ( (dsINode*)17020F0C )->queryInterface( 170B40E0, 0018EAD8 )
    0x000019C0 14487 3  XPCOM R: ( (dsINode*)17020F0C )->queryInterface( 170B40E0, *0018EAD8 = 17020F0C ) = 0x00000000
    0x000019C0 14487 3  XPCOM C: ( (dsINode*)17020F0C )->getChildren( 0018EB18 )
    0x000019C0 14487 3  XPCOM R: ( (dsINode*)17020F0C )->getChildren( *0018EB18 = 17033EB0 ) = 0x00000000
    0x000019C0 14487 3  XPCOM C: ( (dsIProperties*)17033EB0 )->Count( 0018EB38 )
    0x000019C0 14487 3  XPCOM R: ( (dsIProperties*)17033EB0 )->Count( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 14487 3  XPCOM C: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 14487 3  XPCOM R: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000000, *0018EB18 = 17132E48 ) = 0x00000000
    0x000019C0 14487 3  XPCOM C: ( (dsIProperty*)17132E48 )->getPropertyType( 0018EA98 )
    0x000019C0 14487 3  XPCOM R: ( (dsIProperty*)17132E48 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14487 3  XPCOM C: ( (dsIProperty*)17132E48 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14487 3  XPCOM R: ( (dsIProperty*)17132E48 )->queryInterface( 170B40E0, *0018EA98 = 17132EB4 ) = 0x00000000
    0x000019C0 14487 3  XPCOM C: ( (dsIGroup*)17132EB4 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14487 3  XPCOM R: ( (dsIGroup*)17132EB4 )->queryInterface( 170B40E0, *0018EA98 = 17132EB4 ) = 0x00000000
    0x000019C0 14487 3  XPCOM C: ( (dsIGroup*)17132EB4 )->Name( 0018EB08 )
    0x000019C0 14487 3  XPCOM R: ( (dsIGroup*)17132EB4 )->Name( *0018EB08 = Realtime Options ) = 0x00000000
    0x000019C0 14487 3  XPCOM C: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 14487 3  XPCOM R: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000000, *0018EB18 = 17132E48 ) = 0x00000000
    0x000019C0 14487 3  XPCOM C: ( (dsIProperty*)17132E48 )->getPropertyType( 0018EA98 )
    0x000019C0 14487 3  XPCOM R: ( (dsIProperty*)17132E48 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14487 3  XPCOM C: ( (dsIProperty*)17132E48 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14487 3  XPCOM R: ( (dsIProperty*)17132E48 )->queryInterface( 170B40E0, *0018EA98 = 17132EB4 ) = 0x00000000
    0x000019C0 14487 3  XPCOM C: ( (dsIGroup*)17132EB4 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14487 3  XPCOM R: ( (dsIGroup*)17132EB4 )->queryInterface( 170B40E0, *0018EA98 = 17132EB4 ) = 0x00000000
    0x000019C0 14487 3  XPCOM C: ( (dsIGroup*)17132EB4 )->getChildren( 0018EAD8 )
    0x000019C0 14487 3  XPCOM R: ( (dsIGroup*)17132EB4 )->getChildren( *0018EAD8 = 17034E10 ) = 0x00000000
    0x000019C0 14488 3  XPCOM C: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 14488 3  XPCOM R: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000000, *0018EB18 = 17132E48 ) = 0x00000000
    0x000019C0 14488 3  XPCOM C: ( (dsIProperty*)17132E48 )->getPropertyType( 0018EA98 )
    0x000019C0 14488 3  XPCOM R: ( (dsIProperty*)17132E48 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14488 3  XPCOM C: ( (dsIProperty*)17132E48 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14488 3  XPCOM R: ( (dsIProperty*)17132E48 )->queryInterface( 170B40E0, *0018EA98 = 17132EB4 ) = 0x00000000
    0x000019C0 14488 3  XPCOM C: ( (dsIGroup*)17132EB4 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14488 3  XPCOM R: ( (dsIGroup*)17132EB4 )->queryInterface( 170B40E0, *0018EA98 = 17132EB4 ) = 0x00000000
    0x000019C0 14488 3  XPCOM C: ( (dsIGroup*)17132EB4 )->getChildren( 0018EAD8 )
    0x000019C0 14488 3  XPCOM R: ( (dsIGroup*)17132EB4 )->getChildren( *0018EAD8 = 17033340 ) = 0x00000000
    0x000019C0 14488 3  XPCOM C: ( (dsIProperties*)17033340 )->Count( 0018EB38 )
    0x000019C0 14488 3  XPCOM R: ( (dsIProperties*)17033340 )->Count( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 14488 3  XPCOM C: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 14488 3  XPCOM R: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000000, *0018EB18 = 17132E48 ) = 0x00000000
    0x000019C0 14488 3  XPCOM C: ( (dsIProperty*)17132E48 )->getPropertyType( 0018EA98 )
    0x000019C0 14488 3  XPCOM R: ( (dsIProperty*)17132E48 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14488 3  XPCOM C: ( (dsIProperty*)17132E48 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14488 3  XPCOM R: ( (dsIProperty*)17132E48 )->queryInterface( 170B40E0, *0018EA98 = 17132EB4 ) = 0x00000000
    0x000019C0 14488 3  XPCOM C: ( (dsIGroup*)17132EB4 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14488 3  XPCOM R: ( (dsIGroup*)17132EB4 )->queryInterface( 170B40E0, *0018EA98 = 17132EB4 ) = 0x00000000
    0x000019C0 14488 3  XPCOM C: ( (dsIGroup*)17132EB4 )->getChildren( 0018EAD8 )
    0x000019C0 14488 3  XPCOM R: ( (dsIGroup*)17132EB4 )->getChildren( *0018EAD8 = 17034510 ) = 0x00000000
    0x000019C0 14488 3  XPCOM C: ( (dsIProperties*)17034510 )->Count( 0018EAF8 )
    0x000019C0 14488 3  XPCOM R: ( (dsIProperties*)17034510 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14488 3  XPCOM C: ( (dsIProperties*)17034510 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 14488 3  XPCOM R: ( (dsIProperties*)17034510 )->getProperty( 0x00000000, *0018EAD8 = 1702FC20 ) = 0x00000000
    0x000019C0 14488 3  XPCOM C: ( (dsIProperty*)1702FC20 )->getPropertyType( 0018EA58 )
    0x000019C0 14488 3  XPCOM R: ( (dsIProperty*)1702FC20 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14488 3  XPCOM C: ( (dsIProperty*)1702FC20 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14488 3  XPCOM R: ( (dsIProperty*)1702FC20 )->queryInterface( 170B40E0, *0018EA58 = 1702FC8C ) = 0x00000000
    0x000019C0 14488 3  XPCOM C: ( (dsIBooleanProperty*)1702FC8C )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14488 3  XPCOM R: ( (dsIBooleanProperty*)1702FC8C )->queryInterface( 170B40E0, *0018EA58 = 1702FC8C ) = 0x00000000
    0x000019C0 14488 3  XPCOM C: ( (dsIBooleanProperty*)1702FC8C )->Name( 0018EAC8 )
    0x000019C0 14488 3  XPCOM R: ( (dsIBooleanProperty*)1702FC8C )->Name( *0018EAC8 = Halt the target before any debugger access (will impact servicing of interrupts) ) = 0x00000000
    0x000019C0 14488 3  XPCOM C: ( (dsIProperties*)17034510 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 14488 3  XPCOM R: ( (dsIProperties*)17034510 )->getProperty( 0x00000000, *0018EAD8 = 1702FC20 ) = 0x00000000
    0x000019C0 14488 3  XPCOM C: ( (dsIProperty*)1702FC20 )->getPropertyType( 0018EA58 )
    0x000019C0 14488 3  XPCOM R: ( (dsIProperty*)1702FC20 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14488 3  XPCOM C: ( (dsIProperty*)1702FC20 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14488 3  XPCOM R: ( (dsIProperty*)1702FC20 )->queryInterface( 170B40E0, *0018EA58 = 1702FC8C ) = 0x00000000
    0x000019C0 14488 3  XPCOM C: ( (dsIBooleanProperty*)1702FC8C )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14488 3  XPCOM R: ( (dsIBooleanProperty*)1702FC8C )->queryInterface( 170B40E0, *0018EA58 = 1702FC8C ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIProperties*)17034510 )->Count( 0018EAF8 )
    0x000019C0 14489 3  XPCOM R: ( (dsIProperties*)17034510 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIProperties*)17034510 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 14489 3  XPCOM R: ( (dsIProperties*)17034510 )->getProperty( 0x00000001, *0018EAD8 = 1702FCA8 ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIProperty*)1702FCA8 )->getPropertyType( 0018EA58 )
    0x000019C0 14489 3  XPCOM R: ( (dsIProperty*)1702FCA8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIProperty*)1702FCA8 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14489 3  XPCOM R: ( (dsIProperty*)1702FCA8 )->queryInterface( 170B40E0, *0018EA58 = 1702FD14 ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIBooleanProperty*)1702FD14 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14489 3  XPCOM R: ( (dsIBooleanProperty*)1702FD14 )->queryInterface( 170B40E0, *0018EA58 = 1702FD14 ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIBooleanProperty*)1702FD14 )->Name( 0018EAC8 )
    0x000019C0 14489 3  XPCOM R: ( (dsIBooleanProperty*)1702FD14 )->Name( *0018EAC8 = Enable realtime mode (critical interrupts serviced when halted, rude/polite mode...) ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIProperties*)17034510 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 14489 3  XPCOM R: ( (dsIProperties*)17034510 )->getProperty( 0x00000001, *0018EAD8 = 1702FCA8 ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIProperty*)1702FCA8 )->getPropertyType( 0018EA58 )
    0x000019C0 14489 3  XPCOM R: ( (dsIProperty*)1702FCA8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIProperty*)1702FCA8 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14489 3  XPCOM R: ( (dsIProperty*)1702FCA8 )->queryInterface( 170B40E0, *0018EA58 = 1702FD14 ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIBooleanProperty*)1702FD14 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14489 3  XPCOM R: ( (dsIBooleanProperty*)1702FD14 )->queryInterface( 170B40E0, *0018EA58 = 1702FD14 ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIProperties*)17034510 )->Count( 0018EAF8 )
    0x000019C0 14489 3  XPCOM R: ( (dsIProperties*)17034510 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIProperties*)17034510 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 14489 3  XPCOM R: ( (dsIProperties*)17034510 )->getProperty( 0x00000002, *0018EAD8 = 1702FD30 ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIProperty*)1702FD30 )->getPropertyType( 0018EA58 )
    0x000019C0 14489 3  XPCOM R: ( (dsIProperty*)1702FD30 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIProperty*)1702FD30 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14489 3  XPCOM R: ( (dsIProperty*)1702FD30 )->queryInterface( 170B40E0, *0018EA58 = 1702FD9C ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIBooleanProperty*)1702FD9C )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14489 3  XPCOM R: ( (dsIBooleanProperty*)1702FD9C )->queryInterface( 170B40E0, *0018EA58 = 1702FD9C ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIBooleanProperty*)1702FD9C )->Name( 0018EAC8 )
    0x000019C0 14489 3  XPCOM R: ( (dsIBooleanProperty*)1702FD9C )->Name( *0018EAC8 = Enable polite mode (respect HPI, DBGM and FRAMEID) ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIProperties*)17034510 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 14489 3  XPCOM R: ( (dsIProperties*)17034510 )->getProperty( 0x00000002, *0018EAD8 = 1702FD30 ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIProperty*)1702FD30 )->getPropertyType( 0018EA58 )
    0x000019C0 14489 3  XPCOM R: ( (dsIProperty*)1702FD30 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIProperty*)1702FD30 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14489 3  XPCOM R: ( (dsIProperty*)1702FD30 )->queryInterface( 170B40E0, *0018EA58 = 1702FD9C ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIBooleanProperty*)1702FD9C )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14489 3  XPCOM R: ( (dsIBooleanProperty*)1702FD9C )->queryInterface( 170B40E0, *0018EA58 = 1702FD9C ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIProperties*)17034510 )->Count( 0018EAF8 )
    0x000019C0 14489 3  XPCOM R: ( (dsIProperties*)17034510 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIProperties*)17033EB0 )->Count( 0018EB38 )
    0x000019C0 14489 3  XPCOM R: ( (dsIProperties*)17033EB0 )->Count( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 14489 3  XPCOM C: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 14489 3  XPCOM R: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000001, *0018EB18 = 17132F58 ) = 0x00000000
    0x000019C0 14490 3  XPCOM C: ( (dsIProperty*)17132F58 )->getPropertyType( 0018EA98 )
    0x000019C0 14490 3  XPCOM R: ( (dsIProperty*)17132F58 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14490 3  XPCOM C: ( (dsIProperty*)17132F58 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14490 3  XPCOM R: ( (dsIProperty*)17132F58 )->queryInterface( 170B40E0, *0018EA98 = 17132FC4 ) = 0x00000000
    0x000019C0 14490 3  XPCOM C: ( (dsIGroup*)17132FC4 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14490 3  XPCOM R: ( (dsIGroup*)17132FC4 )->queryInterface( 170B40E0, *0018EA98 = 17132FC4 ) = 0x00000000
    0x000019C0 14490 3  XPCOM C: ( (dsIGroup*)17132FC4 )->Name( 0018EB08 )
    0x000019C0 14490 3  XPCOM R: ( (dsIGroup*)17132FC4 )->Name( *0018EB08 = Auto Run Options ) = 0x00000000
    0x000019C0 14490 3  XPCOM C: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 14490 3  XPCOM R: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000001, *0018EB18 = 17132F58 ) = 0x00000000
    0x000019C0 14490 3  XPCOM C: ( (dsIProperty*)17132F58 )->getPropertyType( 0018EA98 )
    0x000019C0 14490 3  XPCOM R: ( (dsIProperty*)17132F58 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14490 3  XPCOM C: ( (dsIProperty*)17132F58 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14490 3  XPCOM R: ( (dsIProperty*)17132F58 )->queryInterface( 170B40E0, *0018EA98 = 17132FC4 ) = 0x00000000
    0x000019C0 14490 3  XPCOM C: ( (dsIGroup*)17132FC4 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14490 3  XPCOM R: ( (dsIGroup*)17132FC4 )->queryInterface( 170B40E0, *0018EA98 = 17132FC4 ) = 0x00000000
    0x000019C0 14490 3  XPCOM C: ( (dsIGroup*)17132FC4 )->getChildren( 0018EAD8 )
    0x000019C0 14490 3  XPCOM R: ( (dsIGroup*)17132FC4 )->getChildren( *0018EAD8 = 17034D80 ) = 0x00000000
    0x000019C0 14490 3  XPCOM C: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 14490 3  XPCOM R: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000001, *0018EB18 = 17132F58 ) = 0x00000000
    0x000019C0 14490 3  XPCOM C: ( (dsIProperty*)17132F58 )->getPropertyType( 0018EA98 )
    0x000019C0 14490 3  XPCOM R: ( (dsIProperty*)17132F58 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14490 3  XPCOM C: ( (dsIProperty*)17132F58 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14490 3  XPCOM R: ( (dsIProperty*)17132F58 )->queryInterface( 170B40E0, *0018EA98 = 17132FC4 ) = 0x00000000
    0x000019C0 14490 3  XPCOM C: ( (dsIGroup*)17132FC4 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14490 3  XPCOM R: ( (dsIGroup*)17132FC4 )->queryInterface( 170B40E0, *0018EA98 = 17132FC4 ) = 0x00000000
    0x000019C0 14490 3  XPCOM C: ( (dsIGroup*)17132FC4 )->getChildren( 0018EAD8 )
    0x000019C0 14490 3  XPCOM R: ( (dsIGroup*)17132FC4 )->getChildren( *0018EAD8 = 170343C0 ) = 0x00000000
    0x000019C0 14490 3  XPCOM C: ( (dsIProperties*)170343C0 )->Count( 0018EB38 )
    0x000019C0 14490 3  XPCOM R: ( (dsIProperties*)170343C0 )->Count( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 14490 3  XPCOM C: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 14490 3  XPCOM R: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000001, *0018EB18 = 17132F58 ) = 0x00000000
    0x000019C0 14490 3  XPCOM C: ( (dsIProperty*)17132F58 )->getPropertyType( 0018EA98 )
    0x000019C0 14490 3  XPCOM R: ( (dsIProperty*)17132F58 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14490 3  XPCOM C: ( (dsIProperty*)17132F58 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14490 3  XPCOM R: ( (dsIProperty*)17132F58 )->queryInterface( 170B40E0, *0018EA98 = 17132FC4 ) = 0x00000000
    0x000019C0 14490 3  XPCOM C: ( (dsIGroup*)17132FC4 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14490 3  XPCOM R: ( (dsIGroup*)17132FC4 )->queryInterface( 170B40E0, *0018EA98 = 17132FC4 ) = 0x00000000
    0x000019C0 14490 3  XPCOM C: ( (dsIGroup*)17132FC4 )->getChildren( 0018EAD8 )
    0x000019C0 14490 3  XPCOM R: ( (dsIGroup*)17132FC4 )->getChildren( *0018EAD8 = 17033160 ) = 0x00000000
    0x000019C0 14491 3  XPCOM C: ( (dsIProperties*)17033160 )->Count( 0018EAF8 )
    0x000019C0 14491 3  XPCOM R: ( (dsIProperties*)17033160 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14491 3  XPCOM C: ( (dsIProperties*)17033160 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 14491 3  XPCOM R: ( (dsIProperties*)17033160 )->getProperty( 0x00000000, *0018EAD8 = 12296818 ) = 0x00000000
    0x000019C0 14491 3  XPCOM C: ( (dsIProperty*)12296818 )->getPropertyType( 0018EA58 )
    0x000019C0 14491 3  XPCOM R: ( (dsIProperty*)12296818 )->getPropertyType( *0018EA58 = 0x00000004 ) = 0x00000000
    0x000019C0 14491 3  XPCOM C: ( (dsIProperty*)12296818 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14491 3  XPCOM R: ( (dsIProperty*)12296818 )->queryInterface( 170B40E0, *0018EA58 = 12296884 ) = 0x00000000
    0x000019C0 14491 3  XPCOM C: ( (dsIStringProperty*)12296884 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14491 3  XPCOM R: ( (dsIStringProperty*)12296884 )->queryInterface( 170B40E0, *0018EA58 = 12296884 ) = 0x00000000
    0x000019C0 14491 3  XPCOM C: ( (dsIStringProperty*)12296884 )->Name( 0018EAC8 )
    0x000019C0 14491 3  XPCOM R: ( (dsIStringProperty*)12296884 )->Name( *0018EAC8 = Run to symbol ) = 0x00000000
    0x000019C0 14491 3  XPCOM C: ( (dsIProperties*)17033160 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 14491 3  XPCOM R: ( (dsIProperties*)17033160 )->getProperty( 0x00000000, *0018EAD8 = 12296818 ) = 0x00000000
    0x000019C0 14491 3  XPCOM C: ( (dsIProperty*)12296818 )->getPropertyType( 0018EA58 )
    0x000019C0 14491 3  XPCOM R: ( (dsIProperty*)12296818 )->getPropertyType( *0018EA58 = 0x00000004 ) = 0x00000000
    0x000019C0 14491 3  XPCOM C: ( (dsIProperty*)12296818 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14491 3  XPCOM R: ( (dsIProperty*)12296818 )->queryInterface( 170B40E0, *0018EA58 = 12296884 ) = 0x00000000
    0x000019C0 14491 3  XPCOM C: ( (dsIStringProperty*)12296884 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14491 3  XPCOM R: ( (dsIStringProperty*)12296884 )->queryInterface( 170B40E0, *0018EA58 = 12296884 ) = 0x00000000
    0x000019C0 14491 3  XPCOM C: ( (dsIProperties*)17033160 )->Count( 0018EAF8 )
    0x000019C0 14491 3  XPCOM R: ( (dsIProperties*)17033160 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14491 3  XPCOM C: ( (dsIProperties*)17033160 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 14491 3  XPCOM R: ( (dsIProperties*)17033160 )->getProperty( 0x00000001, *0018EAD8 = 1702FDB8 ) = 0x00000000
    0x000019C0 14491 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->getPropertyType( 0018EA58 )
    0x000019C0 14491 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14491 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14491 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->queryInterface( 170B40E0, *0018EA58 = 1702FE24 ) = 0x00000000
    0x000019C0 14491 3  XPCOM C: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14491 3  XPCOM R: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 170B40E0, *0018EA58 = 1702FE24 ) = 0x00000000
    0x000019C0 14491 3  XPCOM C: ( (dsIBooleanProperty*)1702FE24 )->Name( 0018EAC8 )
    0x000019C0 14491 3  XPCOM R: ( (dsIBooleanProperty*)1702FE24 )->Name( *0018EAC8 = On a program load or restart ) = 0x00000000
    0x000019C0 14491 3  XPCOM C: ( (dsIProperties*)17033160 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 14491 3  XPCOM R: ( (dsIProperties*)17033160 )->getProperty( 0x00000001, *0018EAD8 = 1702FDB8 ) = 0x00000000
    0x000019C0 14491 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->getPropertyType( 0018EA58 )
    0x000019C0 14491 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14491 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14491 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->queryInterface( 170B40E0, *0018EA58 = 1702FE24 ) = 0x00000000
    0x000019C0 14491 3  XPCOM C: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14491 3  XPCOM R: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 170B40E0, *0018EA58 = 1702FE24 ) = 0x00000000
    0x000019C0 14492 3  XPCOM C: ( (dsIProperties*)17033160 )->Count( 0018EAF8 )
    0x000019C0 14492 3  XPCOM R: ( (dsIProperties*)17033160 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14492 3  XPCOM C: ( (dsIProperties*)17033160 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 14492 3  XPCOM R: ( (dsIProperties*)17033160 )->getProperty( 0x00000002, *0018EAD8 = 1702FE40 ) = 0x00000000
    0x000019C0 14492 3  XPCOM C: ( (dsIProperty*)1702FE40 )->getPropertyType( 0018EA58 )
    0x000019C0 14492 3  XPCOM R: ( (dsIProperty*)1702FE40 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14492 3  XPCOM C: ( (dsIProperty*)1702FE40 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14492 3  XPCOM R: ( (dsIProperty*)1702FE40 )->queryInterface( 170B40E0, *0018EA58 = 1702FEAC ) = 0x00000000
    0x000019C0 14492 3  XPCOM C: ( (dsIBooleanProperty*)1702FEAC )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14492 3  XPCOM R: ( (dsIBooleanProperty*)1702FEAC )->queryInterface( 170B40E0, *0018EA58 = 1702FEAC ) = 0x00000000
    0x000019C0 14492 3  XPCOM C: ( (dsIBooleanProperty*)1702FEAC )->Name( 0018EAC8 )
    0x000019C0 14492 3  XPCOM R: ( (dsIBooleanProperty*)1702FEAC )->Name( *0018EAC8 = On a reset ) = 0x00000000
    0x000019C0 14492 3  XPCOM C: ( (dsIProperties*)17033160 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 14492 3  XPCOM R: ( (dsIProperties*)17033160 )->getProperty( 0x00000002, *0018EAD8 = 1702FE40 ) = 0x00000000
    0x000019C0 14492 3  XPCOM C: ( (dsIProperty*)1702FE40 )->getPropertyType( 0018EA58 )
    0x000019C0 14492 3  XPCOM R: ( (dsIProperty*)1702FE40 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14492 3  XPCOM C: ( (dsIProperty*)1702FE40 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14492 3  XPCOM R: ( (dsIProperty*)1702FE40 )->queryInterface( 170B40E0, *0018EA58 = 1702FEAC ) = 0x00000000
    0x000019C0 14492 3  XPCOM C: ( (dsIBooleanProperty*)1702FEAC )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14492 3  XPCOM R: ( (dsIBooleanProperty*)1702FEAC )->queryInterface( 170B40E0, *0018EA58 = 1702FEAC ) = 0x00000000
    0x000019C0 14492 3  XPCOM C: ( (dsIProperties*)17033160 )->Count( 0018EAF8 )
    0x000019C0 14492 3  XPCOM R: ( (dsIProperties*)17033160 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14492 3  XPCOM C: ( (dsIProperties*)17033EB0 )->Count( 0018EB38 )
    0x000019C0 14492 3  XPCOM R: ( (dsIProperties*)17033EB0 )->Count( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 14492 3  XPCOM C: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 14492 3  XPCOM R: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000002, *0018EB18 = 17132FE0 ) = 0x00000000
    0x000019C0 14492 3  XPCOM C: ( (dsIProperty*)17132FE0 )->getPropertyType( 0018EA98 )
    0x000019C0 14492 3  XPCOM R: ( (dsIProperty*)17132FE0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14492 3  XPCOM C: ( (dsIProperty*)17132FE0 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14492 3  XPCOM R: ( (dsIProperty*)17132FE0 )->queryInterface( 170B40E0, *0018EA98 = 1713304C ) = 0x00000000
    0x000019C0 14492 3  XPCOM C: ( (dsIGroup*)1713304C )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14492 3  XPCOM R: ( (dsIGroup*)1713304C )->queryInterface( 170B40E0, *0018EA98 = 1713304C ) = 0x00000000
    0x000019C0 14492 3  XPCOM C: ( (dsIGroup*)1713304C )->Name( 0018EB08 )
    0x000019C0 14492 3  XPCOM R: ( (dsIGroup*)1713304C )->Name( *0018EB08 = Launch Options ) = 0x00000000
    0x000019C0 14492 3  XPCOM C: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 14492 3  XPCOM R: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000002, *0018EB18 = 17132FE0 ) = 0x00000000
    0x000019C0 14492 3  XPCOM C: ( (dsIProperty*)17132FE0 )->getPropertyType( 0018EA98 )
    0x000019C0 14492 3  XPCOM R: ( (dsIProperty*)17132FE0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14492 3  XPCOM C: ( (dsIProperty*)17132FE0 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14492 3  XPCOM R: ( (dsIProperty*)17132FE0 )->queryInterface( 170B40E0, *0018EA98 = 1713304C ) = 0x00000000
    0x000019C0 14492 3  XPCOM C: ( (dsIGroup*)1713304C )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14492 3  XPCOM R: ( (dsIGroup*)1713304C )->queryInterface( 170B40E0, *0018EA98 = 1713304C ) = 0x00000000
    0x000019C0 14492 3  XPCOM C: ( (dsIGroup*)1713304C )->getChildren( 0018EAD8 )
    0x000019C0 14492 3  XPCOM R: ( (dsIGroup*)1713304C )->getChildren( *0018EAD8 = 17033460 ) = 0x00000000
    0x000019C0 14493 3  XPCOM C: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 14493 3  XPCOM R: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000002, *0018EB18 = 17132FE0 ) = 0x00000000
    0x000019C0 14493 3  XPCOM C: ( (dsIProperty*)17132FE0 )->getPropertyType( 0018EA98 )
    0x000019C0 14493 3  XPCOM R: ( (dsIProperty*)17132FE0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14493 3  XPCOM C: ( (dsIProperty*)17132FE0 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14493 3  XPCOM R: ( (dsIProperty*)17132FE0 )->queryInterface( 170B40E0, *0018EA98 = 1713304C ) = 0x00000000
    0x000019C0 14493 3  XPCOM C: ( (dsIGroup*)1713304C )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14493 3  XPCOM R: ( (dsIGroup*)1713304C )->queryInterface( 170B40E0, *0018EA98 = 1713304C ) = 0x00000000
    0x000019C0 14493 3  XPCOM C: ( (dsIGroup*)1713304C )->getChildren( 0018EAD8 )
    0x000019C0 14493 3  XPCOM R: ( (dsIGroup*)1713304C )->getChildren( *0018EAD8 = 17033C10 ) = 0x00000000
    0x000019C0 14493 3  XPCOM C: ( (dsIProperties*)17033C10 )->Count( 0018EB38 )
    0x000019C0 14493 3  XPCOM R: ( (dsIProperties*)17033C10 )->Count( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 14493 3  XPCOM C: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 14493 3  XPCOM R: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000002, *0018EB18 = 17132FE0 ) = 0x00000000
    0x000019C0 14493 3  XPCOM C: ( (dsIProperty*)17132FE0 )->getPropertyType( 0018EA98 )
    0x000019C0 14493 3  XPCOM R: ( (dsIProperty*)17132FE0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14493 3  XPCOM C: ( (dsIProperty*)17132FE0 )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14493 3  XPCOM R: ( (dsIProperty*)17132FE0 )->queryInterface( 170B40E0, *0018EA98 = 1713304C ) = 0x00000000
    0x000019C0 14493 3  XPCOM C: ( (dsIGroup*)1713304C )->queryInterface( 170B40E0, 0018EA98 )
    0x000019C0 14493 3  XPCOM R: ( (dsIGroup*)1713304C )->queryInterface( 170B40E0, *0018EA98 = 1713304C ) = 0x00000000
    0x000019C0 14493 3  XPCOM C: ( (dsIGroup*)1713304C )->getChildren( 0018EAD8 )
    0x000019C0 14493 3  XPCOM R: ( (dsIGroup*)1713304C )->getChildren( *0018EAD8 = 17034C60 ) = 0x00000000
    0x000019C0 14493 3  XPCOM C: ( (dsIProperties*)17034C60 )->Count( 0018EAF8 )
    0x000019C0 14493 3  XPCOM R: ( (dsIProperties*)17034C60 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14493 3  XPCOM C: ( (dsIProperties*)17034C60 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 14493 3  XPCOM R: ( (dsIProperties*)17034C60 )->getProperty( 0x00000000, *0018EAD8 = 16F51FA8 ) = 0x00000000
    0x000019C0 14493 3  XPCOM C: ( (dsIProperty*)16F51FA8 )->getPropertyType( 0018EA58 )
    0x000019C0 14493 3  XPCOM R: ( (dsIProperty*)16F51FA8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14493 3  XPCOM C: ( (dsIProperty*)16F51FA8 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14493 3  XPCOM R: ( (dsIProperty*)16F51FA8 )->queryInterface( 170B40E0, *0018EA58 = 16F52014 ) = 0x00000000
    0x000019C0 14493 3  XPCOM C: ( (dsIBooleanProperty*)16F52014 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14493 3  XPCOM R: ( (dsIBooleanProperty*)16F52014 )->queryInterface( 170B40E0, *0018EA58 = 16F52014 ) = 0x00000000
    0x000019C0 14493 3  XPCOM C: ( (dsIBooleanProperty*)16F52014 )->Name( 0018EAC8 )
    0x000019C0 14493 3  XPCOM R: ( (dsIBooleanProperty*)16F52014 )->Name( *0018EAC8 = Connect to the target on debugger startup ) = 0x00000000
    0x000019C0 14493 3  XPCOM C: ( (dsIProperties*)17034C60 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 14493 3  XPCOM R: ( (dsIProperties*)17034C60 )->getProperty( 0x00000000, *0018EAD8 = 16F51FA8 ) = 0x00000000
    0x000019C0 14493 3  XPCOM C: ( (dsIProperty*)16F51FA8 )->getPropertyType( 0018EA58 )
    0x000019C0 14493 3  XPCOM R: ( (dsIProperty*)16F51FA8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14493 3  XPCOM C: ( (dsIProperty*)16F51FA8 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14493 3  XPCOM R: ( (dsIProperty*)16F51FA8 )->queryInterface( 170B40E0, *0018EA58 = 16F52014 ) = 0x00000000
    0x000019C0 14493 3  XPCOM C: ( (dsIBooleanProperty*)16F52014 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14493 3  XPCOM R: ( (dsIBooleanProperty*)16F52014 )->queryInterface( 170B40E0, *0018EA58 = 16F52014 ) = 0x00000000
    0x000019C0 14494 3  XPCOM C: ( (dsIProperties*)17034C60 )->Count( 0018EAF8 )
    0x000019C0 14494 3  XPCOM R: ( (dsIProperties*)17034C60 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14494 3  XPCOM C: ( (dsIProperties*)17034C60 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 14494 3  XPCOM R: ( (dsIProperties*)17034C60 )->getProperty( 0x00000001, *0018EAD8 = 16F52140 ) = 0x00000000
    0x000019C0 14494 3  XPCOM C: ( (dsIProperty*)16F52140 )->getPropertyType( 0018EA58 )
    0x000019C0 14494 3  XPCOM R: ( (dsIProperty*)16F52140 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14494 3  XPCOM C: ( (dsIProperty*)16F52140 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14494 3  XPCOM R: ( (dsIProperty*)16F52140 )->queryInterface( 170B40E0, *0018EA58 = 16F521AC ) = 0x00000000
    0x000019C0 14494 3  XPCOM C: ( (dsIBooleanProperty*)16F521AC )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14494 3  XPCOM R: ( (dsIBooleanProperty*)16F521AC )->queryInterface( 170B40E0, *0018EA58 = 16F521AC ) = 0x00000000
    0x000019C0 14494 3  XPCOM C: ( (dsIBooleanProperty*)16F521AC )->Name( 0018EAC8 )
    0x000019C0 14494 3  XPCOM R: ( (dsIBooleanProperty*)16F521AC )->Name( *0018EAC8 = Restore breakpoints from previous session ) = 0x00000000
    0x000019C0 14494 3  XPCOM C: ( (dsIProperties*)17034C60 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 14494 3  XPCOM R: ( (dsIProperties*)17034C60 )->getProperty( 0x00000001, *0018EAD8 = 16F52140 ) = 0x00000000
    0x000019C0 14494 3  XPCOM C: ( (dsIProperty*)16F52140 )->getPropertyType( 0018EA58 )
    0x000019C0 14494 3  XPCOM R: ( (dsIProperty*)16F52140 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14494 3  XPCOM C: ( (dsIProperty*)16F52140 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14494 3  XPCOM R: ( (dsIProperty*)16F52140 )->queryInterface( 170B40E0, *0018EA58 = 16F521AC ) = 0x00000000
    0x000019C0 14494 3  XPCOM C: ( (dsIBooleanProperty*)16F521AC )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14494 3  XPCOM R: ( (dsIBooleanProperty*)16F521AC )->queryInterface( 170B40E0, *0018EA58 = 16F521AC ) = 0x00000000
    0x000019C0 14494 3  XPCOM C: ( (dsIProperties*)17034C60 )->Count( 0018EAF8 )
    0x000019C0 14494 3  XPCOM R: ( (dsIProperties*)17034C60 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14494 3  XPCOM C: ( (dsIProperties*)17034C60 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 14494 3  XPCOM R: ( (dsIProperties*)17034C60 )->getProperty( 0x00000002, *0018EAD8 = 16F521C8 ) = 0x00000000
    0x000019C0 14494 3  XPCOM C: ( (dsIProperty*)16F521C8 )->getPropertyType( 0018EA58 )
    0x000019C0 14494 3  XPCOM R: ( (dsIProperty*)16F521C8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14494 3  XPCOM C: ( (dsIProperty*)16F521C8 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14494 3  XPCOM R: ( (dsIProperty*)16F521C8 )->queryInterface( 170B40E0, *0018EA58 = 16F52234 ) = 0x00000000
    0x000019C0 14494 3  XPCOM C: ( (dsIBooleanProperty*)16F52234 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14494 3  XPCOM R: ( (dsIBooleanProperty*)16F52234 )->queryInterface( 170B40E0, *0018EA58 = 16F52234 ) = 0x00000000
    0x000019C0 14494 3  XPCOM C: ( (dsIBooleanProperty*)16F52234 )->Name( 0018EAC8 )
    0x000019C0 14494 3  XPCOM R: ( (dsIBooleanProperty*)16F52234 )->Name( *0018EAC8 = Continue debug launch if target connection or program load fails ) = 0x00000000
    0x000019C0 14494 3  XPCOM C: ( (dsIProperties*)17034C60 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 14494 3  XPCOM R: ( (dsIProperties*)17034C60 )->getProperty( 0x00000002, *0018EAD8 = 16F521C8 ) = 0x00000000
    0x000019C0 14494 3  XPCOM C: ( (dsIProperty*)16F521C8 )->getPropertyType( 0018EA58 )
    0x000019C0 14494 3  XPCOM R: ( (dsIProperty*)16F521C8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14494 3  XPCOM C: ( (dsIProperty*)16F521C8 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14494 3  XPCOM R: ( (dsIProperty*)16F521C8 )->queryInterface( 170B40E0, *0018EA58 = 16F52234 ) = 0x00000000
    0x000019C0 14494 3  XPCOM C: ( (dsIBooleanProperty*)16F52234 )->queryInterface( 170B40E0, 0018EA58 )
    0x000019C0 14494 3  XPCOM R: ( (dsIBooleanProperty*)16F52234 )->queryInterface( 170B40E0, *0018EA58 = 16F52234 ) = 0x00000000
    0x000019C0 14494 3  XPCOM C: ( (dsIProperties*)17034C60 )->Count( 0018EAF8 )
    0x000019C0 14494 3  XPCOM R: ( (dsIProperties*)17034C60 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14495 3  XPCOM C: ( (dsIProperties*)17033EB0 )->Count( 0018EB38 )
    0x000019C0 14495 3  XPCOM R: ( (dsIProperties*)17033EB0 )->Count( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 14495 3  XPCOM C: ( (dsIProperties*)1856FB50 )->Count( 0018EB78 )
    0x000019C0 14495 3  XPCOM R: ( (dsIProperties*)1856FB50 )->Count( *0018EB78 = 0x00000005 ) = 0x00000000
    0x000019C0 14495 3  XPCOM C: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000002, 0018EB58 )
    0x000019C0 14495 3  XPCOM R: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000002, *0018EB58 = 17020F28 ) = 0x00000000
    0x000019C0 14495 3  XPCOM C: ( (dsIProperty*)17020F28 )->getPropertyType( 0018EAD8 )
    0x000019C0 14495 3  XPCOM R: ( (dsIProperty*)17020F28 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 14495 3  XPCOM C: ( (dsIProperty*)17020F28 )->queryInterface( 170B40E0, 0018EAD8 )
    0x000019C0 14495 3  XPCOM R: ( (dsIProperty*)17020F28 )->queryInterface( 170B40E0, *0018EAD8 = 17020F94 ) = 0x00000000
    0x000019C0 14495 3  XPCOM C: ( (dsINode*)17020F94 )->queryInterface( 170B40E0, 0018EAD8 )
    0x000019C0 14495 3  XPCOM R: ( (dsINode*)17020F94 )->queryInterface( 170B40E0, *0018EAD8 = 17020F94 ) = 0x00000000
    0x000019C0 14495 3  XPCOM C: ( (dsINode*)17020F94 )->Name( 0018EB48 )
    0x000019C0 14495 3  XPCOM R: ( (dsINode*)17020F94 )->Name( *0018EB48 = Misc/Other Options ) = 0x00000000
    0x000019C0 14495 3  XPCOM C: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000002, 0018EB58 )
    0x000019C0 14495 3  XPCOM R: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000002, *0018EB58 = 17020F28 ) = 0x00000000
    0x000019C0 14495 3  XPCOM C: ( (dsIProperty*)17020F28 )->getPropertyType( 0018EAD8 )
    0x000019C0 14495 3  XPCOM R: ( (dsIProperty*)17020F28 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 14495 3  XPCOM C: ( (dsIProperty*)17020F28 )->queryInterface( 170B40E0, 0018EAD8 )
    0x000019C0 14495 3  XPCOM R: ( (dsIProperty*)17020F28 )->queryInterface( 170B40E0, *0018EAD8 = 17020F94 ) = 0x00000000
    0x000019C0 14495 3  XPCOM C: ( (dsINode*)17020F94 )->queryInterface( 170B40E0, 0018EAD8 )
    0x000019C0 14495 3  XPCOM R: ( (dsINode*)17020F94 )->queryInterface( 170B40E0, *0018EAD8 = 17020F94 ) = 0x00000000
    0x000019C0 14495 3  XPCOM C: ( (dsINode*)17020F94 )->getChildren( 0018EB18 )
    0x000019C0 14495 3  XPCOM R: ( (dsINode*)17020F94 )->getChildren( *0018EB18 = 170332E0 ) = 0x00000000
    0x000019C0 14495 3  XPCOM C: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000002, 0018EB58 )
    0x000019C0 14495 3  XPCOM R: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000002, *0018EB58 = 17020F28 ) = 0x00000000
    0x000019C0 14495 3  XPCOM C: ( (dsIProperty*)17020F28 )->getPropertyType( 0018EAD8 )
    0x000019C0 14495 3  XPCOM R: ( (dsIProperty*)17020F28 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 14495 3  XPCOM C: ( (dsIProperty*)17020F28 )->queryInterface( 170B3BE8, 0018EAD8 )
    0x000019C0 14495 3  XPCOM R: ( (dsIProperty*)17020F28 )->queryInterface( 170B3BE8, *0018EAD8 = 17020F94 ) = 0x00000000
    0x000019C0 14495 3  XPCOM C: ( (dsINode*)17020F94 )->queryInterface( 170B3BE8, 0018EAD8 )
    0x000019C0 14495 3  XPCOM R: ( (dsINode*)17020F94 )->queryInterface( 170B3BE8, *0018EAD8 = 17020F94 ) = 0x00000000
    0x000019C0 14495 3  XPCOM C: ( (dsINode*)17020F94 )->getChildren( 0018EB18 )
    0x000019C0 14495 3  XPCOM R: ( (dsINode*)17020F94 )->getChildren( *0018EB18 = 17033730 ) = 0x00000000
    0x000019C0 14495 3  XPCOM C: ( (dsIProperties*)17033730 )->Count( 0018EB78 )
    0x000019C0 14495 3  XPCOM R: ( (dsIProperties*)17033730 )->Count( *0018EB78 = 0x00000008 ) = 0x00000000
    0x000019C0 14495 3  XPCOM C: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000002, 0018EB58 )
    0x000019C0 14495 3  XPCOM R: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000002, *0018EB58 = 17020F28 ) = 0x00000000
    0x000019C0 14495 3  XPCOM C: ( (dsIProperty*)17020F28 )->getPropertyType( 0018EAD8 )
    0x000019C0 14495 3  XPCOM R: ( (dsIProperty*)17020F28 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 14495 3  XPCOM C: ( (dsIProperty*)17020F28 )->queryInterface( 170B40E0, 0018EAD8 )
    0x000019C0 14495 3  XPCOM R: ( (dsIProperty*)17020F28 )->queryInterface( 170B40E0, *0018EAD8 = 17020F94 ) = 0x00000000
    0x000019C0 14496 3  XPCOM C: ( (dsINode*)17020F94 )->queryInterface( 170B40E0, 0018EAD8 )
    0x000019C0 14496 3  XPCOM R: ( (dsINode*)17020F94 )->queryInterface( 170B40E0, *0018EAD8 = 17020F94 ) = 0x00000000
    0x000019C0 14496 3  XPCOM C: ( (dsINode*)17020F94 )->getChildren( 0018EB18 )
    0x000019C0 14496 3  XPCOM R: ( (dsINode*)17020F94 )->getChildren( *0018EB18 = 17033880 ) = 0x00000000
    0x000019C0 14496 3  XPCOM C: ( (dsIProperties*)17033880 )->Count( 0018EB38 )
    0x000019C0 14496 3  XPCOM R: ( (dsIProperties*)17033880 )->Count( *0018EB38 = 0x00000008 ) = 0x00000000
    0x000019C0 14496 3  XPCOM C: ( (dsIProperties*)17033880 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 14496 3  XPCOM R: ( (dsIProperties*)17033880 )->getProperty( 0x00000000, *0018EB18 = 17132ED0 ) = 0x00000000
    0x000019C0 14496 3  XPCOM C: ( (dsIProperty*)17132ED0 )->getPropertyType( 0018EA98 )
    0x000019C0 14496 3  XPCOM R: ( (dsIProperty*)17132ED0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14496 3  XPCOM C: ( (dsIProperty*)17132ED0 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 14496 3  XPCOM R: ( (dsIProperty*)17132ED0 )->queryInterface( 170B3BE8, *0018EA98 = 17132F3C ) = 0x00000000
    0x000019C0 14496 3  XPCOM C: ( (dsIGroup*)17132F3C )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 14496 3  XPCOM R: ( (dsIGroup*)17132F3C )->queryInterface( 170B3BE8, *0018EA98 = 17132F3C ) = 0x00000000
    0x000019C0 14498 3  XPCOM C: ( (dsIGroup*)17132F3C )->Name( 0018EB08 )
    0x000019C0 14498 3  XPCOM R: ( (dsIGroup*)17132F3C )->Name( *0018EB08 = OS Aware Debug Options ) = 0x00000000
    0x000019C0 14498 3  XPCOM C: ( (dsIProperties*)17033880 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 14498 3  XPCOM R: ( (dsIProperties*)17033880 )->getProperty( 0x00000000, *0018EB18 = 17132ED0 ) = 0x00000000
    0x000019C0 14498 3  XPCOM C: ( (dsIProperty*)17132ED0 )->getPropertyType( 0018EA98 )
    0x000019C0 14498 3  XPCOM R: ( (dsIProperty*)17132ED0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14498 3  XPCOM C: ( (dsIProperty*)17132ED0 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 14498 3  XPCOM R: ( (dsIProperty*)17132ED0 )->queryInterface( 170B3BE8, *0018EA98 = 17132F3C ) = 0x00000000
    0x000019C0 14498 3  XPCOM C: ( (dsIGroup*)17132F3C )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 14498 3  XPCOM R: ( (dsIGroup*)17132F3C )->queryInterface( 170B3BE8, *0018EA98 = 17132F3C ) = 0x00000000
    0x000019C0 14498 3  XPCOM C: ( (dsIGroup*)17132F3C )->getChildren( 0018EAD8 )
    0x000019C0 14498 3  XPCOM R: ( (dsIGroup*)17132F3C )->getChildren( *0018EAD8 = 170336A0 ) = 0x00000000
    0x000019C0 14498 3  XPCOM C: ( (dsIProperties*)17033880 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 14498 3  XPCOM R: ( (dsIProperties*)17033880 )->getProperty( 0x00000000, *0018EB18 = 17132ED0 ) = 0x00000000
    0x00002198 14498 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856FBB4)
    0x00002198 14498 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856FD34)
    0x00002198 14498 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 170332E4)
    0x000019C0 14498 3  XPCOM C: ( (dsIProperty*)17132ED0 )->getPropertyType( 0018EA98 )
    0x000019C0 14498 3  XPCOM R: ( (dsIProperty*)17132ED0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14498 3  XPCOM C: ( (dsIProperty*)17132ED0 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 14498 3  XPCOM R: ( (dsIProperty*)17132ED0 )->queryInterface( 170B3BE8, *0018EA98 = 17132F3C ) = 0x00000000
    0x00002198 14498 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033344)
    0x000019C0 14498 3  XPCOM C: ( (dsIGroup*)17132F3C )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 14498 3  XPCOM R: ( (dsIGroup*)17132F3C )->queryInterface( 170B3BE8, *0018EA98 = 17132F3C ) = 0x00000000
    0x00002198 14498 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033734)
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F6D4)
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F464)
    0x000019C0 14499 3  XPCOM C: ( (dsIGroup*)17132F3C )->getChildren( 0018EAD8 )
    0x000019C0 14499 3  XPCOM R: ( (dsIGroup*)17132F3C )->getChildren( *0018EAD8 = 1856F460 ) = 0x00000000
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F044)
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856E684)
    0x000019C0 14499 3  XPCOM C: ( (dsIProperties*)1856F460 )->Count( 0018EB38 )
    0x000019C0 14499 3  XPCOM R: ( (dsIProperties*)1856F460 )->Count( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 14499 3  XPCOM C: ( (dsIProperties*)17033880 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 14499 3  XPCOM R: ( (dsIProperties*)17033880 )->getProperty( 0x00000000, *0018EB18 = 17132ED0 ) = 0x00000000
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F854)
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class DebugEngine_Progress_Stream (this = 18566608)
    0x000019C0 14499 3  XPCOM C: ( (dsIProperty*)17132ED0 )->getPropertyType( 0018EA98 )
    0x000019C0 14499 3  XPCOM R: ( (dsIProperty*)17132ED0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14499 3  XPCOM C: ( (dsIProperty*)17132ED0 )->queryInterface( 125E2B60, 0018EA98 )
    0x000019C0 14499 3  XPCOM R: ( (dsIProperty*)17132ED0 )->queryInterface( 125E2B60, *0018EA98 = 17132F3C ) = 0x00000000
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033AC4)
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F0D4)
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F554)
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F4C4)
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856FCA4)
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033374)
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F884)
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856FA34)
    0x000019C0 14499 3  XPCOM C: ( (dsIGroup*)17132F3C )->queryInterface( 125E2B60, 0018EA98 )
    0x000019C0 14499 3  XPCOM R: ( (dsIGroup*)17132F3C )->queryInterface( 125E2B60, *0018EA98 = 17132F3C ) = 0x00000000
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class CExprEvaluatedEventData (this = 1855D0C0)
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class CoLValue (this = 17007710)
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17034E14)
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033494)
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856FA64)
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F224)
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033C14)
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class CExprEvaluatedEventData (this = 1855D488)
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class CoLValue (this = 17007780)
    0x00002198 14499 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033EB4)
    0x000019C0 14499 3  XPCOM C: ( (dsIGroup*)17132F3C )->getChildren( 0018EAD8 )
    0x000019C0 14499 3  XPCOM R: ( (dsIGroup*)17132F3C )->getChildren( *0018EAD8 = 17033EB0 ) = 0x00000000
    0x000019C0 14499 3  XPCOM C: ( (dsIProperties*)17033EB0 )->Count( 0018EAF8 )
    0x000019C0 14499 3  XPCOM R: ( (dsIProperties*)17033EB0 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14499 3  XPCOM C: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 14499 3  XPCOM R: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000000, *0018EAD8 = 12412EA0 ) = 0x00000000
    0x000019C0 14500 3  XPCOM C: ( (dsIProperty*)12412EA0 )->getPropertyType( 0018EA58 )
    0x000019C0 14500 3  XPCOM R: ( (dsIProperty*)12412EA0 )->getPropertyType( *0018EA58 = 0x00000003 ) = 0x00000000
    0x000019C0 14500 3  XPCOM C: ( (dsIProperty*)12412EA0 )->queryInterface( 125E5990, 0018EA58 )
    0x000019C0 14500 3  XPCOM R: ( (dsIProperty*)12412EA0 )->queryInterface( 125E5990, *0018EA58 = 12412F44 ) = 0x00000000
    0x000019C0 14500 3  XPCOM C: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 125E5990, 0018EA58 )
    0x000019C0 14500 3  XPCOM R: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 125E5990, *0018EA58 = 12412F0C ) = 0x00000000
    0x000019C0 14500 3  XPCOM C: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 125E5990, 0018EA58 )
    0x000019C0 14500 3  XPCOM R: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 125E5990, *0018EA58 = 12412F44 ) = 0x00000000
    0x000019C0 14500 3  XPCOM C: ( (dsIChoiceListProperty*)12412F44 )->Name( 0018EAC8 )
    0x000019C0 14500 3  XPCOM R: ( (dsIChoiceListProperty*)12412F44 )->Name( *0018EAC8 = Automatically load module symbols ) = 0x00000000
    0x000019C0 14500 3  XPCOM C: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 14500 3  XPCOM R: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000000, *0018EAD8 = 12412EA0 ) = 0x00000000
    0x000019C0 14500 3  XPCOM C: ( (dsIProperty*)12412EA0 )->getPropertyType( 0018EA58 )
    0x000019C0 14500 3  XPCOM R: ( (dsIProperty*)12412EA0 )->getPropertyType( *0018EA58 = 0x00000003 ) = 0x00000000
    0x000019C0 14500 3  XPCOM C: ( (dsIProperty*)12412EA0 )->queryInterface( 125E5990, 0018EA58 )
    0x000019C0 14500 3  XPCOM R: ( (dsIProperty*)12412EA0 )->queryInterface( 125E5990, *0018EA58 = 12412F44 ) = 0x00000000
    0x000019C0 14500 3  XPCOM C: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 125E5990, 0018EA58 )
    0x000019C0 14500 3  XPCOM R: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 125E5990, *0018EA58 = 12412F0C ) = 0x00000000
    0x000019C0 14500 3  XPCOM C: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 125E5990, 0018EA58 )
    0x000019C0 14500 3  XPCOM R: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 125E5990, *0018EA58 = 12412F44 ) = 0x00000000
    0x000019C0 14500 3  XPCOM C: ( (dsIProperties*)17033EB0 )->Count( 0018EAF8 )
    0x000019C0 14500 3  XPCOM R: ( (dsIProperties*)17033EB0 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14500 3  XPCOM C: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 14500 3  XPCOM R: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000001, *0018EAD8 = 12296138 ) = 0x00000000
    0x000019C0 14500 3  XPCOM C: ( (dsIProperty*)12296138 )->getPropertyType( 0018EA58 )
    0x000019C0 14500 3  XPCOM R: ( (dsIProperty*)12296138 )->getPropertyType( *0018EA58 = 0x00000004 ) = 0x00000000
    0x000019C0 14500 3  XPCOM C: ( (dsIProperty*)12296138 )->queryInterface( 125E5990, 0018EA58 )
    0x000019C0 14500 3  XPCOM R: ( (dsIProperty*)12296138 )->queryInterface( 125E5990, *0018EA58 = 122961A4 ) = 0x00000000
    0x000019C0 14500 3  XPCOM C: ( (dsIStringProperty*)122961A4 )->queryInterface( 125E5990, 0018EA58 )
    0x000019C0 14500 3  XPCOM R: ( (dsIStringProperty*)122961A4 )->queryInterface( 125E5990, *0018EA58 = 122961A4 ) = 0x00000000
    0x000019C0 14500 3  XPCOM C: ( (dsIStringProperty*)122961A4 )->Name( 0018EAC8 )
    0x000019C0 14500 3  XPCOM R: ( (dsIStringProperty*)122961A4 )->Name( *0018EAC8 = Module name list ) = 0x00000000
    0x000019C0 14500 3  XPCOM C: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 14500 3  XPCOM R: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000001, *0018EAD8 = 12296138 ) = 0x00000000
    0x000019C0 14500 3  XPCOM C: ( (dsIProperty*)12296138 )->getPropertyType( 0018EA58 )
    0x000019C0 14500 3  XPCOM R: ( (dsIProperty*)12296138 )->getPropertyType( *0018EA58 = 0x00000004 ) = 0x00000000
    0x000019C0 14500 3  XPCOM C: ( (dsIProperty*)12296138 )->queryInterface( 125E5990, 0018EA58 )
    0x000019C0 14500 3  XPCOM R: ( (dsIProperty*)12296138 )->queryInterface( 125E5990, *0018EA58 = 122961A4 ) = 0x00000000
    0x000019C0 14500 3  XPCOM C: ( (dsIStringProperty*)122961A4 )->queryInterface( 125E5990, 0018EA58 )
    0x000019C0 14500 3  XPCOM R: ( (dsIStringProperty*)122961A4 )->queryInterface( 125E5990, *0018EA58 = 122961A4 ) = 0x00000000
    0x000019C0 14500 3  XPCOM C: ( (dsIProperties*)17033EB0 )->Count( 0018EAF8 )
    0x000019C0 14501 3  XPCOM R: ( (dsIProperties*)17033EB0 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14501 3  XPCOM C: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 14501 3  XPCOM R: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000002, *0018EAD8 = 122964A8 ) = 0x00000000
    0x000019C0 14501 3  XPCOM C: ( (dsIProperty*)122964A8 )->getPropertyType( 0018EA58 )
    0x000019C0 14501 3  XPCOM R: ( (dsIProperty*)122964A8 )->getPropertyType( *0018EA58 = 0x00000004 ) = 0x00000000
    0x000019C0 14501 3  XPCOM C: ( (dsIProperty*)122964A8 )->queryInterface( 125E5990, 0018EA58 )
    0x000019C0 14501 3  XPCOM R: ( (dsIProperty*)122964A8 )->queryInterface( 125E5990, *0018EA58 = 12296514 ) = 0x00000000
    0x000019C0 14501 3  XPCOM C: ( (dsIStringProperty*)12296514 )->queryInterface( 125E5990, 0018EA58 )
    0x000019C0 14501 3  XPCOM R: ( (dsIStringProperty*)12296514 )->queryInterface( 125E5990, *0018EA58 = 12296514 ) = 0x00000000
    0x000019C0 14501 3  XPCOM C: ( (dsIStringProperty*)12296514 )->Name( 0018EAC8 )
    0x000019C0 14501 3  XPCOM R: ( (dsIStringProperty*)12296514 )->Name( *0018EAC8 = Module symbol search path ) = 0x00000000
    0x000019C0 14501 3  XPCOM C: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 14501 3  XPCOM R: ( (dsIProperties*)17033EB0 )->getProperty( 0x00000002, *0018EAD8 = 122964A8 ) = 0x00000000
    0x000019C0 14501 3  XPCOM C: ( (dsIProperty*)122964A8 )->getPropertyType( 0018EA58 )
    0x000019C0 14501 3  XPCOM R: ( (dsIProperty*)122964A8 )->getPropertyType( *0018EA58 = 0x00000004 ) = 0x00000000
    0x000019C0 14501 3  XPCOM C: ( (dsIProperty*)122964A8 )->queryInterface( 125E5990, 0018EA58 )
    0x000019C0 14501 3  XPCOM R: ( (dsIProperty*)122964A8 )->queryInterface( 125E5990, *0018EA58 = 12296514 ) = 0x00000000
    0x000019C0 14501 3  XPCOM C: ( (dsIStringProperty*)12296514 )->queryInterface( 125E5990, 0018EA58 )
    0x000019C0 14501 3  XPCOM R: ( (dsIStringProperty*)12296514 )->queryInterface( 125E5990, *0018EA58 = 12296514 ) = 0x00000000
    0x000019C0 14501 3  XPCOM C: ( (dsIProperties*)17033EB0 )->Count( 0018EAF8 )
    0x000019C0 14501 3  XPCOM R: ( (dsIProperties*)17033EB0 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14501 3  XPCOM C: ( (dsIProperties*)17033880 )->Count( 0018EB38 )
    0x000019C0 14501 3  XPCOM R: ( (dsIProperties*)17033880 )->Count( *0018EB38 = 0x00000008 ) = 0x00000000
    0x000019C0 14501 3  XPCOM C: ( (dsIProperties*)17033880 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 14501 3  XPCOM R: ( (dsIProperties*)17033880 )->getProperty( 0x00000001, *0018EB18 = 1702F868 ) = 0x00000000
    0x000019C0 14501 3  XPCOM C: ( (dsIProperty*)1702F868 )->getPropertyType( 0018EA98 )
    0x000019C0 14501 3  XPCOM R: ( (dsIProperty*)1702F868 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 14501 3  XPCOM C: ( (dsIProperty*)1702F868 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14501 3  XPCOM R: ( (dsIProperty*)1702F868 )->queryInterface( 125E5990, *0018EA98 = 1702F8D4 ) = 0x00000000
    0x000019C0 14501 3  XPCOM C: ( (dsIBooleanProperty*)1702F8D4 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14501 3  XPCOM R: ( (dsIBooleanProperty*)1702F8D4 )->queryInterface( 125E5990, *0018EA98 = 1702F8D4 ) = 0x00000000
    0x000019C0 14501 3  XPCOM C: ( (dsIBooleanProperty*)1702F8D4 )->Name( 0018EB08 )
    0x000019C0 14501 3  XPCOM R: ( (dsIBooleanProperty*)1702F8D4 )->Name( *0018EB08 = Simulators will flush the pipeline on a halt ) = 0x00000000
    0x000019C0 14501 3  XPCOM C: ( (dsIProperties*)17033880 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 14501 3  XPCOM R: ( (dsIProperties*)17033880 )->getProperty( 0x00000001, *0018EB18 = 1702F868 ) = 0x00000000
    0x000019C0 14501 3  XPCOM C: ( (dsIProperty*)1702F868 )->getPropertyType( 0018EA98 )
    0x000019C0 14501 3  XPCOM R: ( (dsIProperty*)1702F868 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 14501 3  XPCOM C: ( (dsIProperty*)1702F868 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14501 3  XPCOM R: ( (dsIProperty*)1702F868 )->queryInterface( 125E5990, *0018EA98 = 1702F8D4 ) = 0x00000000
    0x000019C0 14501 3  XPCOM C: ( (dsIBooleanProperty*)1702F8D4 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14501 3  XPCOM R: ( (dsIBooleanProperty*)1702F8D4 )->queryInterface( 125E5990, *0018EA98 = 1702F8D4 ) = 0x00000000
    0x000019C0 14501 3  XPCOM C: ( (dsIProperties*)17033880 )->Count( 0018EB38 )
    0x000019C0 14501 3  XPCOM R: ( (dsIProperties*)17033880 )->Count( *0018EB38 = 0x00000008 ) = 0x00000000
    0x000019C0 14501 3  XPCOM C: ( (dsIProperties*)17033880 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 14501 3  XPCOM R: ( (dsIProperties*)17033880 )->getProperty( 0x00000002, *0018EB18 = 1702F8F0 ) = 0x00000000
    0x000019C0 14502 3  XPCOM C: ( (dsIProperty*)1702F8F0 )->getPropertyType( 0018EA98 )
    0x000019C0 14502 3  XPCOM R: ( (dsIProperty*)1702F8F0 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 14502 3  XPCOM C: ( (dsIProperty*)1702F8F0 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14502 3  XPCOM R: ( (dsIProperty*)1702F8F0 )->queryInterface( 125E5990, *0018EA98 = 1702F95C ) = 0x00000000
    0x000019C0 14502 3  XPCOM C: ( (dsIBooleanProperty*)1702F95C )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14502 3  XPCOM R: ( (dsIBooleanProperty*)1702F95C )->queryInterface( 125E5990, *0018EA98 = 1702F95C ) = 0x00000000
    0x000019C0 14502 3  XPCOM C: ( (dsIBooleanProperty*)1702F95C )->Name( 0018EB08 )
    0x000019C0 14502 3  XPCOM R: ( (dsIBooleanProperty*)1702F95C )->Name( *0018EB08 = Automatically step over functions without debug information when source stepping ) = 0x00000000
    0x000019C0 14502 3  XPCOM C: ( (dsIProperties*)17033880 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 14502 3  XPCOM R: ( (dsIProperties*)17033880 )->getProperty( 0x00000002, *0018EB18 = 1702F8F0 ) = 0x00000000
    0x000019C0 14502 3  XPCOM C: ( (dsIProperty*)1702F8F0 )->getPropertyType( 0018EA98 )
    0x000019C0 14502 3  XPCOM R: ( (dsIProperty*)1702F8F0 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 14502 3  XPCOM C: ( (dsIProperty*)1702F8F0 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14502 3  XPCOM R: ( (dsIProperty*)1702F8F0 )->queryInterface( 125E5990, *0018EA98 = 1702F95C ) = 0x00000000
    0x000019C0 14502 3  XPCOM C: ( (dsIBooleanProperty*)1702F95C )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14502 3  XPCOM R: ( (dsIBooleanProperty*)1702F95C )->queryInterface( 125E5990, *0018EA98 = 1702F95C ) = 0x00000000
    0x000019C0 14502 3  XPCOM C: ( (dsIProperties*)17033880 )->Count( 0018EB38 )
    0x000019C0 14502 3  XPCOM R: ( (dsIProperties*)17033880 )->Count( *0018EB38 = 0x00000008 ) = 0x00000000
    0x000019C0 14502 3  XPCOM C: ( (dsIProperties*)17033880 )->getProperty( 0x00000003, 0018EB18 )
    0x000019C0 14502 3  XPCOM R: ( (dsIProperties*)17033880 )->getProperty( 0x00000003, *0018EB18 = 1702FA88 ) = 0x00000000
    0x000019C0 14502 3  XPCOM C: ( (dsIProperty*)1702FA88 )->getPropertyType( 0018EA98 )
    0x000019C0 14502 3  XPCOM R: ( (dsIProperty*)1702FA88 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 14502 3  XPCOM C: ( (dsIProperty*)1702FA88 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14502 3  XPCOM R: ( (dsIProperty*)1702FA88 )->queryInterface( 125E5990, *0018EA98 = 1702FAF4 ) = 0x00000000
    0x000019C0 14502 3  XPCOM C: ( (dsIBooleanProperty*)1702FAF4 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14502 3  XPCOM R: ( (dsIBooleanProperty*)1702FAF4 )->queryInterface( 125E5990, *0018EA98 = 1702FAF4 ) = 0x00000000
    0x000019C0 14502 3  XPCOM C: ( (dsIBooleanProperty*)1702FAF4 )->Name( 0018EB08 )
    0x000019C0 14502 3  XPCOM R: ( (dsIBooleanProperty*)1702FAF4 )->Name( *0018EB08 = Allow power transitions while running if supported (low power running) ) = 0x00000000
    0x000019C0 14502 3  XPCOM C: ( (dsIProperties*)17033880 )->getProperty( 0x00000003, 0018EB18 )
    0x000019C0 14502 3  XPCOM R: ( (dsIProperties*)17033880 )->getProperty( 0x00000003, *0018EB18 = 1702FA88 ) = 0x00000000
    0x000019C0 14502 3  XPCOM C: ( (dsIProperty*)1702FA88 )->getPropertyType( 0018EA98 )
    0x000019C0 14502 3  XPCOM R: ( (dsIProperty*)1702FA88 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 14502 3  XPCOM C: ( (dsIProperty*)1702FA88 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14502 3  XPCOM R: ( (dsIProperty*)1702FA88 )->queryInterface( 125E5990, *0018EA98 = 1702FAF4 ) = 0x00000000
    0x000019C0 14502 3  XPCOM C: ( (dsIBooleanProperty*)1702FAF4 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14502 3  XPCOM R: ( (dsIBooleanProperty*)1702FAF4 )->queryInterface( 125E5990, *0018EA98 = 1702FAF4 ) = 0x00000000
    0x000019C0 14502 3  XPCOM C: ( (dsIProperties*)17033880 )->Count( 0018EB38 )
    0x000019C0 14502 3  XPCOM R: ( (dsIProperties*)17033880 )->Count( *0018EB38 = 0x00000008 ) = 0x00000000
    0x000019C0 14502 3  XPCOM C: ( (dsIProperties*)17033880 )->getProperty( 0x00000004, 0018EB18 )
    0x000019C0 14502 3  XPCOM R: ( (dsIProperties*)17033880 )->getProperty( 0x00000004, *0018EB18 = 1702FB10 ) = 0x00000000
    0x000019C0 14502 3  XPCOM C: ( (dsIProperty*)1702FB10 )->getPropertyType( 0018EA98 )
    0x000019C0 14502 3  XPCOM R: ( (dsIProperty*)1702FB10 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 14502 3  XPCOM C: ( (dsIProperty*)1702FB10 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14503 3  XPCOM R: ( (dsIProperty*)1702FB10 )->queryInterface( 125E5990, *0018EA98 = 1702FB7C ) = 0x00000000
    0x000019C0 14503 3  XPCOM C: ( (dsIBooleanProperty*)1702FB7C )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14503 3  XPCOM R: ( (dsIBooleanProperty*)1702FB7C )->queryInterface( 125E5990, *0018EA98 = 1702FB7C ) = 0x00000000
    0x000019C0 14503 3  XPCOM C: ( (dsIBooleanProperty*)1702FB7C )->Name( 0018EB08 )
    0x000019C0 14503 3  XPCOM R: ( (dsIBooleanProperty*)1702FB7C )->Name( *0018EB08 = Add timestamp information to target output ) = 0x00000000
    0x000019C0 14503 3  XPCOM C: ( (dsIProperties*)17033880 )->getProperty( 0x00000004, 0018EB18 )
    0x000019C0 14503 3  XPCOM R: ( (dsIProperties*)17033880 )->getProperty( 0x00000004, *0018EB18 = 1702FB10 ) = 0x00000000
    0x000019C0 14503 3  XPCOM C: ( (dsIProperty*)1702FB10 )->getPropertyType( 0018EA98 )
    0x000019C0 14503 3  XPCOM R: ( (dsIProperty*)1702FB10 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 14503 3  XPCOM C: ( (dsIProperty*)1702FB10 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14503 3  XPCOM R: ( (dsIProperty*)1702FB10 )->queryInterface( 125E5990, *0018EA98 = 1702FB7C ) = 0x00000000
    0x000019C0 14503 3  XPCOM C: ( (dsIBooleanProperty*)1702FB7C )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14503 3  XPCOM R: ( (dsIBooleanProperty*)1702FB7C )->queryInterface( 125E5990, *0018EA98 = 1702FB7C ) = 0x00000000
    0x000019C0 14503 3  XPCOM C: ( (dsIProperties*)17033880 )->Count( 0018EB38 )
    0x000019C0 14503 3  XPCOM R: ( (dsIProperties*)17033880 )->Count( *0018EB38 = 0x00000008 ) = 0x00000000
    0x000019C0 14503 3  XPCOM C: ( (dsIProperties*)17033880 )->getProperty( 0x00000005, 0018EB18 )
    0x000019C0 14503 3  XPCOM R: ( (dsIProperties*)17033880 )->getProperty( 0x00000005, *0018EB18 = 1702FB98 ) = 0x00000000
    0x000019C0 14503 3  XPCOM C: ( (dsIProperty*)1702FB98 )->getPropertyType( 0018EA98 )
    0x000019C0 14503 3  XPCOM R: ( (dsIProperty*)1702FB98 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 14503 3  XPCOM C: ( (dsIProperty*)1702FB98 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14503 3  XPCOM R: ( (dsIProperty*)1702FB98 )->queryInterface( 125E5990, *0018EA98 = 1702FC04 ) = 0x00000000
    0x000019C0 14503 3  XPCOM C: ( (dsIBooleanProperty*)1702FC04 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14503 3  XPCOM R: ( (dsIBooleanProperty*)1702FC04 )->queryInterface( 125E5990, *0018EA98 = 1702FC04 ) = 0x00000000
    0x000019C0 14503 3  XPCOM C: ( (dsIBooleanProperty*)1702FC04 )->Name( 0018EB08 )
    0x000019C0 14503 3  XPCOM R: ( (dsIBooleanProperty*)1702FC04 )->Name( *0018EB08 = Allow software breakpoints to be used ) = 0x00000000
    0x000019C0 14503 3  XPCOM C: ( (dsIProperties*)17033880 )->getProperty( 0x00000005, 0018EB18 )
    0x000019C0 14503 3  XPCOM R: ( (dsIProperties*)17033880 )->getProperty( 0x00000005, *0018EB18 = 1702FB98 ) = 0x00000000
    0x000019C0 14503 3  XPCOM C: ( (dsIProperty*)1702FB98 )->getPropertyType( 0018EA98 )
    0x000019C0 14503 3  XPCOM R: ( (dsIProperty*)1702FB98 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 14503 3  XPCOM C: ( (dsIProperty*)1702FB98 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14503 3  XPCOM R: ( (dsIProperty*)1702FB98 )->queryInterface( 125E5990, *0018EA98 = 1702FC04 ) = 0x00000000
    0x000019C0 14503 3  XPCOM C: ( (dsIBooleanProperty*)1702FC04 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14503 3  XPCOM R: ( (dsIBooleanProperty*)1702FC04 )->queryInterface( 125E5990, *0018EA98 = 1702FC04 ) = 0x00000000
    0x000019C0 14503 3  XPCOM C: ( (dsIProperties*)17033880 )->Count( 0018EB38 )
    0x000019C0 14503 3  XPCOM R: ( (dsIProperties*)17033880 )->Count( *0018EB38 = 0x00000008 ) = 0x00000000
    0x000019C0 14503 3  XPCOM C: ( (dsIProperties*)17033880 )->getProperty( 0x00000006, 0018EB18 )
    0x000019C0 14503 3  XPCOM R: ( (dsIProperties*)17033880 )->getProperty( 0x00000006, *0018EB18 = 122971B8 ) = 0x00000000
    0x000019C0 14503 3  XPCOM C: ( (dsIProperty*)122971B8 )->getPropertyType( 0018EA98 )
    0x000019C0 14503 3  XPCOM R: ( (dsIProperty*)122971B8 )->getPropertyType( *0018EA98 = 0x00000004 ) = 0x00000000
    0x000019C0 14503 3  XPCOM C: ( (dsIProperty*)122971B8 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14503 3  XPCOM R: ( (dsIProperty*)122971B8 )->queryInterface( 125E5990, *0018EA98 = 12297224 ) = 0x00000000
    0x000019C0 14503 3  XPCOM C: ( (dsIStringProperty*)12297224 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14503 3  XPCOM R: ( (dsIStringProperty*)12297224 )->queryInterface( 125E5990, *0018EA98 = 12297224 ) = 0x00000000
    0x000019C0 14503 3  XPCOM C: ( (dsIStringProperty*)12297224 )->Name( 0018EB08 )
    0x000019C0 14503 3  XPCOM R: ( (dsIStringProperty*)12297224 )->Name( *0018EB08 = Default directory for File IO:  ) = 0x00000000
    0x000019C0 14504 3  XPCOM C: ( (dsIProperties*)17033880 )->getProperty( 0x00000006, 0018EB18 )
    0x000019C0 14504 3  XPCOM R: ( (dsIProperties*)17033880 )->getProperty( 0x00000006, *0018EB18 = 122971B8 ) = 0x00000000
    0x000019C0 14504 3  XPCOM C: ( (dsIProperty*)122971B8 )->getPropertyType( 0018EA98 )
    0x000019C0 14504 3  XPCOM R: ( (dsIProperty*)122971B8 )->getPropertyType( *0018EA98 = 0x00000004 ) = 0x00000000
    0x000019C0 14504 3  XPCOM C: ( (dsIProperty*)122971B8 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14504 3  XPCOM R: ( (dsIProperty*)122971B8 )->queryInterface( 125E5990, *0018EA98 = 12297224 ) = 0x00000000
    0x000019C0 14504 3  XPCOM C: ( (dsIStringProperty*)12297224 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14504 3  XPCOM R: ( (dsIStringProperty*)12297224 )->queryInterface( 125E5990, *0018EA98 = 12297224 ) = 0x00000000
    0x000019C0 14504 3  XPCOM C: ( (dsIProperties*)17033880 )->Count( 0018EB38 )
    0x000019C0 14504 3  XPCOM R: ( (dsIProperties*)17033880 )->Count( *0018EB38 = 0x00000008 ) = 0x00000000
    0x000019C0 14504 3  XPCOM C: ( (dsIProperties*)17033880 )->getProperty( 0x00000007, 0018EB18 )
    0x000019C0 14504 3  XPCOM R: ( (dsIProperties*)17033880 )->getProperty( 0x00000007, *0018EB18 = 12412420 ) = 0x00000000
    0x000019C0 14504 3  XPCOM C: ( (dsIProperty*)12412420 )->getPropertyType( 0018EA98 )
    0x000019C0 14504 3  XPCOM R: ( (dsIProperty*)12412420 )->getPropertyType( *0018EA98 = 0x00000003 ) = 0x00000000
    0x000019C0 14504 3  XPCOM C: ( (dsIProperty*)12412420 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14504 3  XPCOM R: ( (dsIProperty*)12412420 )->queryInterface( 125E5990, *0018EA98 = 124124C4 ) = 0x00000000
    0x000019C0 14504 3  XPCOM C: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14504 3  XPCOM R: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 125E5990, *0018EA98 = 1241248C ) = 0x00000000
    0x000019C0 14504 3  XPCOM C: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14504 3  XPCOM R: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 125E5990, *0018EA98 = 124124C4 ) = 0x00000000
    0x000019C0 14504 3  XPCOM C: ( (dsIChoiceListProperty*)124124C4 )->Name( 0018EB08 )
    0x000019C0 14504 3  XPCOM R: ( (dsIChoiceListProperty*)124124C4 )->Name( *0018EB08 = When added to a sync group: ) = 0x00000000
    0x000019C0 14504 3  XPCOM C: ( (dsIProperties*)17033880 )->getProperty( 0x00000007, 0018EB18 )
    0x000019C0 14504 3  XPCOM R: ( (dsIProperties*)17033880 )->getProperty( 0x00000007, *0018EB18 = 12412420 ) = 0x00000000
    0x000019C0 14504 3  XPCOM C: ( (dsIProperty*)12412420 )->getPropertyType( 0018EA98 )
    0x000019C0 14504 3  XPCOM R: ( (dsIProperty*)12412420 )->getPropertyType( *0018EA98 = 0x00000003 ) = 0x00000000
    0x000019C0 14504 3  XPCOM C: ( (dsIProperty*)12412420 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14504 3  XPCOM R: ( (dsIProperty*)12412420 )->queryInterface( 125E5990, *0018EA98 = 124124C4 ) = 0x00000000
    0x000019C0 14504 3  XPCOM C: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14504 3  XPCOM R: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 125E5990, *0018EA98 = 1241248C ) = 0x00000000
    0x000019C0 14504 3  XPCOM C: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14504 3  XPCOM R: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 125E5990, *0018EA98 = 124124C4 ) = 0x00000000
    0x000019C0 14504 3  XPCOM C: ( (dsIProperties*)17033880 )->Count( 0018EB38 )
    0x000019C0 14504 3  XPCOM R: ( (dsIProperties*)17033880 )->Count( *0018EB38 = 0x00000008 ) = 0x00000000
    0x000019C0 14504 3  XPCOM C: ( (dsIProperties*)1856FB50 )->Count( 0018EB78 )
    0x000019C0 14504 3  XPCOM R: ( (dsIProperties*)1856FB50 )->Count( *0018EB78 = 0x00000005 ) = 0x00000000
    0x000019C0 14504 3  XPCOM C: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000003, 0018EB58 )
    0x000019C0 14504 3  XPCOM R: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000003, *0018EB58 = 17132CB0 ) = 0x00000000
    0x000019C0 14504 3  XPCOM C: ( (dsIProperty*)17132CB0 )->getPropertyType( 0018EAD8 )
    0x000019C0 14504 3  XPCOM R: ( (dsIProperty*)17132CB0 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 14504 3  XPCOM C: ( (dsIProperty*)17132CB0 )->queryInterface( 125E5990, 0018EAD8 )
    0x000019C0 14504 3  XPCOM R: ( (dsIProperty*)17132CB0 )->queryInterface( 125E5990, *0018EAD8 = 17132D1C ) = 0x00000000
    0x000019C0 14504 3  XPCOM C: ( (dsINode*)17132D1C )->queryInterface( 125E5990, 0018EAD8 )
    0x000019C0 14504 3  XPCOM R: ( (dsINode*)17132D1C )->queryInterface( 125E5990, *0018EAD8 = 17132D1C ) = 0x00000000
    0x000019C0 14505 3  XPCOM C: ( (dsINode*)17132D1C )->Name( 0018EB48 )
    0x000019C0 14505 3  XPCOM R: ( (dsINode*)17132D1C )->Name( *0018EB48 = Cortex M Disassembly Style Options ) = 0x00000000
    0x000019C0 14505 3  XPCOM C: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000003, 0018EB58 )
    0x000019C0 14505 3  XPCOM R: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000003, *0018EB58 = 17132CB0 ) = 0x00000000
    0x000019C0 14505 3  XPCOM C: ( (dsIProperty*)17132CB0 )->getPropertyType( 0018EAD8 )
    0x000019C0 14505 3  XPCOM R: ( (dsIProperty*)17132CB0 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 14505 3  XPCOM C: ( (dsIProperty*)17132CB0 )->queryInterface( 125E5990, 0018EAD8 )
    0x000019C0 14505 3  XPCOM R: ( (dsIProperty*)17132CB0 )->queryInterface( 125E5990, *0018EAD8 = 17132D1C ) = 0x00000000
    0x000019C0 14505 3  XPCOM C: ( (dsINode*)17132D1C )->queryInterface( 125E5990, 0018EAD8 )
    0x000019C0 14505 3  XPCOM R: ( (dsINode*)17132D1C )->queryInterface( 125E5990, *0018EAD8 = 17132D1C ) = 0x00000000
    0x000019C0 14505 3  XPCOM C: ( (dsINode*)17132D1C )->getChildren( 0018EB18 )
    0x000019C0 14505 3  XPCOM R: ( (dsINode*)17132D1C )->getChildren( *0018EB18 = 17033C10 ) = 0x00000000
    0x000019C0 14505 3  XPCOM C: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000003, 0018EB58 )
    0x000019C0 14505 3  XPCOM R: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000003, *0018EB58 = 17132CB0 ) = 0x00000000
    0x000019C0 14505 3  XPCOM C: ( (dsIProperty*)17132CB0 )->getPropertyType( 0018EAD8 )
    0x000019C0 14505 3  XPCOM R: ( (dsIProperty*)17132CB0 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 14505 3  XPCOM C: ( (dsIProperty*)17132CB0 )->queryInterface( 125E5990, 0018EAD8 )
    0x000019C0 14505 3  XPCOM R: ( (dsIProperty*)17132CB0 )->queryInterface( 125E5990, *0018EAD8 = 17132D1C ) = 0x00000000
    0x000019C0 14505 3  XPCOM C: ( (dsINode*)17132D1C )->queryInterface( 125E5990, 0018EAD8 )
    0x000019C0 14505 3  XPCOM R: ( (dsINode*)17132D1C )->queryInterface( 125E5990, *0018EAD8 = 17132D1C ) = 0x00000000
    0x000019C0 14505 3  XPCOM C: ( (dsINode*)17132D1C )->getChildren( 0018EB18 )
    0x000019C0 14505 3  XPCOM R: ( (dsINode*)17132D1C )->getChildren( *0018EB18 = 17033490 ) = 0x00000000
    0x000019C0 14505 3  XPCOM C: ( (dsIProperties*)17033490 )->Count( 0018EB78 )
    0x000019C0 14505 3  XPCOM R: ( (dsIProperties*)17033490 )->Count( *0018EB78 = 0x00000001 ) = 0x00000000
    0x000019C0 14505 3  XPCOM C: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000003, 0018EB58 )
    0x000019C0 14505 3  XPCOM R: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000003, *0018EB58 = 17132CB0 ) = 0x00000000
    0x000019C0 14505 3  XPCOM C: ( (dsIProperty*)17132CB0 )->getPropertyType( 0018EAD8 )
    0x000019C0 14505 3  XPCOM R: ( (dsIProperty*)17132CB0 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 14505 3  XPCOM C: ( (dsIProperty*)17132CB0 )->queryInterface( 125E5990, 0018EAD8 )
    0x000019C0 14505 3  XPCOM R: ( (dsIProperty*)17132CB0 )->queryInterface( 125E5990, *0018EAD8 = 17132D1C ) = 0x00000000
    0x000019C0 14505 3  XPCOM C: ( (dsINode*)17132D1C )->queryInterface( 125E5990, 0018EAD8 )
    0x000019C0 14505 3  XPCOM R: ( (dsINode*)17132D1C )->queryInterface( 125E5990, *0018EAD8 = 17132D1C ) = 0x00000000
    0x000019C0 14505 3  XPCOM C: ( (dsINode*)17132D1C )->getChildren( 0018EB18 )
    0x000019C0 14505 3  XPCOM R: ( (dsINode*)17132D1C )->getChildren( *0018EB18 = 17034E10 ) = 0x00000000
    0x000019C0 14505 3  XPCOM C: ( (dsIProperties*)17034E10 )->Count( 0018EB38 )
    0x000019C0 14505 3  XPCOM R: ( (dsIProperties*)17034E10 )->Count( *0018EB38 = 0x00000001 ) = 0x00000000
    0x000019C0 14505 3  XPCOM C: ( (dsIProperties*)17034E10 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 14505 3  XPCOM R: ( (dsIProperties*)17034E10 )->getProperty( 0x00000000, *0018EB18 = 122DD968 ) = 0x00000000
    0x000019C0 14505 3  XPCOM C: ( (dsIProperty*)122DD968 )->getPropertyType( 0018EA98 )
    0x000019C0 14505 3  XPCOM R: ( (dsIProperty*)122DD968 )->getPropertyType( *0018EA98 = 0x00000003 ) = 0x00000000
    0x000019C0 14505 3  XPCOM C: ( (dsIProperty*)122DD968 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14506 3  XPCOM R: ( (dsIProperty*)122DD968 )->queryInterface( 125E5990, *0018EA98 = 122DDA0C ) = 0x00000000
    0x000019C0 14506 3  XPCOM C: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14506 3  XPCOM R: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 125E5990, *0018EA98 = 122DD9D4 ) = 0x00000000
    0x000019C0 14506 3  XPCOM C: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14506 3  XPCOM R: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 125E5990, *0018EA98 = 122DDA0C ) = 0x00000000
    0x000019C0 14506 3  XPCOM C: ( (dsIChoiceListProperty*)122DDA0C )->Name( 0018EB08 )
    0x000019C0 14506 3  XPCOM R: ( (dsIChoiceListProperty*)122DDA0C )->Name( *0018EB08 = Disassembly Mode ) = 0x00000000
    0x000019C0 14506 3  XPCOM C: ( (dsIProperties*)17034E10 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 14506 3  XPCOM R: ( (dsIProperties*)17034E10 )->getProperty( 0x00000000, *0018EB18 = 122DD968 ) = 0x00000000
    0x000019C0 14506 3  XPCOM C: ( (dsIProperty*)122DD968 )->getPropertyType( 0018EA98 )
    0x000019C0 14506 3  XPCOM R: ( (dsIProperty*)122DD968 )->getPropertyType( *0018EA98 = 0x00000003 ) = 0x00000000
    0x000019C0 14506 3  XPCOM C: ( (dsIProperty*)122DD968 )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14506 3  XPCOM R: ( (dsIProperty*)122DD968 )->queryInterface( 125E5990, *0018EA98 = 122DDA0C ) = 0x00000000
    0x000019C0 14506 3  XPCOM C: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14506 3  XPCOM R: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 125E5990, *0018EA98 = 122DD9D4 ) = 0x00000000
    0x000019C0 14506 3  XPCOM C: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 125E5990, 0018EA98 )
    0x000019C0 14506 3  XPCOM R: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 125E5990, *0018EA98 = 122DDA0C ) = 0x00000000
    0x000019C0 14506 3  XPCOM C: ( (dsIProperties*)17034E10 )->Count( 0018EB38 )
    0x000019C0 14506 3  XPCOM R: ( (dsIProperties*)17034E10 )->Count( *0018EB38 = 0x00000001 ) = 0x00000000
    0x000019C0 14506 3  XPCOM C: ( (dsIProperties*)1856FB50 )->Count( 0018EB78 )
    0x000019C0 14506 3  XPCOM R: ( (dsIProperties*)1856FB50 )->Count( *0018EB78 = 0x00000005 ) = 0x00000000
    0x000019C0 14506 3  XPCOM C: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000004, 0018EB58 )
    0x000019C0 14506 3  XPCOM R: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000004, *0018EB58 = 16F52690 ) = 0x00000000
    0x000019C0 14506 3  XPCOM C: ( (dsIProperty*)16F52690 )->getPropertyType( 0018EAD8 )
    0x000019C0 14506 3  XPCOM R: ( (dsIProperty*)16F52690 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 14506 3  XPCOM C: ( (dsIProperty*)16F52690 )->queryInterface( 125E5990, 0018EAD8 )
    0x000019C0 14506 3  XPCOM R: ( (dsIProperty*)16F52690 )->queryInterface( 125E5990, *0018EAD8 = 16F526FC ) = 0x00000000
    0x000019C0 14506 3  XPCOM C: ( (dsINode*)16F526FC )->queryInterface( 125E5990, 0018EAD8 )
    0x000019C0 14506 3  XPCOM R: ( (dsINode*)16F526FC )->queryInterface( 125E5990, *0018EAD8 = 16F526FC ) = 0x00000000
    0x000019C0 14506 3  XPCOM C: ( (dsINode*)16F526FC )->Name( 0018EB48 )
    0x000019C0 14506 3  XPCOM R: ( (dsINode*)16F526FC )->Name( *0018EB48 = Flash Settings ) = 0x00000000
    0x000019C0 14506 3  XPCOM C: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000004, 0018EB58 )
    0x000019C0 14506 3  XPCOM R: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000004, *0018EB58 = 16F52690 ) = 0x00000000
    0x000019C0 14506 3  XPCOM C: ( (dsIProperty*)16F52690 )->getPropertyType( 0018EAD8 )
    0x000019C0 14506 3  XPCOM R: ( (dsIProperty*)16F52690 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 14506 3  XPCOM C: ( (dsIProperty*)16F52690 )->queryInterface( 125E5990, 0018EAD8 )
    0x000019C0 14506 3  XPCOM R: ( (dsIProperty*)16F52690 )->queryInterface( 125E5990, *0018EAD8 = 16F526FC ) = 0x00000000
    0x000019C0 14506 3  XPCOM C: ( (dsINode*)16F526FC )->queryInterface( 125E5990, 0018EAD8 )
    0x000019C0 14506 3  XPCOM R: ( (dsINode*)16F526FC )->queryInterface( 125E5990, *0018EAD8 = 16F526FC ) = 0x00000000
    0x000019C0 14506 3  XPCOM C: ( (dsINode*)16F526FC )->getChildren( 0018EB18 )
    0x000019C0 14506 3  XPCOM R: ( (dsINode*)16F526FC )->getChildren( *0018EB18 = 17033AC0 ) = 0x00000000
    0x000019C0 14506 3  XPCOM C: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000004, 0018EB58 )
    0x000019C0 14506 3  XPCOM R: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000004, *0018EB58 = 16F52690 ) = 0x00000000
    0x000019C0 14507 3  XPCOM C: ( (dsIProperty*)16F52690 )->getPropertyType( 0018EAD8 )
    0x000019C0 14507 3  XPCOM R: ( (dsIProperty*)16F52690 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 14507 3  XPCOM C: ( (dsIProperty*)16F52690 )->queryInterface( 125E5618, 0018EAD8 )
    0x000019C0 14507 3  XPCOM R: ( (dsIProperty*)16F52690 )->queryInterface( 125E5618, *0018EAD8 = 16F526FC ) = 0x00000000
    0x000019C0 14507 3  XPCOM C: ( (dsINode*)16F526FC )->queryInterface( 125E5618, 0018EAD8 )
    0x000019C0 14507 3  XPCOM R: ( (dsINode*)16F526FC )->queryInterface( 125E5618, *0018EAD8 = 16F526FC ) = 0x00000000
    0x000019C0 14507 3  XPCOM C: ( (dsINode*)16F526FC )->getChildren( 0018EB18 )
    0x000019C0 14507 3  XPCOM R: ( (dsINode*)16F526FC )->getChildren( *0018EB18 = 17033730 ) = 0x00000000
    0x000019C0 14507 3  XPCOM C: ( (dsIProperties*)17033730 )->Count( 0018EB78 )
    0x000019C0 14507 3  XPCOM R: ( (dsIProperties*)17033730 )->Count( *0018EB78 = 0x00000009 ) = 0x00000000
    0x000019C0 14507 3  XPCOM C: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000004, 0018EB58 )
    0x000019C0 14507 3  XPCOM R: ( (dsIProperties*)1856FB50 )->getProperty( 0x00000004, *0018EB58 = 16F52690 ) = 0x00000000
    0x000019C0 14507 3  XPCOM C: ( (dsIProperty*)16F52690 )->getPropertyType( 0018EAD8 )
    0x000019C0 14507 3  XPCOM R: ( (dsIProperty*)16F52690 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 14507 3  XPCOM C: ( (dsIProperty*)16F52690 )->queryInterface( 125E5990, 0018EAD8 )
    0x000019C0 14507 3  XPCOM R: ( (dsIProperty*)16F52690 )->queryInterface( 125E5990, *0018EAD8 = 16F526FC ) = 0x00000000
    0x000019C0 14507 3  XPCOM C: ( (dsINode*)16F526FC )->queryInterface( 125E5990, 0018EAD8 )
    0x000019C0 14507 3  XPCOM R: ( (dsINode*)16F526FC )->queryInterface( 125E5990, *0018EAD8 = 16F526FC ) = 0x00000000
    0x000019C0 14507 3  XPCOM C: ( (dsINode*)16F526FC )->getChildren( 0018EB18 )
    0x000019C0 14507 3  XPCOM R: ( (dsINode*)16F526FC )->getChildren( *0018EB18 = 170332E0 ) = 0x00000000
    0x000019C0 14507 3  XPCOM C: ( (dsIProperties*)170332E0 )->Count( 0018EB38 )
    0x000019C0 14507 3  XPCOM R: ( (dsIProperties*)170332E0 )->Count( *0018EB38 = 0x00000009 ) = 0x00000000
    0x000019C0 14507 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 14507 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000000, *0018EB18 = 185E9200 ) = 0x00000000
    0x000019C0 14507 3  XPCOM C: ( (dsIProperty*)185E9200 )->getPropertyType( 0018EA98 )
    0x000019C0 14507 3  XPCOM R: ( (dsIProperty*)185E9200 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14507 3  XPCOM C: ( (dsIProperty*)185E9200 )->queryInterface( 125E5618, 0018EA98 )
    0x000019C0 14507 3  XPCOM R: ( (dsIProperty*)185E9200 )->queryInterface( 125E5618, *0018EA98 = 185E926C ) = 0x00000000
    0x000019C0 14507 3  XPCOM C: ( (dsIGroup*)185E926C )->queryInterface( 125E5618, 0018EA98 )
    0x000019C0 14507 3  XPCOM R: ( (dsIGroup*)185E926C )->queryInterface( 125E5618, *0018EA98 = 185E926C ) = 0x00000000
    0x000019C0 14507 3  XPCOM C: ( (dsIGroup*)185E926C )->Name( 0018EB08 )
    0x000019C0 14507 3  XPCOM R: ( (dsIGroup*)185E926C )->Name( *0018EB08 = Flash Settings ) = 0x00000000
    0x000019C0 14507 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 14507 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000000, *0018EB18 = 185E9200 ) = 0x00000000
    0x000019C0 14507 3  XPCOM C: ( (dsIProperty*)185E9200 )->getPropertyType( 0018EA98 )
    0x000019C0 14507 3  XPCOM R: ( (dsIProperty*)185E9200 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14507 3  XPCOM C: ( (dsIProperty*)185E9200 )->queryInterface( 125E5618, 0018EA98 )
    0x000019C0 14507 3  XPCOM R: ( (dsIProperty*)185E9200 )->queryInterface( 125E5618, *0018EA98 = 185E926C ) = 0x00000000
    0x000019C0 14507 3  XPCOM C: ( (dsIGroup*)185E926C )->queryInterface( 125E5618, 0018EA98 )
    0x000019C0 14508 3  XPCOM R: ( (dsIGroup*)185E926C )->queryInterface( 125E5618, *0018EA98 = 185E926C ) = 0x00000000
    0x000019C0 14508 3  XPCOM C: ( (dsIGroup*)185E926C )->getChildren( 0018EAD8 )
    0x000019C0 14508 3  XPCOM R: ( (dsIGroup*)185E926C )->getChildren( *0018EAD8 = 17033370 ) = 0x00000000
    0x000019C0 14508 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 14508 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000000, *0018EB18 = 185E9200 ) = 0x00000000
    0x000019C0 14508 3  XPCOM C: ( (dsIProperty*)185E9200 )->getPropertyType( 0018EA98 )
    0x000019C0 14508 3  XPCOM R: ( (dsIProperty*)185E9200 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14508 3  XPCOM C: ( (dsIProperty*)185E9200 )->queryInterface( 125E5618, 0018EA98 )
    0x000019C0 14508 3  XPCOM R: ( (dsIProperty*)185E9200 )->queryInterface( 125E5618, *0018EA98 = 185E926C ) = 0x00000000
    0x000019C0 14508 3  XPCOM C: ( (dsIGroup*)185E926C )->queryInterface( 125E5618, 0018EA98 )
    0x000019C0 14508 3  XPCOM R: ( (dsIGroup*)185E926C )->queryInterface( 125E5618, *0018EA98 = 185E926C ) = 0x00000000
    0x000019C0 14508 3  XPCOM C: ( (dsIGroup*)185E926C )->getChildren( 0018EAD8 )
    0x000019C0 14508 3  XPCOM R: ( (dsIGroup*)185E926C )->getChildren( *0018EAD8 = 170339A0 ) = 0x00000000
    0x000019C0 14508 3  XPCOM C: ( (dsIProperties*)170339A0 )->Count( 0018EB38 )
    0x000019C0 14508 3  XPCOM R: ( (dsIProperties*)170339A0 )->Count( *0018EB38 = 0x00000002 ) = 0x00000000
    0x000019C0 14508 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 14508 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000000, *0018EB18 = 185E9200 ) = 0x00000000
    0x000019C0 14508 3  XPCOM C: ( (dsIProperty*)185E9200 )->getPropertyType( 0018EA98 )
    0x000019C0 14508 3  XPCOM R: ( (dsIProperty*)185E9200 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14508 3  XPCOM C: ( (dsIProperty*)185E9200 )->queryInterface( 125E5618, 0018EA98 )
    0x000019C0 14508 3  XPCOM R: ( (dsIProperty*)185E9200 )->queryInterface( 125E5618, *0018EA98 = 185E926C ) = 0x00000000
    0x000019C0 14508 3  XPCOM C: ( (dsIGroup*)185E926C )->queryInterface( 125E5618, 0018EA98 )
    0x000019C0 14508 3  XPCOM R: ( (dsIGroup*)185E926C )->queryInterface( 125E5618, *0018EA98 = 185E926C ) = 0x00000000
    0x000019C0 14508 3  XPCOM C: ( (dsIGroup*)185E926C )->getChildren( 0018EAD8 )
    0x000019C0 14508 3  XPCOM R: ( (dsIGroup*)185E926C )->getChildren( *0018EAD8 = 17033B80 ) = 0x00000000
    0x000019C0 14508 3  XPCOM C: ( (dsIProperties*)17033B80 )->Count( 0018EAF8 )
    0x000019C0 14508 3  XPCOM R: ( (dsIProperties*)17033B80 )->Count( *0018EAF8 = 0x00000002 ) = 0x00000000
    0x000019C0 14508 3  XPCOM C: ( (dsIProperties*)17033B80 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 14508 3  XPCOM R: ( (dsIProperties*)17033B80 )->getProperty( 0x00000000, *0018EAD8 = 005AFD50 ) = 0x00000000
    0x000019C0 14508 3  XPCOM C: ( (dsIProperty*)005AFD50 )->getPropertyType( 0018EA58 )
    0x000019C0 14508 3  XPCOM R: ( (dsIProperty*)005AFD50 )->getPropertyType( *0018EA58 = 0x00000001 ) = 0x00000000
    0x000019C0 14508 3  XPCOM C: ( (dsIProperty*)005AFD50 )->queryInterface( 125E5618, 0018EA58 )
    0x000019C0 14508 3  XPCOM R: ( (dsIProperty*)005AFD50 )->queryInterface( 125E5618, *0018EA58 = 005AFDBC ) = 0x00000000
    0x000019C0 14508 3  XPCOM C: ( (dsINumericProperty*)005AFDBC )->queryInterface( 125E5618, 0018EA58 )
    0x000019C0 14508 3  XPCOM R: ( (dsINumericProperty*)005AFDBC )->queryInterface( 125E5618, *0018EA58 = 005AFDBC ) = 0x00000000
    0x000019C0 14508 3  XPCOM C: ( (dsINumericProperty*)005AFDBC )->Name( 0018EAC8 )
    0x000019C0 14508 3  XPCOM R: ( (dsINumericProperty*)005AFDBC )->Name( *0018EAC8 = Crystal Frequency: (MHz) ) = 0x00000000
    0x000019C0 14508 3  XPCOM C: ( (dsIProperties*)17033B80 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 14508 3  XPCOM R: ( (dsIProperties*)17033B80 )->getProperty( 0x00000000, *0018EAD8 = 005AFD50 ) = 0x00000000
    0x000019C0 14508 3  XPCOM C: ( (dsIProperty*)005AFD50 )->getPropertyType( 0018EA58 )
    0x000019C0 14508 3  XPCOM R: ( (dsIProperty*)005AFD50 )->getPropertyType( *0018EA58 = 0x00000001 ) = 0x00000000
    0x000019C0 14508 3  XPCOM C: ( (dsIProperty*)005AFD50 )->queryInterface( 125E5618, 0018EA58 )
    0x000019C0 14509 3  XPCOM R: ( (dsIProperty*)005AFD50 )->queryInterface( 125E5618, *0018EA58 = 005AFDBC ) = 0x00000000
    0x000019C0 14509 3  XPCOM C: ( (dsINumericProperty*)005AFDBC )->queryInterface( 125E5618, 0018EA58 )
    0x000019C0 14509 3  XPCOM R: ( (dsINumericProperty*)005AFDBC )->queryInterface( 125E5618, *0018EA58 = 005AFDBC ) = 0x00000000
    0x000019C0 14509 3  XPCOM C: ( (dsIProperties*)17033B80 )->Count( 0018EAF8 )
    0x000019C0 14509 3  XPCOM R: ( (dsIProperties*)17033B80 )->Count( *0018EAF8 = 0x00000002 ) = 0x00000000
    0x000019C0 14509 3  XPCOM C: ( (dsIProperties*)17033B80 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 14509 3  XPCOM R: ( (dsIProperties*)17033B80 )->getProperty( 0x00000001, *0018EAD8 = 185E9860 ) = 0x00000000
    0x000019C0 14509 3  XPCOM C: ( (dsIProperty*)185E9860 )->getPropertyType( 0018EA58 )
    0x000019C0 14509 3  XPCOM R: ( (dsIProperty*)185E9860 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14509 3  XPCOM C: ( (dsIProperty*)185E9860 )->queryInterface( 125E5618, 0018EA58 )
    0x000019C0 14509 3  XPCOM R: ( (dsIProperty*)185E9860 )->queryInterface( 125E5618, *0018EA58 = 185E98CC ) = 0x00000000
    0x000019C0 14509 3  XPCOM C: ( (dsIBooleanProperty*)185E98CC )->queryInterface( 125E5618, 0018EA58 )
    0x000019C0 14509 3  XPCOM R: ( (dsIBooleanProperty*)185E98CC )->queryInterface( 125E5618, *0018EA58 = 185E98CC ) = 0x00000000
    0x000019C0 14509 3  XPCOM C: ( (dsIBooleanProperty*)185E98CC )->Name( 0018EAC8 )
    0x000019C0 14509 3  XPCOM R: ( (dsIBooleanProperty*)185E98CC )->Name( *0018EAC8 = Reset target during program load to Flash memory ) = 0x00000000
    0x000019C0 14509 3  XPCOM C: ( (dsIProperties*)17033B80 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 14509 3  XPCOM R: ( (dsIProperties*)17033B80 )->getProperty( 0x00000001, *0018EAD8 = 185E9860 ) = 0x00000000
    0x000019C0 14509 3  XPCOM C: ( (dsIProperty*)185E9860 )->getPropertyType( 0018EA58 )
    0x000019C0 14509 3  XPCOM R: ( (dsIProperty*)185E9860 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14509 3  XPCOM C: ( (dsIProperty*)185E9860 )->queryInterface( 125E5618, 0018EA58 )
    0x000019C0 14509 3  XPCOM R: ( (dsIProperty*)185E9860 )->queryInterface( 125E5618, *0018EA58 = 185E98CC ) = 0x00000000
    0x000019C0 14509 3  XPCOM C: ( (dsIBooleanProperty*)185E98CC )->queryInterface( 125E5618, 0018EA58 )
    0x000019C0 14509 3  XPCOM R: ( (dsIBooleanProperty*)185E98CC )->queryInterface( 125E5618, *0018EA58 = 185E98CC ) = 0x00000000
    0x000019C0 14509 3  XPCOM C: ( (dsIProperties*)17033B80 )->Count( 0018EAF8 )
    0x000019C0 14509 3  XPCOM R: ( (dsIProperties*)17033B80 )->Count( *0018EAF8 = 0x00000002 ) = 0x00000000
    0x000019C0 14509 3  XPCOM C: ( (dsIProperties*)170332E0 )->Count( 0018EB38 )
    0x000019C0 14509 3  XPCOM R: ( (dsIProperties*)170332E0 )->Count( *0018EB38 = 0x00000009 ) = 0x00000000
    0x000019C0 14509 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 14509 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000001, *0018EB18 = 185E9288 ) = 0x00000000
    0x000019C0 14509 3  XPCOM C: ( (dsIProperty*)185E9288 )->getPropertyType( 0018EA98 )
    0x000019C0 14509 3  XPCOM R: ( (dsIProperty*)185E9288 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14509 3  XPCOM C: ( (dsIProperty*)185E9288 )->queryInterface( 125E5618, 0018EA98 )
    0x000019C0 14509 3  XPCOM R: ( (dsIProperty*)185E9288 )->queryInterface( 125E5618, *0018EA98 = 185E92F4 ) = 0x00000000
    0x000019C0 14509 3  XPCOM C: ( (dsIGroup*)185E92F4 )->queryInterface( 125E5618, 0018EA98 )
    0x000019C0 14509 3  XPCOM R: ( (dsIGroup*)185E92F4 )->queryInterface( 125E5618, *0018EA98 = 185E92F4 ) = 0x00000000
    0x000019C0 14509 3  XPCOM C: ( (dsIGroup*)185E92F4 )->Name( 0018EB08 )
    0x000019C0 14509 3  XPCOM R: ( (dsIGroup*)185E92F4 )->Name( *0018EB08 = Program Load Settings ) = 0x00000000
    0x000019C0 14509 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 14509 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000001, *0018EB18 = 185E9288 ) = 0x00000000
    0x000019C0 14509 3  XPCOM C: ( (dsIProperty*)185E9288 )->getPropertyType( 0018EA98 )
    0x000019C0 14509 3  XPCOM R: ( (dsIProperty*)185E9288 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14509 3  XPCOM C: ( (dsIProperty*)185E9288 )->queryInterface( 125E5618, 0018EA98 )
    0x000019C0 14509 3  XPCOM R: ( (dsIProperty*)185E9288 )->queryInterface( 125E5618, *0018EA98 = 185E92F4 ) = 0x00000000
    0x000019C0 14509 3  XPCOM C: ( (dsIGroup*)185E92F4 )->queryInterface( 125E5618, 0018EA98 )
    0x000019C0 14509 3  XPCOM R: ( (dsIGroup*)185E92F4 )->queryInterface( 125E5618, *0018EA98 = 185E92F4 ) = 0x00000000
    0x000019C0 14510 3  XPCOM C: ( (dsIGroup*)185E92F4 )->getChildren( 0018EAD8 )
    0x000019C0 14510 3  XPCOM R: ( (dsIGroup*)185E92F4 )->getChildren( *0018EAD8 = 17033190 ) = 0x00000000
    0x000019C0 14510 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 14510 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000001, *0018EB18 = 185E9288 ) = 0x00000000
    0x000019C0 14510 3  XPCOM C: ( (dsIProperty*)185E9288 )->getPropertyType( 0018EA98 )
    0x000019C0 14510 3  XPCOM R: ( (dsIProperty*)185E9288 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14510 3  XPCOM C: ( (dsIProperty*)185E9288 )->queryInterface( 125E5618, 0018EA98 )
    0x000019C0 14510 3  XPCOM R: ( (dsIProperty*)185E9288 )->queryInterface( 125E5618, *0018EA98 = 185E92F4 ) = 0x00000000
    0x000019C0 14510 3  XPCOM C: ( (dsIGroup*)185E92F4 )->queryInterface( 125E5618, 0018EA98 )
    0x000019C0 14510 3  XPCOM R: ( (dsIGroup*)185E92F4 )->queryInterface( 125E5618, *0018EA98 = 185E92F4 ) = 0x00000000
    0x000019C0 14510 3  XPCOM C: ( (dsIGroup*)185E92F4 )->getChildren( 0018EAD8 )
    0x000019C0 14510 3  XPCOM R: ( (dsIGroup*)185E92F4 )->getChildren( *0018EAD8 = 17033970 ) = 0x00000000
    0x000019C0 14510 3  XPCOM C: ( (dsIProperties*)17033970 )->Count( 0018EB38 )
    0x000019C0 14510 3  XPCOM R: ( (dsIProperties*)17033970 )->Count( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 14510 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 14510 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000001, *0018EB18 = 185E9288 ) = 0x00000000
    0x000019C0 14510 3  XPCOM C: ( (dsIProperty*)185E9288 )->getPropertyType( 0018EA98 )
    0x000019C0 14510 3  XPCOM R: ( (dsIProperty*)185E9288 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14510 3  XPCOM C: ( (dsIProperty*)185E9288 )->queryInterface( 125E5618, 0018EA98 )
    0x000019C0 14510 3  XPCOM R: ( (dsIProperty*)185E9288 )->queryInterface( 125E5618, *0018EA98 = 185E92F4 ) = 0x00000000
    0x000019C0 14510 3  XPCOM C: ( (dsIGroup*)185E92F4 )->queryInterface( 125E5618, 0018EA98 )
    0x000019C0 14510 3  XPCOM R: ( (dsIGroup*)185E92F4 )->queryInterface( 125E5618, *0018EA98 = 185E92F4 ) = 0x00000000
    0x000019C0 14510 3  XPCOM C: ( (dsIGroup*)185E92F4 )->getChildren( 0018EAD8 )
    0x000019C0 14510 3  XPCOM R: ( (dsIGroup*)185E92F4 )->getChildren( *0018EAD8 = 17034090 ) = 0x00000000
    0x000019C0 14510 3  XPCOM C: ( (dsIProperties*)17034090 )->Count( 0018EAF8 )
    0x000019C0 14510 3  XPCOM R: ( (dsIProperties*)17034090 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14510 3  XPCOM C: ( (dsIProperties*)17034090 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 14510 3  XPCOM R: ( (dsIProperties*)17034090 )->getProperty( 0x00000000, *0018EAD8 = 12412060 ) = 0x00000000
    0x000019C0 14510 3  XPCOM C: ( (dsIProperty*)12412060 )->getPropertyType( 0018EA58 )
    0x000019C0 14510 3  XPCOM R: ( (dsIProperty*)12412060 )->getPropertyType( *0018EA58 = 0x00000003 ) = 0x00000000
    0x000019C0 14510 3  XPCOM C: ( (dsIProperty*)12412060 )->queryInterface( 125E5618, 0018EA58 )
    0x000019C0 14510 3  XPCOM R: ( (dsIProperty*)12412060 )->queryInterface( 125E5618, *0018EA58 = 12412104 ) = 0x00000000
    0x000019C0 14510 3  XPCOM C: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 125E5618, 0018EA58 )
    0x000019C0 14510 3  XPCOM R: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 125E5618, *0018EA58 = 124120CC ) = 0x00000000
    0x000019C0 14510 3  XPCOM C: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 125E5618, 0018EA58 )
    0x000019C0 14510 3  XPCOM R: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 125E5618, *0018EA58 = 12412104 ) = 0x00000000
    0x000019C0 14510 3  XPCOM C: ( (dsIChoiceListProperty*)12412104 )->Name( 0018EAC8 )
    0x000019C0 14510 3  XPCOM R: ( (dsIChoiceListProperty*)12412104 )->Name( *0018EAC8 = Erase Method ) = 0x00000000
    0x000019C0 14510 3  XPCOM C: ( (dsIProperties*)17034090 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 14510 3  XPCOM R: ( (dsIProperties*)17034090 )->getProperty( 0x00000000, *0018EAD8 = 12412060 ) = 0x00000000
    0x000019C0 14510 3  XPCOM C: ( (dsIProperty*)12412060 )->getPropertyType( 0018EA58 )
    0x000019C0 14510 3  XPCOM R: ( (dsIProperty*)12412060 )->getPropertyType( *0018EA58 = 0x00000003 ) = 0x00000000
    0x000019C0 14511 3  XPCOM C: ( (dsIProperty*)12412060 )->queryInterface( 125E5618, 0018EA58 )
    0x000019C0 14511 3  XPCOM R: ( (dsIProperty*)12412060 )->queryInterface( 125E5618, *0018EA58 = 12412104 ) = 0x00000000
    0x000019C0 14511 3  XPCOM C: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 125E5618, 0018EA58 )
    0x000019C0 14511 3  XPCOM R: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 125E5618, *0018EA58 = 124120CC ) = 0x00000000
    0x000019C0 14511 3  XPCOM C: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 125E5618, 0018EA58 )
    0x000019C0 14511 3  XPCOM R: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 125E5618, *0018EA58 = 12412104 ) = 0x00000000
    0x000019C0 14511 3  XPCOM C: ( (dsIProperties*)17034090 )->Count( 0018EAF8 )
    0x000019C0 14511 3  XPCOM R: ( (dsIProperties*)17034090 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14511 3  XPCOM C: ( (dsIProperties*)17034090 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 14511 3  XPCOM R: ( (dsIProperties*)17034090 )->getProperty( 0x00000001, *0018EAD8 = 185E98E8 ) = 0x00000000
    0x000019C0 14511 3  XPCOM C: ( (dsIProperty*)185E98E8 )->getPropertyType( 0018EA58 )
    0x000019C0 14511 3  XPCOM R: ( (dsIProperty*)185E98E8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14511 3  XPCOM C: ( (dsIProperty*)185E98E8 )->queryInterface( 125E5618, 0018EA58 )
    0x000019C0 14511 3  XPCOM R: ( (dsIProperty*)185E98E8 )->queryInterface( 125E5618, *0018EA58 = 185E9954 ) = 0x00000000
    0x000019C0 14511 3  XPCOM C: ( (dsIBooleanProperty*)185E9954 )->queryInterface( 125E5618, 0018EA58 )
    0x000019C0 14511 3  XPCOM R: ( (dsIBooleanProperty*)185E9954 )->queryInterface( 125E5618, *0018EA58 = 185E9954 ) = 0x00000000
    0x000019C0 14511 3  XPCOM C: ( (dsIBooleanProperty*)185E9954 )->Name( 0018EAC8 )
    0x000019C0 14511 3  XPCOM R: ( (dsIBooleanProperty*)185E9954 )->Name( *0018EAC8 = Perform Blank Check on Flash memory before load program ) = 0x00000000
    0x000019C0 14511 3  XPCOM C: ( (dsIProperties*)17034090 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 14511 3  XPCOM R: ( (dsIProperties*)17034090 )->getProperty( 0x00000001, *0018EAD8 = 185E98E8 ) = 0x00000000
    0x000019C0 14511 3  XPCOM C: ( (dsIProperty*)185E98E8 )->getPropertyType( 0018EA58 )
    0x000019C0 14511 3  XPCOM R: ( (dsIProperty*)185E98E8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14511 3  XPCOM C: ( (dsIProperty*)185E98E8 )->queryInterface( 125E5618, 0018EA58 )
    0x000019C0 14511 3  XPCOM R: ( (dsIProperty*)185E98E8 )->queryInterface( 125E5618, *0018EA58 = 185E9954 ) = 0x00000000
    0x000019C0 14511 3  XPCOM C: ( (dsIBooleanProperty*)185E9954 )->queryInterface( 125E5618, 0018EA58 )
    0x000019C0 14511 3  XPCOM R: ( (dsIBooleanProperty*)185E9954 )->queryInterface( 125E5618, *0018EA58 = 185E9954 ) = 0x00000000
    0x000019C0 14511 3  XPCOM C: ( (dsIProperties*)17034090 )->Count( 0018EAF8 )
    0x000019C0 14511 3  XPCOM R: ( (dsIProperties*)17034090 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14511 3  XPCOM C: ( (dsIProperties*)17034090 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 14511 3  XPCOM R: ( (dsIProperties*)17034090 )->getProperty( 0x00000002, *0018EAD8 = 16EF8CD8 ) = 0x00000000
    0x000019C0 14511 3  XPCOM C: ( (dsIProperty*)16EF8CD8 )->getPropertyType( 0018EA58 )
    0x000019C0 14511 3  XPCOM R: ( (dsIProperty*)16EF8CD8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14511 3  XPCOM C: ( (dsIProperty*)16EF8CD8 )->queryInterface( 125E5618, 0018EA58 )
    0x000019C0 14511 3  XPCOM R: ( (dsIProperty*)16EF8CD8 )->queryInterface( 125E5618, *0018EA58 = 16EF8D44 ) = 0x00000000
    0x000019C0 14511 3  XPCOM C: ( (dsIBooleanProperty*)16EF8D44 )->queryInterface( 125E5618, 0018EA58 )
    0x000019C0 14511 3  XPCOM R: ( (dsIBooleanProperty*)16EF8D44 )->queryInterface( 125E5618, *0018EA58 = 16EF8D44 ) = 0x00000000
    0x000019C0 14511 3  XPCOM C: ( (dsIBooleanProperty*)16EF8D44 )->Name( 0018EAC8 )
    0x000019C0 14511 3  XPCOM R: ( (dsIBooleanProperty*)16EF8D44 )->Name( *0018EAC8 = Calculate CRC32 on entire Flash Memory after load program ) = 0x00000000
    0x000019C0 14511 3  XPCOM C: ( (dsIProperties*)17034090 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 14511 3  XPCOM R: ( (dsIProperties*)17034090 )->getProperty( 0x00000002, *0018EAD8 = 16EF8CD8 ) = 0x00000000
    0x000019C0 14511 3  XPCOM C: ( (dsIProperty*)16EF8CD8 )->getPropertyType( 0018EA58 )
    0x000019C0 14511 3  XPCOM R: ( (dsIProperty*)16EF8CD8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 14511 3  XPCOM C: ( (dsIProperty*)16EF8CD8 )->queryInterface( 125E5618, 0018EA58 )
    0x000019C0 14511 3  XPCOM R: ( (dsIProperty*)16EF8CD8 )->queryInterface( 125E5618, *0018EA58 = 16EF8D44 ) = 0x00000000
    0x000019C0 14512 3  XPCOM C: ( (dsIBooleanProperty*)16EF8D44 )->queryInterface( 125E5618, 0018EA58 )
    0x000019C0 14512 3  XPCOM R: ( (dsIBooleanProperty*)16EF8D44 )->queryInterface( 125E5618, *0018EA58 = 16EF8D44 ) = 0x00000000
    0x000019C0 14512 3  XPCOM C: ( (dsIProperties*)17034090 )->Count( 0018EAF8 )
    0x000019C0 14512 3  XPCOM R: ( (dsIProperties*)17034090 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 14512 3  XPCOM C: ( (dsIProperties*)170332E0 )->Count( 0018EB38 )
    0x000019C0 14512 3  XPCOM R: ( (dsIProperties*)170332E0 )->Count( *0018EB38 = 0x00000009 ) = 0x00000000
    0x000019C0 14512 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 14512 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000002, *0018EB18 = 185E9310 ) = 0x00000000
    0x000019C0 14512 3  XPCOM C: ( (dsIProperty*)185E9310 )->getPropertyType( 0018EA98 )
    0x000019C0 14512 3  XPCOM R: ( (dsIProperty*)185E9310 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14512 3  XPCOM C: ( (dsIProperty*)185E9310 )->queryInterface( 125E5618, 0018EA98 )
    0x000019C0 14512 3  XPCOM R: ( (dsIProperty*)185E9310 )->queryInterface( 125E5618, *0018EA98 = 185E937C ) = 0x00000000
    0x000019C0 14512 3  XPCOM C: ( (dsIGroup*)185E937C )->queryInterface( 125E5618, 0018EA98 )
    0x000019C0 14512 3  XPCOM R: ( (dsIGroup*)185E937C )->queryInterface( 125E5618, *0018EA98 = 185E937C ) = 0x00000000
    0x000019C0 14512 3  XPCOM C: ( (dsIGroup*)185E937C )->Name( 0018EB08 )
    0x000019C0 14512 3  XPCOM R: ( (dsIGroup*)185E937C )->Name( *0018EB08 = Erase ) = 0x00000000
    0x000019C0 14512 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 14512 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000002, *0018EB18 = 185E9310 ) = 0x00000000
    0x000019C0 14512 3  XPCOM C: ( (dsIProperty*)185E9310 )->getPropertyType( 0018EA98 )
    0x000019C0 14512 3  XPCOM R: ( (dsIProperty*)185E9310 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 14512 3  XPCOM C: ( (dsIProperty*)185E9310 )->queryInterface( 125E5618, 0018EA98 )
    0x000019C0 14512 3  XPCOM R: ( (dsIProperty*)185E9310 )->queryInterface( 125E5618, *0018EA98 = 185E937C ) = 0x00000000
    0x000019C0 14512 3  XPCOM C: ( (dsIGroup*)185E937C )->queryInterface( 125E5618, 0018EA98 )
    0x000019C0 14512 3  XPCOM R: ( (dsIGroup*)185E937C )->queryInterface( 125E5618, *0018EA98 = 185E937C ) = 0x00000000
    0x000019C0 14512 3  XPCOM C: ( (dsIGroup*)185E937C )->getChildren( 0018EB68 )
    0x000019C0 14512 3  XPCOM R: ( (dsIGroup*)185E937C )->getChildren( *0018EB68 = 170332B0 ) = 0x00000000
    0x000019C0 14512 3  XPCOM C: ( (dsIProperties*)170332B0 )->Count( 0018EBC8 )
    0x000019C0 14512 3  XPCOM R: ( (dsIProperties*)170332B0 )->Count( *0018EBC8 = 0x00000004 ) = 0x00000000
    0x000019C0 14512 3  XPCOM C: ( (dsIGroup*)185E937C )->getChildren( 0018EB88 )
    0x000019C0 14512 3  XPCOM R: ( (dsIGroup*)185E937C )->getChildren( *0018EB88 = 17033F10 ) = 0x00000000
    0x000019C0 14512 3  XPCOM C: ( (dsIProperties*)17033F10 )->Count( 0018EAE8 )
    0x000019C0 14512 3  XPCOM R: ( (dsIProperties*)17033F10 )->Count( *0018EAE8 = 0x00000004 ) = 0x00000000
    0x000019C0 14512 3  XPCOM C: ( (dsIProperties*)17033F10 )->getProperty( 0x00000000, 0018EAC8 )
    0x000019C0 14512 3  XPCOM R: ( (dsIProperties*)17033F10 )->getProperty( 0x00000000, *0018EAC8 = 122DD2A8 ) = 0x00000000
    0x000019C0 14512 3  XPCOM C: ( (dsIProperty*)122DD2A8 )->getPropertyType( 0018EA48 )
    0x000019C0 14512 3  XPCOM R: ( (dsIProperty*)122DD2A8 )->getPropertyType( *0018EA48 = 0x00000003 ) = 0x00000000
    0x000019C0 14512 3  XPCOM C: ( (dsIProperty*)122DD2A8 )->queryInterface( 125E5618, 0018EA48 )
    0x000019C0 14512 3  XPCOM R: ( (dsIProperty*)122DD2A8 )->queryInterface( 125E5618, *0018EA48 = 122DD34C ) = 0x00000000
    0x000019C0 14512 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 125E5618, 0018EA48 )
    0x000019C0 14512 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 125E5618, *0018EA48 = 122DD314 ) = 0x00000000
    0x000019C0 14512 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 125E5618, 0018EA48 )
    0x000019C0 14512 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 125E5618, *0018EA48 = 122DD34C ) = 0x00000000
    0x000019C0 14513 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->Name( 0018EA58 )
    0x000019C0 14513 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->Name( *0018EA58 =  ) = 0x00000000
    0x000019C0 14513 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->NumAllowedValues( 0018EA58 )
    0x000019C0 14513 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->NumAllowedValues( *0018EA58 = 0x00000002 ) = 0x00000000
    0x000019C0 14513 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->NumAllowedValues( 0018EA58 )
    0x000019C0 14514 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->NumAllowedValues( *0018EA58 = 0x00000002 ) = 0x00000000
    0x000019C0 14514 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->getAllowedValue( 0x00000000, 0018EA58 )
    0x000019C0 14514 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->getAllowedValue( 0x00000000, *0018EA58 = Entire Flash ) = 0x00000000
    0x000019C0 14514 3  XPCOM C: ( (dsIStringProperty*)122DD314 )->CurValue( 0018EA48 )
    0x000019C0 14514 3  XPCOM R: ( (dsIStringProperty*)122DD314 )->CurValue( *0018EA48 = Entire Flash ) = 0x00000000
    0x000019C0 14514 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->Iden( 0018EA48 )
    0x000019C0 14514 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->Iden( *0018EA48 = FlashEraseType ) = 0x00000000
    0x000019C0 14514 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->DisableStatus( 0018EA58 )
    0x000019C0 14514 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->DisableStatus( *0018EA58 = false ) = 0x00000000
    0x000019C0 14514 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->NumAllowedValues( 0018EA58 )
    0x000019C0 14514 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->NumAllowedValues( *0018EA58 = 0x00000002 ) = 0x00000000
    0x000019C0 14514 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->getAllowedValue( 0x00000001, 0018EA58 )
    0x000019C0 14515 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->getAllowedValue( 0x00000001, *0018EA58 = By Address Range ) = 0x00000000
    0x000019C0 14515 3  XPCOM C: ( (dsIStringProperty*)122DD314 )->CurValue( 0018EA48 )
    0x000019C0 14515 3  XPCOM R: ( (dsIStringProperty*)122DD314 )->CurValue( *0018EA48 = Entire Flash ) = 0x00000000
    0x000019C0 14515 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->Iden( 0018EA48 )
    0x000019C0 14515 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->Iden( *0018EA48 = FlashEraseType ) = 0x00000000
    0x000019C0 14515 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->DisableStatus( 0018EA58 )
    0x000019C0 14515 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->DisableStatus( *0018EA58 = false ) = 0x00000000
    0x000019C0 14515 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->NumAllowedValues( 0018EA58 )
    0x000019C0 14515 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->NumAllowedValues( *0018EA58 = 0x00000002 ) = 0x00000000
    0x000019C0 14515 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->Iden( 0018EA48 )
    0x000019C0 14515 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->Iden( *0018EA48 = FlashEraseType ) = 0x00000000
    0x000019C0 14515 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->DisableStatus( 0018EA58 )
    0x000019C0 14515 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->DisableStatus( *0018EA58 = false ) = 0x00000000
    0x000019C0 14515 3  XPCOM C: ( (dsIProperties*)17033F10 )->Count( 0018EAE8 )
    0x000019C0 14515 3  XPCOM R: ( (dsIProperties*)17033F10 )->Count( *0018EAE8 = 0x00000004 ) = 0x00000000
    0x000019C0 14515 3  XPCOM C: ( (dsIProperties*)17033F10 )->getProperty( 0x00000001, 0018EAC8 )
    0x000019C0 14515 3  XPCOM R: ( (dsIProperties*)17033F10 )->getProperty( 0x00000001, *0018EAC8 = 12296D98 ) = 0x00000000
    0x000019C0 14516 3  XPCOM C: ( (dsIProperty*)12296D98 )->getPropertyType( 0018EA48 )
    0x000019C0 14516 3  XPCOM R: ( (dsIProperty*)12296D98 )->getPropertyType( *0018EA48 = 0x00000004 ) = 0x00000000
    0x000019C0 14516 3  XPCOM C: ( (dsIProperty*)12296D98 )->queryInterface( 125E5618, 0018EA48 )
    0x000019C0 14516 3  XPCOM R: ( (dsIProperty*)12296D98 )->queryInterface( 125E5618, *0018EA48 = 12296E04 ) = 0x00000000
    0x000019C0 14516 3  XPCOM C: ( (dsIStringProperty*)12296E04 )->queryInterface( 125E5618, 0018EA48 )
    0x000019C0 14516 3  XPCOM R: ( (dsIStringProperty*)12296E04 )->queryInterface( 125E5618, *0018EA48 = 12296E04 ) = 0x00000000
    0x000019C0 14516 3  XPCOM C: ( (dsIStringProperty*)12296E04 )->getParent( 0018E9A8 )
    0x000019C0 14516 3  XPCOM R: ( (dsIStringProperty*)12296E04 )->getParent( *0018E9A8 = 185E9310 ) = 0x00000000
    0x000019C0 14516 3  XPCOM C: ( (dsIProperty*)185E9310 )->getPropertyType( 0018E908 )
    0x000019C0 14516 3  XPCOM R: ( (dsIProperty*)185E9310 )->getPropertyType( *0018E908 = 0x00000006 ) = 0x00000000
    0x000019C0 14516 3  XPCOM C: ( (dsIProperty*)185E9310 )->queryInterface( 125E5618, 0018E908 )
    0x000019C0 14516 3  XPCOM R: ( (dsIProperty*)185E9310 )->queryInterface( 125E5618, *0018E908 = 185E937C ) = 0x00000000
    0x000019C0 14516 3  XPCOM C: ( (dsIGroup*)185E937C )->queryInterface( 125E5618, 0018E908 )
    0x000019C0 14516 3  XPCOM R: ( (dsIGroup*)185E937C )->queryInterface( 125E5618, *0018E908 = 185E937C ) = 0x00000000
    0x000019C0 14516 3  XPCOM C: ( (dsIGroup*)185E937C )->Iden( 0018E9A8 )
    0x000019C0 14516 3  XPCOM R: ( (dsIGroup*)185E937C )->Iden( *0018E9A8 = FlashEraseGroup ) = 0x00000000
    0x000019C0 14517 3  XPCOM C: ( (dsIStringProperty*)12296E04 )->Name( 0018E9F8 )
    0x000019C0 14517 3  XPCOM R: ( (dsIStringProperty*)12296E04 )->Name( *0018E9F8 = Start Address: 0x ) = 0x00000000
    0x000019C0 14517 3  XPCOM C: ( (dsIStringProperty*)12296E04 )->CurValue( 0018EA08 )
    0x000019C0 14517 3  XPCOM R: ( (dsIStringProperty*)12296E04 )->CurValue( *0018EA08 = 0 ) = 0x00000000
    0x000019C0 14517 3  XPCOM C: ( (dsIStringProperty*)12296E04 )->ReadOnly( 0018EA08 )
    0x000019C0 14517 3  XPCOM R: ( (dsIStringProperty*)12296E04 )->ReadOnly( *0018EA08 = false ) = 0x00000000
    0x000019C0 14518 3  XPCOM C: ( (dsIStringProperty*)12296E04 )->DisableStatus( 0018E9F8 )
    0x000019C0 14518 3  XPCOM R: ( (dsIStringProperty*)12296E04 )->DisableStatus( *0018E9F8 = true ) = 0x00000000
    0x000019C0 14518 3  XPCOM C: ( (dsIStringProperty*)12296E04 )->Iden( 0018E9F8 )
    0x000019C0 14518 3  XPCOM R: ( (dsIStringProperty*)12296E04 )->Iden( *0018E9F8 = FlashEraseStartAddr ) = 0x00000000
    0x000019C0 14518 3  XPCOM C: ( (dsIProperties*)17033F10 )->Count( 0018EAE8 )
    0x000019C0 14518 3  XPCOM R: ( (dsIProperties*)17033F10 )->Count( *0018EAE8 = 0x00000004 ) = 0x00000000
    0x000019C0 14518 3  XPCOM C: ( (dsIProperties*)17033F10 )->getProperty( 0x00000002, 0018EAC8 )
    0x000019C0 14518 3  XPCOM R: ( (dsIProperties*)17033F10 )->getProperty( 0x00000002, *0018EAC8 = 12296FA8 ) = 0x00000000
    0x000019C0 14518 3  XPCOM C: ( (dsIProperty*)12296FA8 )->getPropertyType( 0018EA48 )
    0x000019C0 14518 3  XPCOM R: ( (dsIProperty*)12296FA8 )->getPropertyType( *0018EA48 = 0x00000004 ) = 0x00000000
    0x000019C0 14518 3  XPCOM C: ( (dsIProperty*)12296FA8 )->queryInterface( 125E5618, 0018EA48 )
    0x000019C0 14518 3  XPCOM R: ( (dsIProperty*)12296FA8 )->queryInterface( 125E5618, *0018EA48 = 12297014 ) = 0x00000000
    0x000019C0 14518 3  XPCOM C: ( (dsIStringProperty*)12297014 )->queryInterface( 125E5618, 0018EA48 )
    0x000019C0 14518 3  XPCOM R: ( (dsIStringProperty*)12297014 )->queryInterface( 125E5618, *0018EA48 = 12297014 ) = 0x00000000
    0x000019C0 14518 3  XPCOM C: ( (dsIStringProperty*)12297014 )->getParent( 0018E9A8 )
    0x000019C0 14518 3  XPCOM R: ( (dsIStringProperty*)12297014 )->getParent( *0018E9A8 = 185E9310 ) = 0x00000000
    0x000019C0 14518 3  XPCOM C: ( (dsIProperty*)185E9310 )->getPropertyType( 0018E908 )
    0x000019C0 14518 3  XPCOM R: ( (dsIProperty*)185E9310 )->getPropertyType( *0018E908 = 0x00000006 ) = 0x00000000
    0x000019C0 14518 3  XPCOM C: ( (dsIProperty*)185E9310 )->queryInterface( 125E5618, 0018E908 )
    0x000019C0 14518 3  XPCOM R: ( (dsIProperty*)185E9310 )->queryInterface( 125E5618, *0018E908 = 185E937C ) = 0x00000000
    0x000019C0 14518 3  XPCOM C: ( (dsIGroup*)185E937C )->queryInterface( 125E5618, 0018E908 )
    0x000019C0 14518 3  XPCOM R: ( (dsIGroup*)185E937C )->queryInterface( 125E5618, *0018E908 = 185E937C ) = 0x00000000
    0x000019C0 14518 3  XPCOM C: ( (dsIGroup*)185E937C )->Iden( 0018E9A8 )
    0x000019C0 14518 3  XPCOM R: ( (dsIGroup*)185E937C )->Iden( *0018E9A8 = FlashEraseGroup ) = 0x00000000
    0x000019C0 14519 3  XPCOM C: ( (dsIStringProperty*)12297014 )->Name( 0018E9F8 )
    0x000019C0 14519 3  XPCOM R: ( (dsIStringProperty*)12297014 )->Name( *0018E9F8 = End Address: 0x ) = 0x00000000
    0x000019C0 14519 3  XPCOM C: ( (dsIStringProperty*)12297014 )->CurValue( 0018EA08 )
    0x000019C0 14519 3  XPCOM R: ( (dsIStringProperty*)12297014 )->CurValue( *0018EA08 = 0 ) = 0x00000000
    0x000019C0 14519 3  XPCOM C: ( (dsIStringProperty*)12297014 )->ReadOnly( 0018EA08 )
    0x000019C0 14519 3  XPCOM R: ( (dsIStringProperty*)12297014 )->ReadOnly( *0018EA08 = false ) = 0x00000000
    0x000019C0 14520 3  XPCOM C: ( (dsIStringProperty*)12297014 )->DisableStatus( 0018E9F8 )
    0x000019C0 14520 3  XPCOM R: ( (dsIStringProperty*)12297014 )->DisableStatus( *0018E9F8 = true ) = 0x00000000
    0x000019C0 14520 3  XPCOM C: ( (dsIStringProperty*)12297014 )->Iden( 0018E9F8 )
    0x000019C0 14520 3  XPCOM R: ( (dsIStringProperty*)12297014 )->Iden( *0018E9F8 = FlashEraseEndAddr ) = 0x00000000
    0x000019C0 14520 3  XPCOM C: ( (dsIProperties*)17033F10 )->Count( 0018EAE8 )
    0x000019C0 14520 3  XPCOM R: ( (dsIProperties*)17033F10 )->Count( *0018EAE8 = 0x00000004 ) = 0x00000000
    0x000019C0 14520 3  XPCOM C: ( (dsIProperties*)17033F10 )->getProperty( 0x00000003, 0018EAC8 )
    0x000019C0 14520 3  XPCOM R: ( (dsIProperties*)17033F10 )->getProperty( 0x00000003, *0018EAC8 = 17004988 ) = 0x00000000
    0x000019C0 14520 3  XPCOM C: ( (dsIProperty*)17004988 )->getPropertyType( 0018EA48 )
    0x000019C0 14520 3  XPCOM R: ( (dsIProperty*)17004988 )->getPropertyType( *0018EA48 = 0x00000008 ) = 0x00000000
    0x000019C0 14520 3  XPCOM C: ( (dsIProperty*)17004988 )->queryInterface( 125E5618, 0018EA48 )
    0x000019C0 14520 3  XPCOM R: ( (dsIProperty*)17004988 )->queryInterface( 125E5618, *0018EA48 = 170049F4 ) = 0x00000000
    0x000019C0 14520 3  XPCOM C: ( (dsIButton*)170049F4 )->queryInterface( 125E5618, 0018EA48 )
    0x000019C0 14520 3  XPCOM R: ( (dsIButton*)170049F4 )->queryInterface( 125E5618, *0018EA48 = 170049F4 ) = 0x00000000
    0x000019C0 14520 3  XPCOM C: ( (dsIButton*)170049F4 )->getParent( 0018E9F8 )
    0x000019C0 14520 3  XPCOM R: ( (dsIButton*)170049F4 )->getParent( *0018E9F8 = 185E9310 ) = 0x00000000
    0x000019C0 14520 3  XPCOM C: ( (dsIProperty*)185E9310 )->getPropertyType( 0018E968 )
    0x000019C0 14520 3  XPCOM R: ( (dsIProperty*)185E9310 )->getPropertyType( *0018E968 = 0x00000006 ) = 0x00000000
    0x000019C0 14520 3  XPCOM C: ( (dsIProperty*)185E9310 )->queryInterface( 125E5618, 0018E968 )
    0x000019C0 14520 3  XPCOM R: ( (dsIProperty*)185E9310 )->queryInterface( 125E5618, *0018E968 = 185E937C ) = 0x00000000
    0x000019C0 14520 3  XPCOM C: ( (dsIGroup*)185E937C )->queryInterface( 125E5618, 0018E968 )
    0x000019C0 14520 3  XPCOM R: ( (dsIGroup*)185E937C )->queryInterface( 125E5618, *0018E968 = 185E937C ) = 0x00000000
    0x000019C0 14520 3  XPCOM C: ( (dsIGroup*)185E937C )->Iden( 0018E9F8 )
    0x000019C0 14520 3  XPCOM R: ( (dsIGroup*)185E937C )->Iden( *0018E9F8 = FlashEraseGroup ) = 0x00000000
    0x000019C0 14521 3  XPCOM C: ( (dsIButton*)170049F4 )->Name( 0018EA58 )
    0x000019C0 14521 3  XPCOM R: ( (dsIButton*)170049F4 )->Name( *0018EA58 = Erase Flash ) = 0x00000000
    0x000019C0 14521 3  XPCOM C: ( (dsIButton*)170049F4 )->Iden( 0018EA48 )
    0x000019C0 14521 3  XPCOM R: ( (dsIButton*)170049F4 )->Iden( *0018EA48 = FlashEraseButton ) = 0x00000000
    0x000019C0 14521 3  XPCOM C: ( (dsIButton*)170049F4 )->DisableStatus( 0018EA58 )
    0x000019C0 14521 3  XPCOM R: ( (dsIButton*)170049F4 )->DisableStatus( *0018EA58 = false ) = 0x00000000
    0x000019C0 14521 3  XPCOM C: ( (dsIProperties*)17033F10 )->Count( 0018EAE8 )
    0x000019C0 14521 3  XPCOM R: ( (dsIProperties*)17033F10 )->Count( *0018EAE8 = 0x00000004 ) = 0x00000000
    0x000019C0 14521 3  XPCOM C: ( (dsIStringEvent*)16EE8B58 )->addListener( 125E5618 )
    0x000019C0 14522 3  XPCOM R: ( (dsIStringEvent*)16EE8B58 )->addListener( 125E5618 ) = 0x00000000
    0x000019C0 14522 3  XPCOM C: ( (dsIStringEvent*)16EE8BD8 )->addListener( 125E5D50 )
    0x000019C0 14522 3  XPCOM R: ( (dsIStringEvent*)16EE8BD8 )->addListener( 125E5D50 ) = 0x00000000
    0x00002198 14545 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIStringEvent,char const *,class dsIStringEventCallback> > (this = 1709ABE4)
    0x00002198 14545 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F824)
    0x00002198 14545 5  COM_DBG_IF I: Final Release for class XPCOMImpl::RequestCanceller (this = 122CC668)
    0x00002198 14545 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 170346C4)
    0x00002198 14545 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F704)
    0x00002198 14545 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17034C04)
    0x00002198 14545 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033794)
    0x00002198 14545 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17034784)
    0x00002198 14545 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 170340C4)
    0x00002198 14545 5  COM_DBG_IF I: Final Release for class CExprEvaluatedEventData (this = 1855D538)
    0x00002198 14545 5  COM_DBG_IF I: Final Release for class CoLValue (this = 170077F0)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856FD94)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033524)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F8B4)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class XPCOMImpl::RequestCanceller (this = 122CC628)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17034D84)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856FE24)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 170343C4)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F254)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856FC44)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17034064)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F374)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class XPCOMImpl::RequestCanceller (this = 122CCFE8)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17034BD4)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F914)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033164)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856FDC4)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856FDF4)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F8E4)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856FB24)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F584)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F344)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856EFE4)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F524)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F6A4)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class CoDspValue (this = 1709A268)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17034514)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F494)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17034C64)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F974)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F614)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033464)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 170347E4)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F4F4)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856FAC4)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17034544)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F674)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F9D4)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856FC14)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856E5F4)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856FAF4)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F644)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F134)
    0x00002198 14546 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F0A4)
    0x00002BA8 14972 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 14972 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 14972 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 14972 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 14972 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3167 ms
    0x00002BA8 14972 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 14972 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 14972 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3167 ms
    0x00002BA8 15472 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 15472 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 15472 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 15472 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 15472 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2667 ms
    0x00002BA8 15472 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 15472 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 15472 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2667 ms
    0x00002BA8 15972 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 15972 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 15972 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 15972 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 15972 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2167 ms
    0x00002BA8 15972 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 15972 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 15972 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2167 ms
    0x00002BA8 16472 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 16472 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 16472 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 16472 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 16472 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1667 ms
    0x00002BA8 16472 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 16472 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 16472 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1667 ms
    0x00002BA8 16972 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 16972 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 16972 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 16972 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 16972 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1166 ms
    0x00002BA8 16972 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 16972 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 16972 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1166 ms
    0x00002BA8 17473 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 17473 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 17473 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 17473 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 17473 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 666 ms
    0x00002BA8 17473 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 17473 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 17473 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 666 ms
    0x00002BA8 17973 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 17973 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 17973 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 17973 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 17973 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 166 ms
    0x00002BA8 17973 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 17973 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 17973 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 166 ms
    0x00002BA8 17973 4  POLL I: TimeToSleep() found shorter sleep time of 166 ms from class DevicePollFrequencyManager
    0x00002BA8 18139 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 334 ms
    0x00002BA8 18139 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 18139 3 CORTEX_M4_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 18139 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 18139 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 18139 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 334 ms
    0x00002BA8 18139 4  POLL I: TimeToSleep() found shorter sleep time of 334 ms from class DevicePollFrequencyManager
    0x00002BA8 18139 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 5000 ms
    0x00002BA8 18473 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 18473 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 18473 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 18473 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 18473 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4666 ms
    0x00002BA8 18473 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 18473 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 18473 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4666 ms
    0x00002BA8 18973 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 18973 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 18973 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 18973 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 18973 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4166 ms
    0x00002BA8 18973 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 18973 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 18973 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4166 ms
    0x00002BA8 19473 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 19473 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 19473 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 19473 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 19473 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3666 ms
    0x00002BA8 19473 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 19473 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 19473 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3666 ms
    0x00002BA8 19973 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 19973 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 19973 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 19973 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 19973 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3166 ms
    0x00002BA8 19973 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 19973 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 19973 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3166 ms
    0x00002BA8 20473 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 20473 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 20473 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 20473 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 20473 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2666 ms
    0x00002BA8 20473 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 20473 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 20473 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2666 ms
    0x00002BA8 20973 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 20973 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 20973 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 20973 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 20973 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2166 ms
    0x00002BA8 20973 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 20973 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 20973 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2166 ms
    0x00002BA8 21473 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 21473 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 21473 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 21473 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 21473 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1666 ms
    0x00002BA8 21473 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 21473 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 21473 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1666 ms
    0x000019C0 21477 3  XPCOM C: ( (dsIProcessorInfo*)0050F498 )->Partnum( 0018EC78 )
    0x000019C0 21477 3  XPCOM R: ( (dsIProcessorInfo*)0050F498 )->Partnum( *0018EC78 = TM4C123GE6PM ) = 0x00000000
    0x000019C0 21477 3  XPCOM C: ( (dsIProcessorInfo*)0050F498 )->Partnum( 0018EC88 )
    0x000019C0 21477 3  XPCOM R: ( (dsIProcessorInfo*)0050F498 )->Partnum( *0018EC88 = TM4C123GE6PM ) = 0x00000000
    0x000019C0 21477 3  XPCOM C: ( (dsITarget*)0050F488 )->TargetType( 0018EC78 )
    0x000019C0 21477 3  XPCOM R: ( (dsITarget*)0050F488 )->TargetType( *0018EC78 = TMS470REX ) = 0x00000000
    0x000019C0 21478 3  XPCOM C: ( (dsIDebugPropertiesManager*)005A3E30 )->getDebugPropertiesWithAttribute( Texas Instruments XDS100v2 USB Emulator_0/CORTEX_M4_0, TMS470REX, partnum=TM4C123GE6PM, 0018EC98 )
    0x000019C0 21478 3  XPCOM R: ( (dsIDebugPropertiesManager*)005A3E30 )->getDebugPropertiesWithAttribute( Texas Instruments XDS100v2 USB Emulator_0/CORTEX_M4_0, TMS470REX, partnum=TM4C123GE6PM, *0018EC98 = 125D0AF0 ) = 0x00000000
    0x000019C0 21478 3  XPCOM C: ( (dsIDebugProperties*)125D0AF0 )->queryInterface( 170B4158, 0018EC48 )
    0x000019C0 21478 3  XPCOM R: ( (dsIDebugProperties*)125D0AF0 )->queryInterface( 170B4158, *0018EC48 = 125D0AF4 ) = 0x00000000
    0x000019C0 21478 3  XPCOM C: ( (dsIDebugPropertiesEvents*)125D0AF4 )->onDisableStatusChanged( 0018EC28 )
    0x000019C0 21478 3  XPCOM R: ( (dsIDebugPropertiesEvents*)125D0AF4 )->onDisableStatusChanged( *0018EC28 = 16EE8B58 ) = 0x00000000
    0x000019C0 21478 3  XPCOM C: ( (dsIDebugPropertiesEvents*)125D0AF4 )->onPropertyValueChanged( 0018EC28 )
    0x000019C0 21478 3  XPCOM R: ( (dsIDebugPropertiesEvents*)125D0AF4 )->onPropertyValueChanged( *0018EC28 = 16EE8BD8 ) = 0x00000000
    0x000019C0 21478 3  XPCOM C: ( (dsIDebugProperties*)125D0AF0 )->loadSettings(  )
    0x000019C0 21479 3  XPCOM R: ( (dsIDebugProperties*)125D0AF0 )->loadSettings(  ) = 0x00000000
    0x000019C0 21479 3  XPCOM C: ( (dsIDebugProperties*)125D0AF0 )->getProperty( VerifyAfterProgramLoad, 0018EC28 )
    0x000019C0 21479 3  XPCOM R: ( (dsIDebugProperties*)125D0AF0 )->getProperty( VerifyAfterProgramLoad, *0018EC28 = 124124E0 ) = 0x00000000
    0x000019C0 21479 3  XPCOM C: ( (dsIProperty*)124124E0 )->getPropertyType( 0018EB78 )
    0x000019C0 21479 3  XPCOM R: ( (dsIProperty*)124124E0 )->getPropertyType( *0018EB78 = 0x00000003 ) = 0x00000000
    0x000019C0 21479 3  XPCOM C: ( (dsIProperty*)124124E0 )->queryInterface( 170B4158, 0018EB78 )
    0x000019C0 21479 3  XPCOM R: ( (dsIProperty*)124124E0 )->queryInterface( 170B4158, *0018EB78 = 12412584 ) = 0x00000000
    0x000019C0 21479 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B4158, 0018EB78 )
    0x000019C0 21479 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B4158, *0018EB78 = 1241254C ) = 0x00000000
    0x000019C0 21479 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B4158, 0018EB78 )
    0x000019C0 21479 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B4158, *0018EB78 = 12412584 ) = 0x00000000
    0x000019C0 21479 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( 0018EBE8 )
    0x000019C0 21479 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21479 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000000, 0018EBF8 )
    0x000019C0 21479 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000000, *0018EBF8 = Full verification ) = 0x00000000
    0x000019C0 21479 3  XPCOM C: ( (dsIStringProperty*)1241254C )->CurValue( Full verification )
    0x000019C0 21479 3  XPCOM R: ( (dsIStringProperty*)1241254C )->CurValue( Full verification ) = 0x00000000
    0x000019C0 21479 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( 0018EBE8 )
    0x000019C0 21479 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21479 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000001, 0018EBF8 )
    0x000019C0 21479 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000001, *0018EBF8 = Fast verification ) = 0x00000000
    0x000019C0 21479 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( 0018EBE8 )
    0x000019C0 21479 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21479 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000002, 0018EBF8 )
    0x000019C0 21479 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000002, *0018EBF8 = No verification ) = 0x00000000
    0x000019C0 21479 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( 0018EBE8 )
    0x000019C0 21479 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21479 3  XPCOM C: ( (dsIDebugProperties*)125D0AF0 )->getProperty( AutoRunToLabelOnRestart, 0018EC58 )
    0x000019C0 21479 3  XPCOM R: ( (dsIDebugProperties*)125D0AF0 )->getProperty( AutoRunToLabelOnRestart, *0018EC58 = 1702FDB8 ) = 0x00000000
    0x000019C0 21479 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->getPropertyType( 0018EBA8 )
    0x000019C0 21480 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->getPropertyType( *0018EBA8 = 0x00000000 ) = 0x00000000
    0x000019C0 21480 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->queryInterface( 170B4158, 0018EBA8 )
    0x000019C0 21480 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->queryInterface( 170B4158, *0018EBA8 = 1702FE24 ) = 0x00000000
    0x000019C0 21480 3  XPCOM C: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 170B4158, 0018EBA8 )
    0x000019C0 21480 3  XPCOM R: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 170B4158, *0018EBA8 = 1702FE24 ) = 0x00000000
    0x000019C0 21480 3  XPCOM C: ( (dsIBooleanProperty*)1702FE24 )->CurValue( false )
    0x000019C0 21480 3  XPCOM R: ( (dsIBooleanProperty*)1702FE24 )->CurValue( false ) = 0x00000000
    0x000019C0 21480 3  XPCOM C: ( (dsIDebugProperties*)125D0AF0 )->getRootMenuElements( 0018EC78 )
    0x000019C0 21480 3  XPCOM R: ( (dsIDebugProperties*)125D0AF0 )->getRootMenuElements( *0018EC78 = 17034A50 ) = 0x00000000
    0x000019C0 21480 3  XPCOM C: ( (dsIProperties*)17034A50 )->Count( 0018EC68 )
    0x000019C0 21480 3  XPCOM R: ( (dsIProperties*)17034A50 )->Count( *0018EC68 = 0x00000005 ) = 0x00000000
    0x000019C0 21480 3  XPCOM C: ( (dsIProperties*)17034A50 )->getProperty( 0x00000000, 0018EC48 )
    0x000019C0 21480 3  XPCOM R: ( (dsIProperties*)17034A50 )->getProperty( 0x00000000, *0018EC48 = 170D7380 ) = 0x00000000
    0x000019C0 21480 3  XPCOM C: ( (dsIProperty*)170D7380 )->getPropertyType( 0018EBC8 )
    0x000019C0 21480 3  XPCOM R: ( (dsIProperty*)170D7380 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 21480 3  XPCOM C: ( (dsIProperty*)170D7380 )->queryInterface( 170B3A38, 0018EBC8 )
    0x000019C0 21480 3  XPCOM R: ( (dsIProperty*)170D7380 )->queryInterface( 170B3A38, *0018EBC8 = 170D73EC ) = 0x00000000
    0x000019C0 21480 3  XPCOM C: ( (dsINode*)170D73EC )->queryInterface( 170B3A38, 0018EBC8 )
    0x000019C0 21480 3  XPCOM R: ( (dsINode*)170D73EC )->queryInterface( 170B3A38, *0018EBC8 = 170D73EC ) = 0x00000000
    0x000019C0 21480 3  XPCOM C: ( (dsINode*)170D73EC )->Name( 0018EC38 )
    0x000019C0 21480 3  XPCOM R: ( (dsINode*)170D73EC )->Name( *0018EC38 = Program/Memory Load Options ) = 0x00000000
    0x000019C0 21480 3  XPCOM C: ( (dsIProperties*)17034A50 )->getProperty( 0x00000000, 0018EC48 )
    0x000019C0 21480 3  XPCOM R: ( (dsIProperties*)17034A50 )->getProperty( 0x00000000, *0018EC48 = 170D7380 ) = 0x00000000
    0x000019C0 21480 3  XPCOM C: ( (dsIProperty*)170D7380 )->getPropertyType( 0018EBC8 )
    0x000019C0 21480 3  XPCOM R: ( (dsIProperty*)170D7380 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 21480 3  XPCOM C: ( (dsIProperty*)170D7380 )->queryInterface( 170B3A38, 0018EBC8 )
    0x000019C0 21480 3  XPCOM R: ( (dsIProperty*)170D7380 )->queryInterface( 170B3A38, *0018EBC8 = 170D73EC ) = 0x00000000
    0x000019C0 21480 3  XPCOM C: ( (dsINode*)170D73EC )->queryInterface( 170B3A38, 0018EBC8 )
    0x000019C0 21480 3  XPCOM R: ( (dsINode*)170D73EC )->queryInterface( 170B3A38, *0018EBC8 = 170D73EC ) = 0x00000000
    0x000019C0 21480 3  XPCOM C: ( (dsINode*)170D73EC )->getChildren( 0018EC08 )
    0x000019C0 21480 3  XPCOM R: ( (dsINode*)170D73EC )->getChildren( *0018EC08 = 17034540 ) = 0x00000000
    0x000019C0 21480 3  XPCOM C: ( (dsIProperties*)17034A50 )->getProperty( 0x00000000, 0018EC48 )
    0x000019C0 21480 3  XPCOM R: ( (dsIProperties*)17034A50 )->getProperty( 0x00000000, *0018EC48 = 170D7380 ) = 0x00000000
    0x000019C0 21480 3  XPCOM C: ( (dsIProperty*)170D7380 )->getPropertyType( 0018EBC8 )
    0x000019C0 21480 3  XPCOM R: ( (dsIProperty*)170D7380 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 21480 3  XPCOM C: ( (dsIProperty*)170D7380 )->queryInterface( 170B4158, 0018EBC8 )
    0x000019C0 21480 3  XPCOM R: ( (dsIProperty*)170D7380 )->queryInterface( 170B4158, *0018EBC8 = 170D73EC ) = 0x00000000
    0x000019C0 21480 3  XPCOM C: ( (dsINode*)170D73EC )->queryInterface( 170B4158, 0018EBC8 )
    0x000019C0 21480 3  XPCOM R: ( (dsINode*)170D73EC )->queryInterface( 170B4158, *0018EBC8 = 170D73EC ) = 0x00000000
    0x000019C0 21480 3  XPCOM C: ( (dsINode*)170D73EC )->getChildren( 0018EC08 )
    0x000019C0 21480 3  XPCOM R: ( (dsINode*)170D73EC )->getChildren( *0018EC08 = 170347E0 ) = 0x00000000
    0x000019C0 21481 3  XPCOM C: ( (dsIProperties*)170347E0 )->Count( 0018EC68 )
    0x000019C0 21481 3  XPCOM R: ( (dsIProperties*)170347E0 )->Count( *0018EC68 = 0x00000005 ) = 0x00000000
    0x000019C0 21481 3  XPCOM C: ( (dsIProperties*)17034A50 )->getProperty( 0x00000000, 0018EC48 )
    0x000019C0 21481 3  XPCOM R: ( (dsIProperties*)17034A50 )->getProperty( 0x00000000, *0018EC48 = 170D7380 ) = 0x00000000
    0x000019C0 21481 3  XPCOM C: ( (dsIProperty*)170D7380 )->getPropertyType( 0018EBC8 )
    0x000019C0 21481 3  XPCOM R: ( (dsIProperty*)170D7380 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 21481 3  XPCOM C: ( (dsIProperty*)170D7380 )->queryInterface( 170B3A38, 0018EBC8 )
    0x000019C0 21481 3  XPCOM R: ( (dsIProperty*)170D7380 )->queryInterface( 170B3A38, *0018EBC8 = 170D73EC ) = 0x00000000
    0x000019C0 21481 3  XPCOM C: ( (dsINode*)170D73EC )->queryInterface( 170B3A38, 0018EBC8 )
    0x000019C0 21481 3  XPCOM R: ( (dsINode*)170D73EC )->queryInterface( 170B3A38, *0018EBC8 = 170D73EC ) = 0x00000000
    0x000019C0 21481 3  XPCOM C: ( (dsINode*)170D73EC )->getChildren( 0018EC08 )
    0x000019C0 21481 3  XPCOM R: ( (dsINode*)170D73EC )->getChildren( *0018EC08 = 17033460 ) = 0x00000000
    0x000019C0 21481 3  XPCOM C: ( (dsIProperties*)17033460 )->Count( 0018EC28 )
    0x000019C0 21481 3  XPCOM R: ( (dsIProperties*)17033460 )->Count( *0018EC28 = 0x00000005 ) = 0x00000000
    0x000019C0 21481 3  XPCOM C: ( (dsIProperties*)17033460 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 21481 3  XPCOM R: ( (dsIProperties*)17033460 )->getProperty( 0x00000000, *0018EC08 = 17132DC0 ) = 0x00000000
    0x000019C0 21481 3  XPCOM C: ( (dsIProperty*)17132DC0 )->getPropertyType( 0018EB88 )
    0x000019C0 21481 3  XPCOM R: ( (dsIProperty*)17132DC0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21481 3  XPCOM C: ( (dsIProperty*)17132DC0 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21481 3  XPCOM R: ( (dsIProperty*)17132DC0 )->queryInterface( 170B4158, *0018EB88 = 17132E2C ) = 0x00000000
    0x000019C0 21481 3  XPCOM C: ( (dsIGroup*)17132E2C )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21481 3  XPCOM R: ( (dsIGroup*)17132E2C )->queryInterface( 170B4158, *0018EB88 = 17132E2C ) = 0x00000000
    0x000019C0 21481 3  XPCOM C: ( (dsIGroup*)17132E2C )->Name( 0018EBF8 )
    0x000019C0 21481 3  XPCOM R: ( (dsIGroup*)17132E2C )->Name( *0018EBF8 = Program/Memory Load Options ) = 0x00000000
    0x000019C0 21481 3  XPCOM C: ( (dsIProperties*)17033460 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 21481 3  XPCOM R: ( (dsIProperties*)17033460 )->getProperty( 0x00000000, *0018EC08 = 17132DC0 ) = 0x00000000
    0x000019C0 21481 3  XPCOM C: ( (dsIProperty*)17132DC0 )->getPropertyType( 0018EB88 )
    0x000019C0 21481 3  XPCOM R: ( (dsIProperty*)17132DC0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21481 3  XPCOM C: ( (dsIProperty*)17132DC0 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21481 3  XPCOM R: ( (dsIProperty*)17132DC0 )->queryInterface( 170B4158, *0018EB88 = 17132E2C ) = 0x00000000
    0x000019C0 21481 3  XPCOM C: ( (dsIGroup*)17132E2C )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21481 3  XPCOM R: ( (dsIGroup*)17132E2C )->queryInterface( 170B4158, *0018EB88 = 17132E2C ) = 0x00000000
    0x000019C0 21481 3  XPCOM C: ( (dsIGroup*)17132E2C )->getChildren( 0018EBC8 )
    0x000019C0 21481 3  XPCOM R: ( (dsIGroup*)17132E2C )->getChildren( *0018EBC8 = 17034C60 ) = 0x00000000
    0x000019C0 21481 3  XPCOM C: ( (dsIProperties*)17033460 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 21481 3  XPCOM R: ( (dsIProperties*)17033460 )->getProperty( 0x00000000, *0018EC08 = 17132DC0 ) = 0x00000000
    0x000019C0 21481 3  XPCOM C: ( (dsIProperty*)17132DC0 )->getPropertyType( 0018EB88 )
    0x000019C0 21481 3  XPCOM R: ( (dsIProperty*)17132DC0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21481 3  XPCOM C: ( (dsIProperty*)17132DC0 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21481 3  XPCOM R: ( (dsIProperty*)17132DC0 )->queryInterface( 170B3A38, *0018EB88 = 17132E2C ) = 0x00000000
    0x000019C0 21481 3  XPCOM C: ( (dsIGroup*)17132E2C )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21481 3  XPCOM R: ( (dsIGroup*)17132E2C )->queryInterface( 170B3A38, *0018EB88 = 17132E2C ) = 0x00000000
    0x000019C0 21482 3  XPCOM C: ( (dsIGroup*)17132E2C )->getChildren( 0018EBC8 )
    0x000019C0 21482 3  XPCOM R: ( (dsIGroup*)17132E2C )->getChildren( *0018EBC8 = 17034510 ) = 0x00000000
    0x000019C0 21482 3  XPCOM C: ( (dsIProperties*)17034510 )->Count( 0018EC28 )
    0x000019C0 21482 3  XPCOM R: ( (dsIProperties*)17034510 )->Count( *0018EC28 = 0x00000005 ) = 0x00000000
    0x000019C0 21482 3  XPCOM C: ( (dsIProperties*)17033460 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 21482 3  XPCOM R: ( (dsIProperties*)17033460 )->getProperty( 0x00000000, *0018EC08 = 17132DC0 ) = 0x00000000
    0x000019C0 21482 3  XPCOM C: ( (dsIProperty*)17132DC0 )->getPropertyType( 0018EB88 )
    0x000019C0 21482 3  XPCOM R: ( (dsIProperty*)17132DC0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21482 3  XPCOM C: ( (dsIProperty*)17132DC0 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21482 3  XPCOM R: ( (dsIProperty*)17132DC0 )->queryInterface( 170B4158, *0018EB88 = 17132E2C ) = 0x00000000
    0x000019C0 21482 3  XPCOM C: ( (dsIGroup*)17132E2C )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21482 3  XPCOM R: ( (dsIGroup*)17132E2C )->queryInterface( 170B4158, *0018EB88 = 17132E2C ) = 0x00000000
    0x000019C0 21482 3  XPCOM C: ( (dsIGroup*)17132E2C )->getChildren( 0018EBC8 )
    0x000019C0 21482 3  XPCOM R: ( (dsIGroup*)17132E2C )->getChildren( *0018EBC8 = 17033160 ) = 0x00000000
    0x000019C0 21482 3  XPCOM C: ( (dsIProperties*)17033160 )->Count( 0018EBE8 )
    0x000019C0 21482 3  XPCOM R: ( (dsIProperties*)17033160 )->Count( *0018EBE8 = 0x00000005 ) = 0x00000000
    0x000019C0 21482 3  XPCOM C: ( (dsIProperties*)17033160 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 21482 3  XPCOM R: ( (dsIProperties*)17033160 )->getProperty( 0x00000000, *0018EBC8 = 170E7DF0 ) = 0x00000000
    0x000019C0 21482 3  XPCOM C: ( (dsIProperty*)170E7DF0 )->getPropertyType( 0018EB48 )
    0x000019C0 21482 3  XPCOM R: ( (dsIProperty*)170E7DF0 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21482 3  XPCOM C: ( (dsIProperty*)170E7DF0 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21482 3  XPCOM R: ( (dsIProperty*)170E7DF0 )->queryInterface( 170B3A38, *0018EB48 = 170E7E5C ) = 0x00000000
    0x000019C0 21482 3  XPCOM C: ( (dsIBooleanProperty*)170E7E5C )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21482 3  XPCOM R: ( (dsIBooleanProperty*)170E7E5C )->queryInterface( 170B3A38, *0018EB48 = 170E7E5C ) = 0x00000000
    0x000019C0 21482 3  XPCOM C: ( (dsIBooleanProperty*)170E7E5C )->Name( 0018EBB8 )
    0x000019C0 21482 3  XPCOM R: ( (dsIBooleanProperty*)170E7E5C )->Name( *0018EBB8 = Disable all breakpoints when loading a different program ) = 0x00000000
    0x000019C0 21482 3  XPCOM C: ( (dsIProperties*)17033160 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 21482 3  XPCOM R: ( (dsIProperties*)17033160 )->getProperty( 0x00000000, *0018EBC8 = 170E7DF0 ) = 0x00000000
    0x000019C0 21482 3  XPCOM C: ( (dsIProperty*)170E7DF0 )->getPropertyType( 0018EB48 )
    0x000019C0 21482 3  XPCOM R: ( (dsIProperty*)170E7DF0 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21482 3  XPCOM C: ( (dsIProperty*)170E7DF0 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21482 3  XPCOM R: ( (dsIProperty*)170E7DF0 )->queryInterface( 170B3A38, *0018EB48 = 170E7E5C ) = 0x00000000
    0x000019C0 21482 3  XPCOM C: ( (dsIBooleanProperty*)170E7E5C )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21482 3  XPCOM R: ( (dsIBooleanProperty*)170E7E5C )->queryInterface( 170B3A38, *0018EB48 = 170E7E5C ) = 0x00000000
    0x000019C0 21482 3  XPCOM C: ( (dsIProperties*)17033160 )->Count( 0018EBE8 )
    0x000019C0 21482 3  XPCOM R: ( (dsIProperties*)17033160 )->Count( *0018EBE8 = 0x00000005 ) = 0x00000000
    0x000019C0 21482 3  XPCOM C: ( (dsIProperties*)17033160 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 21482 3  XPCOM R: ( (dsIProperties*)17033160 )->getProperty( 0x00000001, *0018EBC8 = 170E7E78 ) = 0x00000000
    0x000019C0 21482 3  XPCOM C: ( (dsIProperty*)170E7E78 )->getPropertyType( 0018EB48 )
    0x000019C0 21482 3  XPCOM R: ( (dsIProperty*)170E7E78 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21483 3  XPCOM C: ( (dsIProperty*)170E7E78 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21483 3  XPCOM R: ( (dsIProperty*)170E7E78 )->queryInterface( 170B3A38, *0018EB48 = 170E7EE4 ) = 0x00000000
    0x000019C0 21483 3  XPCOM C: ( (dsIBooleanProperty*)170E7EE4 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21483 3  XPCOM R: ( (dsIBooleanProperty*)170E7EE4 )->queryInterface( 170B3A38, *0018EB48 = 170E7EE4 ) = 0x00000000
    0x000019C0 21483 3  XPCOM C: ( (dsIBooleanProperty*)170E7EE4 )->Name( 0018EBB8 )
    0x000019C0 21483 3  XPCOM R: ( (dsIBooleanProperty*)170E7EE4 )->Name( *0018EBB8 = Halt at program termination (requires setting a breakpoint) ) = 0x00000000
    0x000019C0 21483 3  XPCOM C: ( (dsIProperties*)17033160 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 21483 3  XPCOM R: ( (dsIProperties*)17033160 )->getProperty( 0x00000001, *0018EBC8 = 170E7E78 ) = 0x00000000
    0x000019C0 21483 3  XPCOM C: ( (dsIProperty*)170E7E78 )->getPropertyType( 0018EB48 )
    0x000019C0 21483 3  XPCOM R: ( (dsIProperty*)170E7E78 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21483 3  XPCOM C: ( (dsIProperty*)170E7E78 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21483 3  XPCOM R: ( (dsIProperty*)170E7E78 )->queryInterface( 170B3A38, *0018EB48 = 170E7EE4 ) = 0x00000000
    0x000019C0 21483 3  XPCOM C: ( (dsIBooleanProperty*)170E7EE4 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21483 3  XPCOM R: ( (dsIBooleanProperty*)170E7EE4 )->queryInterface( 170B3A38, *0018EB48 = 170E7EE4 ) = 0x00000000
    0x000019C0 21483 3  XPCOM C: ( (dsIProperties*)17033160 )->Count( 0018EBE8 )
    0x000019C0 21483 3  XPCOM R: ( (dsIProperties*)17033160 )->Count( *0018EBE8 = 0x00000005 ) = 0x00000000
    0x000019C0 21483 3  XPCOM C: ( (dsIProperties*)17033160 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 21483 3  XPCOM R: ( (dsIProperties*)17033160 )->getProperty( 0x00000002, *0018EBC8 = 1702F758 ) = 0x00000000
    0x000019C0 21483 3  XPCOM C: ( (dsIProperty*)1702F758 )->getPropertyType( 0018EB48 )
    0x000019C0 21483 3  XPCOM R: ( (dsIProperty*)1702F758 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21483 3  XPCOM C: ( (dsIProperty*)1702F758 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21483 3  XPCOM R: ( (dsIProperty*)1702F758 )->queryInterface( 170B3A38, *0018EB48 = 1702F7C4 ) = 0x00000000
    0x000019C0 21483 3  XPCOM C: ( (dsIBooleanProperty*)1702F7C4 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21483 3  XPCOM R: ( (dsIBooleanProperty*)1702F7C4 )->queryInterface( 170B3A38, *0018EB48 = 1702F7C4 ) = 0x00000000
    0x000019C0 21483 3  XPCOM C: ( (dsIBooleanProperty*)1702F7C4 )->Name( 0018EBB8 )
    0x000019C0 21483 3  XPCOM R: ( (dsIBooleanProperty*)1702F7C4 )->Name( *0018EBB8 = Enable CIO function use (requires setting a breakpoint) ) = 0x00000000
    0x000019C0 21483 3  XPCOM C: ( (dsIProperties*)17033160 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 21483 3  XPCOM R: ( (dsIProperties*)17033160 )->getProperty( 0x00000002, *0018EBC8 = 1702F758 ) = 0x00000000
    0x000019C0 21483 3  XPCOM C: ( (dsIProperty*)1702F758 )->getPropertyType( 0018EB48 )
    0x000019C0 21483 3  XPCOM R: ( (dsIProperty*)1702F758 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21483 3  XPCOM C: ( (dsIProperty*)1702F758 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21483 3  XPCOM R: ( (dsIProperty*)1702F758 )->queryInterface( 170B3A38, *0018EB48 = 1702F7C4 ) = 0x00000000
    0x000019C0 21483 3  XPCOM C: ( (dsIBooleanProperty*)1702F7C4 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21483 3  XPCOM R: ( (dsIBooleanProperty*)1702F7C4 )->queryInterface( 170B3A38, *0018EB48 = 1702F7C4 ) = 0x00000000
    0x000019C0 21483 3  XPCOM C: ( (dsIProperties*)17033160 )->Count( 0018EBE8 )
    0x000019C0 21483 3  XPCOM R: ( (dsIProperties*)17033160 )->Count( *0018EBE8 = 0x00000005 ) = 0x00000000
    0x000019C0 21483 3  XPCOM C: ( (dsIProperties*)17033160 )->getProperty( 0x00000003, 0018EBC8 )
    0x000019C0 21483 3  XPCOM R: ( (dsIProperties*)17033160 )->getProperty( 0x00000003, *0018EBC8 = 1702F7E0 ) = 0x00000000
    0x000019C0 21483 3  XPCOM C: ( (dsIProperty*)1702F7E0 )->getPropertyType( 0018EB48 )
    0x000019C0 21484 3  XPCOM R: ( (dsIProperty*)1702F7E0 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21484 3  XPCOM C: ( (dsIProperty*)1702F7E0 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21484 3  XPCOM R: ( (dsIProperty*)1702F7E0 )->queryInterface( 170B3A38, *0018EB48 = 1702F84C ) = 0x00000000
    0x000019C0 21484 3  XPCOM C: ( (dsIBooleanProperty*)1702F84C )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21484 3  XPCOM R: ( (dsIBooleanProperty*)1702F84C )->queryInterface( 170B3A38, *0018EB48 = 1702F84C ) = 0x00000000
    0x000019C0 21484 3  XPCOM C: ( (dsIBooleanProperty*)1702F84C )->Name( 0018EBB8 )
    0x000019C0 21484 3  XPCOM R: ( (dsIBooleanProperty*)1702F84C )->Name( *0018EBB8 = Enable Semihosting (requires setting a breakpoint at SVC_Handler ) ) = 0x00000000
    0x000019C0 21484 3  XPCOM C: ( (dsIProperties*)17033160 )->getProperty( 0x00000003, 0018EBC8 )
    0x000019C0 21484 3  XPCOM R: ( (dsIProperties*)17033160 )->getProperty( 0x00000003, *0018EBC8 = 1702F7E0 ) = 0x00000000
    0x000019C0 21484 3  XPCOM C: ( (dsIProperty*)1702F7E0 )->getPropertyType( 0018EB48 )
    0x000019C0 21484 3  XPCOM R: ( (dsIProperty*)1702F7E0 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21484 3  XPCOM C: ( (dsIProperty*)1702F7E0 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21484 3  XPCOM R: ( (dsIProperty*)1702F7E0 )->queryInterface( 170B3A38, *0018EB48 = 1702F84C ) = 0x00000000
    0x000019C0 21484 3  XPCOM C: ( (dsIBooleanProperty*)1702F84C )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21484 3  XPCOM R: ( (dsIBooleanProperty*)1702F84C )->queryInterface( 170B3A38, *0018EB48 = 1702F84C ) = 0x00000000
    0x000019C0 21484 3  XPCOM C: ( (dsIProperties*)17033160 )->Count( 0018EBE8 )
    0x000019C0 21484 3  XPCOM R: ( (dsIProperties*)17033160 )->Count( *0018EBE8 = 0x00000005 ) = 0x00000000
    0x000019C0 21484 3  XPCOM C: ( (dsIProperties*)17033160 )->getProperty( 0x00000004, 0018EBC8 )
    0x000019C0 21484 3  XPCOM R: ( (dsIProperties*)17033160 )->getProperty( 0x00000004, *0018EBC8 = 124124E0 ) = 0x00000000
    0x000019C0 21484 3  XPCOM C: ( (dsIProperty*)124124E0 )->getPropertyType( 0018EB48 )
    0x000019C0 21484 3  XPCOM R: ( (dsIProperty*)124124E0 )->getPropertyType( *0018EB48 = 0x00000003 ) = 0x00000000
    0x000019C0 21484 3  XPCOM C: ( (dsIProperty*)124124E0 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21484 3  XPCOM R: ( (dsIProperty*)124124E0 )->queryInterface( 170B3A38, *0018EB48 = 12412584 ) = 0x00000000
    0x000019C0 21484 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21484 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B3A38, *0018EB48 = 1241254C ) = 0x00000000
    0x000019C0 21484 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21484 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B3A38, *0018EB48 = 12412584 ) = 0x00000000
    0x000019C0 21484 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->Name( 0018EBB8 )
    0x000019C0 21484 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->Name( *0018EBB8 = Verification Options ) = 0x00000000
    0x000019C0 21484 3  XPCOM C: ( (dsIProperties*)17033160 )->getProperty( 0x00000004, 0018EBC8 )
    0x000019C0 21484 3  XPCOM R: ( (dsIProperties*)17033160 )->getProperty( 0x00000004, *0018EBC8 = 124124E0 ) = 0x00000000
    0x000019C0 21484 3  XPCOM C: ( (dsIProperty*)124124E0 )->getPropertyType( 0018EB48 )
    0x000019C0 21484 3  XPCOM R: ( (dsIProperty*)124124E0 )->getPropertyType( *0018EB48 = 0x00000003 ) = 0x00000000
    0x000019C0 21484 3  XPCOM C: ( (dsIProperty*)124124E0 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21484 3  XPCOM R: ( (dsIProperty*)124124E0 )->queryInterface( 170B3A38, *0018EB48 = 12412584 ) = 0x00000000
    0x000019C0 21484 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21484 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B3A38, *0018EB48 = 1241254C ) = 0x00000000
    0x000019C0 21484 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21484 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B3A38, *0018EB48 = 12412584 ) = 0x00000000
    0x000019C0 21484 3  XPCOM C: ( (dsIProperties*)17033160 )->Count( 0018EBE8 )
    0x000019C0 21485 3  XPCOM R: ( (dsIProperties*)17033160 )->Count( *0018EBE8 = 0x00000005 ) = 0x00000000
    0x000019C0 21485 3  XPCOM C: ( (dsIProperties*)17033460 )->Count( 0018EC28 )
    0x000019C0 21485 3  XPCOM R: ( (dsIProperties*)17033460 )->Count( *0018EC28 = 0x00000005 ) = 0x00000000
    0x000019C0 21485 3  XPCOM C: ( (dsIProperties*)17033460 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 21485 3  XPCOM R: ( (dsIProperties*)17033460 )->getProperty( 0x00000001, *0018EC08 = 17133068 ) = 0x00000000
    0x000019C0 21485 3  XPCOM C: ( (dsIProperty*)17133068 )->getPropertyType( 0018EB88 )
    0x000019C0 21485 3  XPCOM R: ( (dsIProperty*)17133068 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21485 3  XPCOM C: ( (dsIProperty*)17133068 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21485 3  XPCOM R: ( (dsIProperty*)17133068 )->queryInterface( 170B3A38, *0018EB88 = 171330D4 ) = 0x00000000
    0x000019C0 21485 3  XPCOM C: ( (dsIGroup*)171330D4 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21485 3  XPCOM R: ( (dsIGroup*)171330D4 )->queryInterface( 170B3A38, *0018EB88 = 171330D4 ) = 0x00000000
    0x000019C0 21485 3  XPCOM C: ( (dsIGroup*)171330D4 )->Name( 0018EBF8 )
    0x000019C0 21485 3  XPCOM R: ( (dsIGroup*)171330D4 )->Name( *0018EBF8 = Connection Options ) = 0x00000000
    0x000019C0 21485 3  XPCOM C: ( (dsIProperties*)17033460 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 21485 3  XPCOM R: ( (dsIProperties*)17033460 )->getProperty( 0x00000001, *0018EC08 = 17133068 ) = 0x00000000
    0x000019C0 21485 3  XPCOM C: ( (dsIProperty*)17133068 )->getPropertyType( 0018EB88 )
    0x000019C0 21485 3  XPCOM R: ( (dsIProperty*)17133068 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21485 3  XPCOM C: ( (dsIProperty*)17133068 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21485 3  XPCOM R: ( (dsIProperty*)17133068 )->queryInterface( 170B3A38, *0018EB88 = 171330D4 ) = 0x00000000
    0x000019C0 21485 3  XPCOM C: ( (dsIGroup*)171330D4 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21485 3  XPCOM R: ( (dsIGroup*)171330D4 )->queryInterface( 170B3A38, *0018EB88 = 171330D4 ) = 0x00000000
    0x000019C0 21485 3  XPCOM C: ( (dsIGroup*)171330D4 )->getChildren( 0018EBC8 )
    0x000019C0 21485 3  XPCOM R: ( (dsIGroup*)171330D4 )->getChildren( *0018EBC8 = 17034BD0 ) = 0x00000000
    0x000019C0 21485 3  XPCOM C: ( (dsIProperties*)17033460 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 21485 3  XPCOM R: ( (dsIProperties*)17033460 )->getProperty( 0x00000001, *0018EC08 = 17133068 ) = 0x00000000
    0x000019C0 21485 3  XPCOM C: ( (dsIProperty*)17133068 )->getPropertyType( 0018EB88 )
    0x000019C0 21485 3  XPCOM R: ( (dsIProperty*)17133068 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21485 3  XPCOM C: ( (dsIProperty*)17133068 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21485 3  XPCOM R: ( (dsIProperty*)17133068 )->queryInterface( 170B3A38, *0018EB88 = 171330D4 ) = 0x00000000
    0x000019C0 21485 3  XPCOM C: ( (dsIGroup*)171330D4 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21485 3  XPCOM R: ( (dsIGroup*)171330D4 )->queryInterface( 170B3A38, *0018EB88 = 171330D4 ) = 0x00000000
    0x000019C0 21485 3  XPCOM C: ( (dsIGroup*)171330D4 )->getChildren( 0018EBC8 )
    0x000019C0 21485 3  XPCOM R: ( (dsIGroup*)171330D4 )->getChildren( *0018EBC8 = 17034060 ) = 0x00000000
    0x000019C0 21485 3  XPCOM C: ( (dsIProperties*)17034060 )->Count( 0018EC28 )
    0x000019C0 21485 3  XPCOM R: ( (dsIProperties*)17034060 )->Count( *0018EC28 = 0x00000003 ) = 0x00000000
    0x000019C0 21485 3  XPCOM C: ( (dsIProperties*)17033460 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 21485 3  XPCOM R: ( (dsIProperties*)17033460 )->getProperty( 0x00000001, *0018EC08 = 17133068 ) = 0x00000000
    0x000019C0 21485 3  XPCOM C: ( (dsIProperty*)17133068 )->getPropertyType( 0018EB88 )
    0x000019C0 21485 3  XPCOM R: ( (dsIProperty*)17133068 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21485 3  XPCOM C: ( (dsIProperty*)17133068 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21485 3  XPCOM R: ( (dsIProperty*)17133068 )->queryInterface( 170B3A38, *0018EB88 = 171330D4 ) = 0x00000000
    0x000019C0 21485 3  XPCOM C: ( (dsIGroup*)171330D4 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21485 3  XPCOM R: ( (dsIGroup*)171330D4 )->queryInterface( 170B3A38, *0018EB88 = 171330D4 ) = 0x00000000
    0x000019C0 21485 3  XPCOM C: ( (dsIGroup*)171330D4 )->getChildren( 0018EBC8 )
    0x000019C0 21485 3  XPCOM R: ( (dsIGroup*)171330D4 )->getChildren( *0018EBC8 = 170343C0 ) = 0x00000000
    0x000019C0 21486 3  XPCOM C: ( (dsIProperties*)170343C0 )->Count( 0018EBE8 )
    0x000019C0 21486 3  XPCOM R: ( (dsIProperties*)170343C0 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21486 3  XPCOM C: ( (dsIProperties*)170343C0 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 21486 3  XPCOM R: ( (dsIProperties*)170343C0 )->getProperty( 0x00000000, *0018EBC8 = 16F52030 ) = 0x00000000
    0x000019C0 21486 3  XPCOM C: ( (dsIProperty*)16F52030 )->getPropertyType( 0018EB48 )
    0x000019C0 21486 3  XPCOM R: ( (dsIProperty*)16F52030 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21486 3  XPCOM C: ( (dsIProperty*)16F52030 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21486 3  XPCOM R: ( (dsIProperty*)16F52030 )->queryInterface( 170B3A38, *0018EB48 = 16F5209C ) = 0x00000000
    0x000019C0 21486 3  XPCOM C: ( (dsIBooleanProperty*)16F5209C )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21486 3  XPCOM R: ( (dsIBooleanProperty*)16F5209C )->queryInterface( 170B3A38, *0018EB48 = 16F5209C ) = 0x00000000
    0x000019C0 21486 3  XPCOM C: ( (dsIBooleanProperty*)16F5209C )->Name( 0018EBB8 )
    0x000019C0 21486 3  XPCOM R: ( (dsIBooleanProperty*)16F5209C )->Name( *0018EBB8 = Halt the target on a connect ) = 0x00000000
    0x000019C0 21486 3  XPCOM C: ( (dsIProperties*)170343C0 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 21486 3  XPCOM R: ( (dsIProperties*)170343C0 )->getProperty( 0x00000000, *0018EBC8 = 16F52030 ) = 0x00000000
    0x000019C0 21486 3  XPCOM C: ( (dsIProperty*)16F52030 )->getPropertyType( 0018EB48 )
    0x000019C0 21486 3  XPCOM R: ( (dsIProperty*)16F52030 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21486 3  XPCOM C: ( (dsIProperty*)16F52030 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21486 3  XPCOM R: ( (dsIProperty*)16F52030 )->queryInterface( 170B3A38, *0018EB48 = 16F5209C ) = 0x00000000
    0x000019C0 21486 3  XPCOM C: ( (dsIBooleanProperty*)16F5209C )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21486 3  XPCOM R: ( (dsIBooleanProperty*)16F5209C )->queryInterface( 170B3A38, *0018EB48 = 16F5209C ) = 0x00000000
    0x000019C0 21486 3  XPCOM C: ( (dsIProperties*)170343C0 )->Count( 0018EBE8 )
    0x000019C0 21486 3  XPCOM R: ( (dsIProperties*)170343C0 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21486 3  XPCOM C: ( (dsIProperties*)170343C0 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 21486 3  XPCOM R: ( (dsIProperties*)170343C0 )->getProperty( 0x00000001, *0018EBC8 = 16F520B8 ) = 0x00000000
    0x000019C0 21486 3  XPCOM C: ( (dsIProperty*)16F520B8 )->getPropertyType( 0018EB48 )
    0x000019C0 21486 3  XPCOM R: ( (dsIProperty*)16F520B8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21486 3  XPCOM C: ( (dsIProperty*)16F520B8 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21486 3  XPCOM R: ( (dsIProperty*)16F520B8 )->queryInterface( 170B3A38, *0018EB48 = 16F52124 ) = 0x00000000
    0x000019C0 21486 3  XPCOM C: ( (dsIBooleanProperty*)16F52124 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21486 3  XPCOM R: ( (dsIBooleanProperty*)16F52124 )->queryInterface( 170B3A38, *0018EB48 = 16F52124 ) = 0x00000000
    0x000019C0 21486 3  XPCOM C: ( (dsIBooleanProperty*)16F52124 )->Name( 0018EBB8 )
    0x000019C0 21486 3  XPCOM R: ( (dsIBooleanProperty*)16F52124 )->Name( *0018EBB8 = Reset the target on a connect ) = 0x00000000
    0x000019C0 21486 3  XPCOM C: ( (dsIProperties*)170343C0 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 21486 3  XPCOM R: ( (dsIProperties*)170343C0 )->getProperty( 0x00000001, *0018EBC8 = 16F520B8 ) = 0x00000000
    0x000019C0 21486 3  XPCOM C: ( (dsIProperty*)16F520B8 )->getPropertyType( 0018EB48 )
    0x000019C0 21486 3  XPCOM R: ( (dsIProperty*)16F520B8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21486 3  XPCOM C: ( (dsIProperty*)16F520B8 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21486 3  XPCOM R: ( (dsIProperty*)16F520B8 )->queryInterface( 170B3A38, *0018EB48 = 16F52124 ) = 0x00000000
    0x000019C0 21486 3  XPCOM C: ( (dsIBooleanProperty*)16F52124 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21486 3  XPCOM R: ( (dsIBooleanProperty*)16F52124 )->queryInterface( 170B3A38, *0018EB48 = 16F52124 ) = 0x00000000
    0x000019C0 21486 3  XPCOM C: ( (dsIProperties*)170343C0 )->Count( 0018EBE8 )
    0x000019C0 21486 3  XPCOM R: ( (dsIProperties*)170343C0 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21486 3  XPCOM C: ( (dsIProperties*)170343C0 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 21486 3  XPCOM R: ( (dsIProperties*)170343C0 )->getProperty( 0x00000002, *0018EBC8 = 16F52250 ) = 0x00000000
    0x000019C0 21487 3  XPCOM C: ( (dsIProperty*)16F52250 )->getPropertyType( 0018EB48 )
    0x000019C0 21487 3  XPCOM R: ( (dsIProperty*)16F52250 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21487 3  XPCOM C: ( (dsIProperty*)16F52250 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21487 3  XPCOM R: ( (dsIProperty*)16F52250 )->queryInterface( 170B3A38, *0018EB48 = 16F522BC ) = 0x00000000
    0x000019C0 21487 3  XPCOM C: ( (dsIBooleanProperty*)16F522BC )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21487 3  XPCOM R: ( (dsIBooleanProperty*)16F522BC )->queryInterface( 170B3A38, *0018EB48 = 16F522BC ) = 0x00000000
    0x000019C0 21487 3  XPCOM C: ( (dsIBooleanProperty*)16F522BC )->Name( 0018EBB8 )
    0x000019C0 21487 3  XPCOM R: ( (dsIBooleanProperty*)16F522BC )->Name( *0018EBB8 = Auto connect if a child connects ) = 0x00000000
    0x000019C0 21487 3  XPCOM C: ( (dsIProperties*)170343C0 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 21487 3  XPCOM R: ( (dsIProperties*)170343C0 )->getProperty( 0x00000002, *0018EBC8 = 16F52250 ) = 0x00000000
    0x000019C0 21487 3  XPCOM C: ( (dsIProperty*)16F52250 )->getPropertyType( 0018EB48 )
    0x000019C0 21487 3  XPCOM R: ( (dsIProperty*)16F52250 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21487 3  XPCOM C: ( (dsIProperty*)16F52250 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21487 3  XPCOM R: ( (dsIProperty*)16F52250 )->queryInterface( 170B3A38, *0018EB48 = 16F522BC ) = 0x00000000
    0x000019C0 21487 3  XPCOM C: ( (dsIBooleanProperty*)16F522BC )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21487 3  XPCOM R: ( (dsIBooleanProperty*)16F522BC )->queryInterface( 170B3A38, *0018EB48 = 16F522BC ) = 0x00000000
    0x000019C0 21487 3  XPCOM C: ( (dsIProperties*)170343C0 )->Count( 0018EBE8 )
    0x000019C0 21487 3  XPCOM R: ( (dsIProperties*)170343C0 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21487 3  XPCOM C: ( (dsIProperties*)17033460 )->Count( 0018EC28 )
    0x000019C0 21487 3  XPCOM R: ( (dsIProperties*)17033460 )->Count( *0018EC28 = 0x00000005 ) = 0x00000000
    0x000019C0 21487 3  XPCOM C: ( (dsIProperties*)17033460 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 21487 3  XPCOM R: ( (dsIProperties*)17033460 )->getProperty( 0x00000002, *0018EC08 = 170E7D68 ) = 0x00000000
    0x000019C0 21487 3  XPCOM C: ( (dsIProperty*)170E7D68 )->getPropertyType( 0018EB88 )
    0x000019C0 21487 3  XPCOM R: ( (dsIProperty*)170E7D68 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21487 3  XPCOM C: ( (dsIProperty*)170E7D68 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21487 3  XPCOM R: ( (dsIProperty*)170E7D68 )->queryInterface( 170B3A38, *0018EB88 = 170E7DD4 ) = 0x00000000
    0x000019C0 21487 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21487 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B3A38, *0018EB88 = 170E7DD4 ) = 0x00000000
    0x000019C0 21487 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->Name( 0018EBF8 )
    0x000019C0 21487 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->Name( *0018EBF8 = Disable interrupts ) = 0x00000000
    0x000019C0 21487 3  XPCOM C: ( (dsIProperties*)17033460 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 21487 3  XPCOM R: ( (dsIProperties*)17033460 )->getProperty( 0x00000002, *0018EC08 = 170E7D68 ) = 0x00000000
    0x000019C0 21487 3  XPCOM C: ( (dsIProperty*)170E7D68 )->getPropertyType( 0018EB88 )
    0x000019C0 21487 3  XPCOM R: ( (dsIProperty*)170E7D68 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21487 3  XPCOM C: ( (dsIProperty*)170E7D68 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21487 3  XPCOM R: ( (dsIProperty*)170E7D68 )->queryInterface( 170B3A38, *0018EB88 = 170E7DD4 ) = 0x00000000
    0x000019C0 21487 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21487 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B3A38, *0018EB88 = 170E7DD4 ) = 0x00000000
    0x000019C0 21487 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->getChildren( 0018EBC8 )
    0x000019C0 21487 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->getChildren( *0018EBC8 = 17034D80 ) = 0x00000000
    0x000019C0 21487 3  XPCOM C: ( (dsIProperties*)17033460 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 21487 3  XPCOM R: ( (dsIProperties*)17033460 )->getProperty( 0x00000002, *0018EC08 = 170E7D68 ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIProperty*)170E7D68 )->getPropertyType( 0018EB88 )
    0x000019C0 21488 3  XPCOM R: ( (dsIProperty*)170E7D68 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIProperty*)170E7D68 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21488 3  XPCOM R: ( (dsIProperty*)170E7D68 )->queryInterface( 170B3A38, *0018EB88 = 170E7DD4 ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21488 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B3A38, *0018EB88 = 170E7DD4 ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->getChildren( 0018EBC8 )
    0x000019C0 21488 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->getChildren( *0018EBC8 = 17033520 ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIProperties*)17033520 )->Count( 0018EC28 )
    0x000019C0 21488 3  XPCOM R: ( (dsIProperties*)17033520 )->Count( *0018EC28 = 0x00000003 ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIProperties*)17033460 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 21488 3  XPCOM R: ( (dsIProperties*)17033460 )->getProperty( 0x00000002, *0018EC08 = 170E7D68 ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIProperty*)170E7D68 )->getPropertyType( 0018EB88 )
    0x000019C0 21488 3  XPCOM R: ( (dsIProperty*)170E7D68 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIProperty*)170E7D68 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21488 3  XPCOM R: ( (dsIProperty*)170E7D68 )->queryInterface( 170B3A38, *0018EB88 = 170E7DD4 ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21488 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B3A38, *0018EB88 = 170E7DD4 ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->getChildren( 0018EBC8 )
    0x000019C0 21488 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->getChildren( *0018EBC8 = 170340C0 ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIProperties*)170340C0 )->Count( 0018EBE8 )
    0x000019C0 21488 3  XPCOM R: ( (dsIProperties*)170340C0 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIProperties*)170340C0 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 21488 3  XPCOM R: ( (dsIProperties*)170340C0 )->getProperty( 0x00000000, *0018EBC8 = 16F522D8 ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIProperty*)16F522D8 )->getPropertyType( 0018EB48 )
    0x000019C0 21488 3  XPCOM R: ( (dsIProperty*)16F522D8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIProperty*)16F522D8 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21488 3  XPCOM R: ( (dsIProperty*)16F522D8 )->queryInterface( 170B3A38, *0018EB48 = 16F52344 ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIBooleanProperty*)16F52344 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21488 3  XPCOM R: ( (dsIBooleanProperty*)16F52344 )->queryInterface( 170B3A38, *0018EB48 = 16F52344 ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIBooleanProperty*)16F52344 )->Name( 0018EBB8 )
    0x000019C0 21488 3  XPCOM R: ( (dsIBooleanProperty*)16F52344 )->Name( *0018EBB8 = When assembly stepping ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIProperties*)170340C0 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 21488 3  XPCOM R: ( (dsIProperties*)170340C0 )->getProperty( 0x00000000, *0018EBC8 = 16F522D8 ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIProperty*)16F522D8 )->getPropertyType( 0018EB48 )
    0x000019C0 21488 3  XPCOM R: ( (dsIProperty*)16F522D8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIProperty*)16F522D8 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21488 3  XPCOM R: ( (dsIProperty*)16F522D8 )->queryInterface( 170B3A38, *0018EB48 = 16F52344 ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIBooleanProperty*)16F52344 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21488 3  XPCOM R: ( (dsIBooleanProperty*)16F52344 )->queryInterface( 170B3A38, *0018EB48 = 16F52344 ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIProperties*)170340C0 )->Count( 0018EBE8 )
    0x000019C0 21488 3  XPCOM R: ( (dsIProperties*)170340C0 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIProperties*)170340C0 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 21488 3  XPCOM R: ( (dsIProperties*)170340C0 )->getProperty( 0x00000001, *0018EBC8 = 16F52360 ) = 0x00000000
    0x000019C0 21488 3  XPCOM C: ( (dsIProperty*)16F52360 )->getPropertyType( 0018EB48 )
    0x000019C0 21489 3  XPCOM R: ( (dsIProperty*)16F52360 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21489 3  XPCOM C: ( (dsIProperty*)16F52360 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21489 3  XPCOM R: ( (dsIProperty*)16F52360 )->queryInterface( 170B3A38, *0018EB48 = 16F523CC ) = 0x00000000
    0x000019C0 21489 3  XPCOM C: ( (dsIBooleanProperty*)16F523CC )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21489 3  XPCOM R: ( (dsIBooleanProperty*)16F523CC )->queryInterface( 170B3A38, *0018EB48 = 16F523CC ) = 0x00000000
    0x000019C0 21489 3  XPCOM C: ( (dsIBooleanProperty*)16F523CC )->Name( 0018EBB8 )
    0x000019C0 21489 3  XPCOM R: ( (dsIBooleanProperty*)16F523CC )->Name( *0018EBB8 = When source stepping ) = 0x00000000
    0x000019C0 21489 3  XPCOM C: ( (dsIProperties*)170340C0 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 21489 3  XPCOM R: ( (dsIProperties*)170340C0 )->getProperty( 0x00000001, *0018EBC8 = 16F52360 ) = 0x00000000
    0x000019C0 21489 3  XPCOM C: ( (dsIProperty*)16F52360 )->getPropertyType( 0018EB48 )
    0x000019C0 21489 3  XPCOM R: ( (dsIProperty*)16F52360 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21489 3  XPCOM C: ( (dsIProperty*)16F52360 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21489 3  XPCOM R: ( (dsIProperty*)16F52360 )->queryInterface( 170B3A38, *0018EB48 = 16F523CC ) = 0x00000000
    0x000019C0 21489 3  XPCOM C: ( (dsIBooleanProperty*)16F523CC )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21489 3  XPCOM R: ( (dsIBooleanProperty*)16F523CC )->queryInterface( 170B3A38, *0018EB48 = 16F523CC ) = 0x00000000
    0x000019C0 21489 3  XPCOM C: ( (dsIProperties*)170340C0 )->Count( 0018EBE8 )
    0x000019C0 21489 3  XPCOM R: ( (dsIProperties*)170340C0 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21489 3  XPCOM C: ( (dsIProperties*)170340C0 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 21489 3  XPCOM R: ( (dsIProperties*)170340C0 )->getProperty( 0x00000002, *0018EBC8 = 16F523E8 ) = 0x00000000
    0x000019C0 21489 3  XPCOM C: ( (dsIProperty*)16F523E8 )->getPropertyType( 0018EB48 )
    0x000019C0 21489 3  XPCOM R: ( (dsIProperty*)16F523E8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21489 3  XPCOM C: ( (dsIProperty*)16F523E8 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21489 3  XPCOM R: ( (dsIProperty*)16F523E8 )->queryInterface( 170B3A38, *0018EB48 = 16F52454 ) = 0x00000000
    0x000019C0 21489 3  XPCOM C: ( (dsIBooleanProperty*)16F52454 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21489 3  XPCOM R: ( (dsIBooleanProperty*)16F52454 )->queryInterface( 170B3A38, *0018EB48 = 16F52454 ) = 0x00000000
    0x000019C0 21489 3  XPCOM C: ( (dsIBooleanProperty*)16F52454 )->Name( 0018EBB8 )
    0x000019C0 21489 3  XPCOM R: ( (dsIBooleanProperty*)16F52454 )->Name( *0018EBB8 = When running ) = 0x00000000
    0x000019C0 21489 3  XPCOM C: ( (dsIProperties*)170340C0 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 21489 3  XPCOM R: ( (dsIProperties*)170340C0 )->getProperty( 0x00000002, *0018EBC8 = 16F523E8 ) = 0x00000000
    0x000019C0 21489 3  XPCOM C: ( (dsIProperty*)16F523E8 )->getPropertyType( 0018EB48 )
    0x000019C0 21489 3  XPCOM R: ( (dsIProperty*)16F523E8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21489 3  XPCOM C: ( (dsIProperty*)16F523E8 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21489 3  XPCOM R: ( (dsIProperty*)16F523E8 )->queryInterface( 170B3A38, *0018EB48 = 16F52454 ) = 0x00000000
    0x000019C0 21489 3  XPCOM C: ( (dsIBooleanProperty*)16F52454 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21489 3  XPCOM R: ( (dsIBooleanProperty*)16F52454 )->queryInterface( 170B3A38, *0018EB48 = 16F52454 ) = 0x00000000
    0x000019C0 21489 3  XPCOM C: ( (dsIProperties*)170340C0 )->Count( 0018EBE8 )
    0x000019C0 21489 3  XPCOM R: ( (dsIProperties*)170340C0 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21489 3  XPCOM C: ( (dsIProperties*)17033460 )->Count( 0018EC28 )
    0x000019C0 21489 3  XPCOM R: ( (dsIProperties*)17033460 )->Count( *0018EC28 = 0x00000005 ) = 0x00000000
    0x000019C0 21489 3  XPCOM C: ( (dsIProperties*)17033460 )->getProperty( 0x00000003, 0018EC08 )
    0x000019C0 21489 3  XPCOM R: ( (dsIProperties*)17033460 )->getProperty( 0x00000003, *0018EC08 = 1702F978 ) = 0x00000000
    0x000019C0 21489 3  XPCOM C: ( (dsIProperty*)1702F978 )->getPropertyType( 0018EB88 )
    0x000019C0 21489 3  XPCOM R: ( (dsIProperty*)1702F978 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 21489 3  XPCOM C: ( (dsIProperty*)1702F978 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21489 3  XPCOM R: ( (dsIProperty*)1702F978 )->queryInterface( 170B3A38, *0018EB88 = 1702F9E4 ) = 0x00000000
    0x000019C0 21490 3  XPCOM C: ( (dsIBooleanProperty*)1702F9E4 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21490 3  XPCOM R: ( (dsIBooleanProperty*)1702F9E4 )->queryInterface( 170B3A38, *0018EB88 = 1702F9E4 ) = 0x00000000
    0x000019C0 21490 3  XPCOM C: ( (dsIBooleanProperty*)1702F9E4 )->Name( 0018EBF8 )
    0x000019C0 21490 3  XPCOM R: ( (dsIBooleanProperty*)1702F9E4 )->Name( *0018EBF8 = Reset the target on a program load or restart ) = 0x00000000
    0x000019C0 21490 3  XPCOM C: ( (dsIProperties*)17033460 )->getProperty( 0x00000003, 0018EC08 )
    0x000019C0 21490 3  XPCOM R: ( (dsIProperties*)17033460 )->getProperty( 0x00000003, *0018EC08 = 1702F978 ) = 0x00000000
    0x000019C0 21490 3  XPCOM C: ( (dsIProperty*)1702F978 )->getPropertyType( 0018EB88 )
    0x000019C0 21490 3  XPCOM R: ( (dsIProperty*)1702F978 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 21490 3  XPCOM C: ( (dsIProperty*)1702F978 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21490 3  XPCOM R: ( (dsIProperty*)1702F978 )->queryInterface( 170B3A38, *0018EB88 = 1702F9E4 ) = 0x00000000
    0x000019C0 21490 3  XPCOM C: ( (dsIBooleanProperty*)1702F9E4 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21490 3  XPCOM R: ( (dsIBooleanProperty*)1702F9E4 )->queryInterface( 170B3A38, *0018EB88 = 1702F9E4 ) = 0x00000000
    0x000019C0 21490 3  XPCOM C: ( (dsIProperties*)17033460 )->Count( 0018EC28 )
    0x000019C0 21490 3  XPCOM R: ( (dsIProperties*)17033460 )->Count( *0018EC28 = 0x00000005 ) = 0x00000000
    0x000019C0 21490 3  XPCOM C: ( (dsIProperties*)17033460 )->getProperty( 0x00000004, 0018EC08 )
    0x000019C0 21490 3  XPCOM R: ( (dsIProperties*)17033460 )->getProperty( 0x00000004, *0018EC08 = 1702FA00 ) = 0x00000000
    0x000019C0 21490 3  XPCOM C: ( (dsIProperty*)1702FA00 )->getPropertyType( 0018EB88 )
    0x000019C0 21490 3  XPCOM R: ( (dsIProperty*)1702FA00 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 21490 3  XPCOM C: ( (dsIProperty*)1702FA00 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21490 3  XPCOM R: ( (dsIProperty*)1702FA00 )->queryInterface( 170B3A38, *0018EB88 = 1702FA6C ) = 0x00000000
    0x000019C0 21490 3  XPCOM C: ( (dsIBooleanProperty*)1702FA6C )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21490 3  XPCOM R: ( (dsIBooleanProperty*)1702FA6C )->queryInterface( 170B3A38, *0018EB88 = 1702FA6C ) = 0x00000000
    0x000019C0 21490 3  XPCOM C: ( (dsIBooleanProperty*)1702FA6C )->Name( 0018EBF8 )
    0x000019C0 21490 3  XPCOM R: ( (dsIBooleanProperty*)1702FA6C )->Name( *0018EBF8 = Restart the target on a symbol load as well as a program load ) = 0x00000000
    0x000019C0 21490 3  XPCOM C: ( (dsIProperties*)17033460 )->getProperty( 0x00000004, 0018EC08 )
    0x000019C0 21490 3  XPCOM R: ( (dsIProperties*)17033460 )->getProperty( 0x00000004, *0018EC08 = 1702FA00 ) = 0x00000000
    0x000019C0 21490 3  XPCOM C: ( (dsIProperty*)1702FA00 )->getPropertyType( 0018EB88 )
    0x000019C0 21490 3  XPCOM R: ( (dsIProperty*)1702FA00 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 21490 3  XPCOM C: ( (dsIProperty*)1702FA00 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21490 3  XPCOM R: ( (dsIProperty*)1702FA00 )->queryInterface( 170B3A38, *0018EB88 = 1702FA6C ) = 0x00000000
    0x000019C0 21490 3  XPCOM C: ( (dsIBooleanProperty*)1702FA6C )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21490 3  XPCOM R: ( (dsIBooleanProperty*)1702FA6C )->queryInterface( 170B3A38, *0018EB88 = 1702FA6C ) = 0x00000000
    0x000019C0 21490 3  XPCOM C: ( (dsIProperties*)17033460 )->Count( 0018EC28 )
    0x000019C0 21490 3  XPCOM R: ( (dsIProperties*)17033460 )->Count( *0018EC28 = 0x00000005 ) = 0x00000000
    0x000019C0 21490 3  XPCOM C: ( (dsIProperties*)17034A50 )->Count( 0018EC68 )
    0x000019C0 21490 3  XPCOM R: ( (dsIProperties*)17034A50 )->Count( *0018EC68 = 0x00000005 ) = 0x00000000
    0x000019C0 21490 3  XPCOM C: ( (dsIProperties*)17034A50 )->getProperty( 0x00000001, 0018EC48 )
    0x000019C0 21490 3  XPCOM R: ( (dsIProperties*)17034A50 )->getProperty( 0x00000001, *0018EC48 = 17020EA0 ) = 0x00000000
    0x000019C0 21490 3  XPCOM C: ( (dsIProperty*)17020EA0 )->getPropertyType( 0018EBC8 )
    0x000019C0 21490 3  XPCOM R: ( (dsIProperty*)17020EA0 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 21490 3  XPCOM C: ( (dsIProperty*)17020EA0 )->queryInterface( 170B3A38, 0018EBC8 )
    0x000019C0 21490 3  XPCOM R: ( (dsIProperty*)17020EA0 )->queryInterface( 170B3A38, *0018EBC8 = 17020F0C ) = 0x00000000
    0x000019C0 21491 3  XPCOM C: ( (dsINode*)17020F0C )->queryInterface( 170B3A38, 0018EBC8 )
    0x000019C0 21491 3  XPCOM R: ( (dsINode*)17020F0C )->queryInterface( 170B3A38, *0018EBC8 = 17020F0C ) = 0x00000000
    0x000019C0 21491 3  XPCOM C: ( (dsINode*)17020F0C )->Name( 0018EC38 )
    0x000019C0 21491 3  XPCOM R: ( (dsINode*)17020F0C )->Name( *0018EC38 = Auto Run and Launch Options ) = 0x00000000
    0x000019C0 21491 3  XPCOM C: ( (dsIProperties*)17034A50 )->getProperty( 0x00000001, 0018EC48 )
    0x000019C0 21491 3  XPCOM R: ( (dsIProperties*)17034A50 )->getProperty( 0x00000001, *0018EC48 = 17020EA0 ) = 0x00000000
    0x000019C0 21491 3  XPCOM C: ( (dsIProperty*)17020EA0 )->getPropertyType( 0018EBC8 )
    0x000019C0 21491 3  XPCOM R: ( (dsIProperty*)17020EA0 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 21491 3  XPCOM C: ( (dsIProperty*)17020EA0 )->queryInterface( 170B3A38, 0018EBC8 )
    0x000019C0 21491 3  XPCOM R: ( (dsIProperty*)17020EA0 )->queryInterface( 170B3A38, *0018EBC8 = 17020F0C ) = 0x00000000
    0x000019C0 21491 3  XPCOM C: ( (dsINode*)17020F0C )->queryInterface( 170B3A38, 0018EBC8 )
    0x000019C0 21491 3  XPCOM R: ( (dsINode*)17020F0C )->queryInterface( 170B3A38, *0018EBC8 = 17020F0C ) = 0x00000000
    0x000019C0 21491 3  XPCOM C: ( (dsINode*)17020F0C )->getChildren( 0018EC08 )
    0x000019C0 21491 3  XPCOM R: ( (dsINode*)17020F0C )->getChildren( *0018EC08 = 17034780 ) = 0x00000000
    0x000019C0 21491 3  XPCOM C: ( (dsIProperties*)17034A50 )->getProperty( 0x00000001, 0018EC48 )
    0x000019C0 21491 3  XPCOM R: ( (dsIProperties*)17034A50 )->getProperty( 0x00000001, *0018EC48 = 17020EA0 ) = 0x00000000
    0x000019C0 21491 3  XPCOM C: ( (dsIProperty*)17020EA0 )->getPropertyType( 0018EBC8 )
    0x000019C0 21491 3  XPCOM R: ( (dsIProperty*)17020EA0 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 21491 3  XPCOM C: ( (dsIProperty*)17020EA0 )->queryInterface( 170B3A38, 0018EBC8 )
    0x000019C0 21491 3  XPCOM R: ( (dsIProperty*)17020EA0 )->queryInterface( 170B3A38, *0018EBC8 = 17020F0C ) = 0x00000000
    0x000019C0 21491 3  XPCOM C: ( (dsINode*)17020F0C )->queryInterface( 170B3A38, 0018EBC8 )
    0x000019C0 21491 3  XPCOM R: ( (dsINode*)17020F0C )->queryInterface( 170B3A38, *0018EBC8 = 17020F0C ) = 0x00000000
    0x000019C0 21491 3  XPCOM C: ( (dsINode*)17020F0C )->getChildren( 0018EC08 )
    0x000019C0 21491 3  XPCOM R: ( (dsINode*)17020F0C )->getChildren( *0018EC08 = 17033790 ) = 0x00000000
    0x000019C0 21491 3  XPCOM C: ( (dsIProperties*)17033790 )->Count( 0018EC68 )
    0x000019C0 21491 3  XPCOM R: ( (dsIProperties*)17033790 )->Count( *0018EC68 = 0x00000003 ) = 0x00000000
    0x000019C0 21491 3  XPCOM C: ( (dsIProperties*)17034A50 )->getProperty( 0x00000001, 0018EC48 )
    0x000019C0 21491 3  XPCOM R: ( (dsIProperties*)17034A50 )->getProperty( 0x00000001, *0018EC48 = 17020EA0 ) = 0x00000000
    0x000019C0 21491 3  XPCOM C: ( (dsIProperty*)17020EA0 )->getPropertyType( 0018EBC8 )
    0x000019C0 21491 3  XPCOM R: ( (dsIProperty*)17020EA0 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 21491 3  XPCOM C: ( (dsIProperty*)17020EA0 )->queryInterface( 170B3A38, 0018EBC8 )
    0x000019C0 21491 3  XPCOM R: ( (dsIProperty*)17020EA0 )->queryInterface( 170B3A38, *0018EBC8 = 17020F0C ) = 0x00000000
    0x000019C0 21491 3  XPCOM C: ( (dsINode*)17020F0C )->queryInterface( 170B3A38, 0018EBC8 )
    0x000019C0 21491 3  XPCOM R: ( (dsINode*)17020F0C )->queryInterface( 170B3A38, *0018EBC8 = 17020F0C ) = 0x00000000
    0x000019C0 21491 3  XPCOM C: ( (dsINode*)17020F0C )->getChildren( 0018EC08 )
    0x000019C0 21491 3  XPCOM R: ( (dsINode*)17020F0C )->getChildren( *0018EC08 = 17034C00 ) = 0x00000000
    0x000019C0 21491 3  XPCOM C: ( (dsIProperties*)17034C00 )->Count( 0018EC28 )
    0x000019C0 21491 3  XPCOM R: ( (dsIProperties*)17034C00 )->Count( *0018EC28 = 0x00000003 ) = 0x00000000
    0x000019C0 21491 3  XPCOM C: ( (dsIProperties*)17034C00 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 21491 3  XPCOM R: ( (dsIProperties*)17034C00 )->getProperty( 0x00000000, *0018EC08 = 17132E48 ) = 0x00000000
    0x000019C0 21491 3  XPCOM C: ( (dsIProperty*)17132E48 )->getPropertyType( 0018EB88 )
    0x000019C0 21491 3  XPCOM R: ( (dsIProperty*)17132E48 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21492 3  XPCOM C: ( (dsIProperty*)17132E48 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21492 3  XPCOM R: ( (dsIProperty*)17132E48 )->queryInterface( 170B3A38, *0018EB88 = 17132EB4 ) = 0x00000000
    0x000019C0 21492 3  XPCOM C: ( (dsIGroup*)17132EB4 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21492 3  XPCOM R: ( (dsIGroup*)17132EB4 )->queryInterface( 170B3A38, *0018EB88 = 17132EB4 ) = 0x00000000
    0x000019C0 21492 3  XPCOM C: ( (dsIGroup*)17132EB4 )->Name( 0018EBF8 )
    0x000019C0 21492 3  XPCOM R: ( (dsIGroup*)17132EB4 )->Name( *0018EBF8 = Realtime Options ) = 0x00000000
    0x000019C0 21492 3  XPCOM C: ( (dsIProperties*)17034C00 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 21492 3  XPCOM R: ( (dsIProperties*)17034C00 )->getProperty( 0x00000000, *0018EC08 = 17132E48 ) = 0x00000000
    0x000019C0 21492 3  XPCOM C: ( (dsIProperty*)17132E48 )->getPropertyType( 0018EB88 )
    0x000019C0 21492 3  XPCOM R: ( (dsIProperty*)17132E48 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21492 3  XPCOM C: ( (dsIProperty*)17132E48 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21492 3  XPCOM R: ( (dsIProperty*)17132E48 )->queryInterface( 170B3A38, *0018EB88 = 17132EB4 ) = 0x00000000
    0x000019C0 21492 3  XPCOM C: ( (dsIGroup*)17132EB4 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21492 3  XPCOM R: ( (dsIGroup*)17132EB4 )->queryInterface( 170B3A38, *0018EB88 = 17132EB4 ) = 0x00000000
    0x000019C0 21492 3  XPCOM C: ( (dsIGroup*)17132EB4 )->getChildren( 0018EBC8 )
    0x000019C0 21492 3  XPCOM R: ( (dsIGroup*)17132EB4 )->getChildren( *0018EBC8 = 170346C0 ) = 0x00000000
    0x000019C0 21492 3  XPCOM C: ( (dsIProperties*)17034C00 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 21492 3  XPCOM R: ( (dsIProperties*)17034C00 )->getProperty( 0x00000000, *0018EC08 = 17132E48 ) = 0x00000000
    0x000019C0 21492 3  XPCOM C: ( (dsIProperty*)17132E48 )->getPropertyType( 0018EB88 )
    0x000019C0 21492 3  XPCOM R: ( (dsIProperty*)17132E48 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21492 3  XPCOM C: ( (dsIProperty*)17132E48 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21492 3  XPCOM R: ( (dsIProperty*)17132E48 )->queryInterface( 170B3A38, *0018EB88 = 17132EB4 ) = 0x00000000
    0x000019C0 21492 3  XPCOM C: ( (dsIGroup*)17132EB4 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21492 3  XPCOM R: ( (dsIGroup*)17132EB4 )->queryInterface( 170B3A38, *0018EB88 = 17132EB4 ) = 0x00000000
    0x000019C0 21492 3  XPCOM C: ( (dsIGroup*)17132EB4 )->getChildren( 0018EBC8 )
    0x000019C0 21492 3  XPCOM R: ( (dsIGroup*)17132EB4 )->getChildren( *0018EBC8 = 1862D0A8 ) = 0x00000000
    0x000019C0 21492 3  XPCOM C: ( (dsIProperties*)1862D0A8 )->Count( 0018EC28 )
    0x000019C0 21492 3  XPCOM R: ( (dsIProperties*)1862D0A8 )->Count( *0018EC28 = 0x00000003 ) = 0x00000000
    0x000019C0 21492 3  XPCOM C: ( (dsIProperties*)17034C00 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 21492 3  XPCOM R: ( (dsIProperties*)17034C00 )->getProperty( 0x00000000, *0018EC08 = 17132E48 ) = 0x00000000
    0x000019C0 21492 3  XPCOM C: ( (dsIProperty*)17132E48 )->getPropertyType( 0018EB88 )
    0x000019C0 21492 3  XPCOM R: ( (dsIProperty*)17132E48 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21492 3  XPCOM C: ( (dsIProperty*)17132E48 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21492 3  XPCOM R: ( (dsIProperty*)17132E48 )->queryInterface( 170B3A38, *0018EB88 = 17132EB4 ) = 0x00000000
    0x000019C0 21492 3  XPCOM C: ( (dsIGroup*)17132EB4 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21492 3  XPCOM R: ( (dsIGroup*)17132EB4 )->queryInterface( 170B3A38, *0018EB88 = 17132EB4 ) = 0x00000000
    0x000019C0 21492 3  XPCOM C: ( (dsIGroup*)17132EB4 )->getChildren( 0018EBC8 )
    0x000019C0 21492 3  XPCOM R: ( (dsIGroup*)17132EB4 )->getChildren( *0018EBC8 = 1862D078 ) = 0x00000000
    0x000019C0 21492 3  XPCOM C: ( (dsIProperties*)1862D078 )->Count( 0018EBE8 )
    0x000019C0 21492 3  XPCOM R: ( (dsIProperties*)1862D078 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21492 3  XPCOM C: ( (dsIProperties*)1862D078 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 21492 3  XPCOM R: ( (dsIProperties*)1862D078 )->getProperty( 0x00000000, *0018EBC8 = 1702FC20 ) = 0x00000000
    0x000019C0 21492 3  XPCOM C: ( (dsIProperty*)1702FC20 )->getPropertyType( 0018EB48 )
    0x000019C0 21493 3  XPCOM R: ( (dsIProperty*)1702FC20 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21493 3  XPCOM C: ( (dsIProperty*)1702FC20 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21493 3  XPCOM R: ( (dsIProperty*)1702FC20 )->queryInterface( 170B3A38, *0018EB48 = 1702FC8C ) = 0x00000000
    0x000019C0 21493 3  XPCOM C: ( (dsIBooleanProperty*)1702FC8C )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21493 3  XPCOM R: ( (dsIBooleanProperty*)1702FC8C )->queryInterface( 170B3A38, *0018EB48 = 1702FC8C ) = 0x00000000
    0x000019C0 21493 3  XPCOM C: ( (dsIBooleanProperty*)1702FC8C )->Name( 0018EBB8 )
    0x000019C0 21493 3  XPCOM R: ( (dsIBooleanProperty*)1702FC8C )->Name( *0018EBB8 = Halt the target before any debugger access (will impact servicing of interrupts) ) = 0x00000000
    0x000019C0 21493 3  XPCOM C: ( (dsIProperties*)1862D078 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 21493 3  XPCOM R: ( (dsIProperties*)1862D078 )->getProperty( 0x00000000, *0018EBC8 = 1702FC20 ) = 0x00000000
    0x000019C0 21493 3  XPCOM C: ( (dsIProperty*)1702FC20 )->getPropertyType( 0018EB48 )
    0x000019C0 21493 3  XPCOM R: ( (dsIProperty*)1702FC20 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21493 3  XPCOM C: ( (dsIProperty*)1702FC20 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21493 3  XPCOM R: ( (dsIProperty*)1702FC20 )->queryInterface( 170B3A38, *0018EB48 = 1702FC8C ) = 0x00000000
    0x000019C0 21493 3  XPCOM C: ( (dsIBooleanProperty*)1702FC8C )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21493 3  XPCOM R: ( (dsIBooleanProperty*)1702FC8C )->queryInterface( 170B3A38, *0018EB48 = 1702FC8C ) = 0x00000000
    0x000019C0 21493 3  XPCOM C: ( (dsIProperties*)1862D078 )->Count( 0018EBE8 )
    0x000019C0 21493 3  XPCOM R: ( (dsIProperties*)1862D078 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21493 3  XPCOM C: ( (dsIProperties*)1862D078 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 21493 3  XPCOM R: ( (dsIProperties*)1862D078 )->getProperty( 0x00000001, *0018EBC8 = 1702FCA8 ) = 0x00000000
    0x000019C0 21493 3  XPCOM C: ( (dsIProperty*)1702FCA8 )->getPropertyType( 0018EB48 )
    0x000019C0 21493 3  XPCOM R: ( (dsIProperty*)1702FCA8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21493 3  XPCOM C: ( (dsIProperty*)1702FCA8 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21493 3  XPCOM R: ( (dsIProperty*)1702FCA8 )->queryInterface( 170B3A38, *0018EB48 = 1702FD14 ) = 0x00000000
    0x000019C0 21493 3  XPCOM C: ( (dsIBooleanProperty*)1702FD14 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21493 3  XPCOM R: ( (dsIBooleanProperty*)1702FD14 )->queryInterface( 170B3A38, *0018EB48 = 1702FD14 ) = 0x00000000
    0x000019C0 21493 3  XPCOM C: ( (dsIBooleanProperty*)1702FD14 )->Name( 0018EBB8 )
    0x000019C0 21493 3  XPCOM R: ( (dsIBooleanProperty*)1702FD14 )->Name( *0018EBB8 = Enable realtime mode (critical interrupts serviced when halted, rude/polite mode...) ) = 0x00000000
    0x000019C0 21493 3  XPCOM C: ( (dsIProperties*)1862D078 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 21493 3  XPCOM R: ( (dsIProperties*)1862D078 )->getProperty( 0x00000001, *0018EBC8 = 1702FCA8 ) = 0x00000000
    0x000019C0 21493 3  XPCOM C: ( (dsIProperty*)1702FCA8 )->getPropertyType( 0018EB48 )
    0x000019C0 21493 3  XPCOM R: ( (dsIProperty*)1702FCA8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21493 3  XPCOM C: ( (dsIProperty*)1702FCA8 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21493 3  XPCOM R: ( (dsIProperty*)1702FCA8 )->queryInterface( 170B3A38, *0018EB48 = 1702FD14 ) = 0x00000000
    0x000019C0 21493 3  XPCOM C: ( (dsIBooleanProperty*)1702FD14 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21493 3  XPCOM R: ( (dsIBooleanProperty*)1702FD14 )->queryInterface( 170B3A38, *0018EB48 = 1702FD14 ) = 0x00000000
    0x000019C0 21493 3  XPCOM C: ( (dsIProperties*)1862D078 )->Count( 0018EBE8 )
    0x000019C0 21493 3  XPCOM R: ( (dsIProperties*)1862D078 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21493 3  XPCOM C: ( (dsIProperties*)1862D078 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 21493 3  XPCOM R: ( (dsIProperties*)1862D078 )->getProperty( 0x00000002, *0018EBC8 = 1702FD30 ) = 0x00000000
    0x000019C0 21493 3  XPCOM C: ( (dsIProperty*)1702FD30 )->getPropertyType( 0018EB48 )
    0x000019C0 21493 3  XPCOM R: ( (dsIProperty*)1702FD30 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21493 3  XPCOM C: ( (dsIProperty*)1702FD30 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21493 3  XPCOM R: ( (dsIProperty*)1702FD30 )->queryInterface( 170B3A38, *0018EB48 = 1702FD9C ) = 0x00000000
    0x000019C0 21494 3  XPCOM C: ( (dsIBooleanProperty*)1702FD9C )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21494 3  XPCOM R: ( (dsIBooleanProperty*)1702FD9C )->queryInterface( 170B3A38, *0018EB48 = 1702FD9C ) = 0x00000000
    0x000019C0 21494 3  XPCOM C: ( (dsIBooleanProperty*)1702FD9C )->Name( 0018EBB8 )
    0x000019C0 21494 3  XPCOM R: ( (dsIBooleanProperty*)1702FD9C )->Name( *0018EBB8 = Enable polite mode (respect HPI, DBGM and FRAMEID) ) = 0x00000000
    0x000019C0 21494 3  XPCOM C: ( (dsIProperties*)1862D078 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 21494 3  XPCOM R: ( (dsIProperties*)1862D078 )->getProperty( 0x00000002, *0018EBC8 = 1702FD30 ) = 0x00000000
    0x000019C0 21494 3  XPCOM C: ( (dsIProperty*)1702FD30 )->getPropertyType( 0018EB48 )
    0x000019C0 21494 3  XPCOM R: ( (dsIProperty*)1702FD30 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21494 3  XPCOM C: ( (dsIProperty*)1702FD30 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21494 3  XPCOM R: ( (dsIProperty*)1702FD30 )->queryInterface( 170B3A38, *0018EB48 = 1702FD9C ) = 0x00000000
    0x000019C0 21494 3  XPCOM C: ( (dsIBooleanProperty*)1702FD9C )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21494 3  XPCOM R: ( (dsIBooleanProperty*)1702FD9C )->queryInterface( 170B3A38, *0018EB48 = 1702FD9C ) = 0x00000000
    0x000019C0 21494 3  XPCOM C: ( (dsIProperties*)1862D078 )->Count( 0018EBE8 )
    0x000019C0 21494 3  XPCOM R: ( (dsIProperties*)1862D078 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21494 3  XPCOM C: ( (dsIProperties*)17034C00 )->Count( 0018EC28 )
    0x000019C0 21494 3  XPCOM R: ( (dsIProperties*)17034C00 )->Count( *0018EC28 = 0x00000003 ) = 0x00000000
    0x000019C0 21494 3  XPCOM C: ( (dsIProperties*)17034C00 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 21494 3  XPCOM R: ( (dsIProperties*)17034C00 )->getProperty( 0x00000001, *0018EC08 = 17132F58 ) = 0x00000000
    0x000019C0 21494 3  XPCOM C: ( (dsIProperty*)17132F58 )->getPropertyType( 0018EB88 )
    0x000019C0 21494 3  XPCOM R: ( (dsIProperty*)17132F58 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21494 3  XPCOM C: ( (dsIProperty*)17132F58 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21494 3  XPCOM R: ( (dsIProperty*)17132F58 )->queryInterface( 170B3A38, *0018EB88 = 17132FC4 ) = 0x00000000
    0x000019C0 21494 3  XPCOM C: ( (dsIGroup*)17132FC4 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21494 3  XPCOM R: ( (dsIGroup*)17132FC4 )->queryInterface( 170B3A38, *0018EB88 = 17132FC4 ) = 0x00000000
    0x000019C0 21494 3  XPCOM C: ( (dsIGroup*)17132FC4 )->Name( 0018EBF8 )
    0x000019C0 21494 3  XPCOM R: ( (dsIGroup*)17132FC4 )->Name( *0018EBF8 = Auto Run Options ) = 0x00000000
    0x000019C0 21494 3  XPCOM C: ( (dsIProperties*)17034C00 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 21494 3  XPCOM R: ( (dsIProperties*)17034C00 )->getProperty( 0x00000001, *0018EC08 = 17132F58 ) = 0x00000000
    0x000019C0 21494 3  XPCOM C: ( (dsIProperty*)17132F58 )->getPropertyType( 0018EB88 )
    0x000019C0 21494 3  XPCOM R: ( (dsIProperty*)17132F58 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21494 3  XPCOM C: ( (dsIProperty*)17132F58 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21494 3  XPCOM R: ( (dsIProperty*)17132F58 )->queryInterface( 170B3A38, *0018EB88 = 17132FC4 ) = 0x00000000
    0x000019C0 21494 3  XPCOM C: ( (dsIGroup*)17132FC4 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21494 3  XPCOM R: ( (dsIGroup*)17132FC4 )->queryInterface( 170B3A38, *0018EB88 = 17132FC4 ) = 0x00000000
    0x000019C0 21494 3  XPCOM C: ( (dsIGroup*)17132FC4 )->getChildren( 0018EBC8 )
    0x000019C0 21494 3  XPCOM R: ( (dsIGroup*)17132FC4 )->getChildren( *0018EBC8 = 1862D048 ) = 0x00000000
    0x000019C0 21494 3  XPCOM C: ( (dsIProperties*)17034C00 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 21494 3  XPCOM R: ( (dsIProperties*)17034C00 )->getProperty( 0x00000001, *0018EC08 = 17132F58 ) = 0x00000000
    0x000019C0 21494 3  XPCOM C: ( (dsIProperty*)17132F58 )->getPropertyType( 0018EB88 )
    0x000019C0 21494 3  XPCOM R: ( (dsIProperty*)17132F58 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21494 3  XPCOM C: ( (dsIProperty*)17132F58 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21494 3  XPCOM R: ( (dsIProperty*)17132F58 )->queryInterface( 170B3A38, *0018EB88 = 17132FC4 ) = 0x00000000
    0x000019C0 21495 3  XPCOM C: ( (dsIGroup*)17132FC4 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21495 3  XPCOM R: ( (dsIGroup*)17132FC4 )->queryInterface( 170B3A38, *0018EB88 = 17132FC4 ) = 0x00000000
    0x000019C0 21495 3  XPCOM C: ( (dsIGroup*)17132FC4 )->getChildren( 0018EBC8 )
    0x000019C0 21495 3  XPCOM R: ( (dsIGroup*)17132FC4 )->getChildren( *0018EBC8 = 1862D018 ) = 0x00000000
    0x000019C0 21495 3  XPCOM C: ( (dsIProperties*)1862D018 )->Count( 0018EC28 )
    0x000019C0 21495 3  XPCOM R: ( (dsIProperties*)1862D018 )->Count( *0018EC28 = 0x00000003 ) = 0x00000000
    0x000019C0 21495 3  XPCOM C: ( (dsIProperties*)17034C00 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 21495 3  XPCOM R: ( (dsIProperties*)17034C00 )->getProperty( 0x00000001, *0018EC08 = 17132F58 ) = 0x00000000
    0x000019C0 21495 3  XPCOM C: ( (dsIProperty*)17132F58 )->getPropertyType( 0018EB88 )
    0x000019C0 21495 3  XPCOM R: ( (dsIProperty*)17132F58 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21495 3  XPCOM C: ( (dsIProperty*)17132F58 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21495 3  XPCOM R: ( (dsIProperty*)17132F58 )->queryInterface( 170B3A38, *0018EB88 = 17132FC4 ) = 0x00000000
    0x000019C0 21495 3  XPCOM C: ( (dsIGroup*)17132FC4 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21495 3  XPCOM R: ( (dsIGroup*)17132FC4 )->queryInterface( 170B3A38, *0018EB88 = 17132FC4 ) = 0x00000000
    0x000019C0 21495 3  XPCOM C: ( (dsIGroup*)17132FC4 )->getChildren( 0018EBC8 )
    0x000019C0 21495 3  XPCOM R: ( (dsIGroup*)17132FC4 )->getChildren( *0018EBC8 = 1862CFE8 ) = 0x00000000
    0x000019C0 21495 3  XPCOM C: ( (dsIProperties*)1862CFE8 )->Count( 0018EBE8 )
    0x000019C0 21495 3  XPCOM R: ( (dsIProperties*)1862CFE8 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21495 3  XPCOM C: ( (dsIProperties*)1862CFE8 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 21495 3  XPCOM R: ( (dsIProperties*)1862CFE8 )->getProperty( 0x00000000, *0018EBC8 = 12296818 ) = 0x00000000
    0x000019C0 21495 3  XPCOM C: ( (dsIProperty*)12296818 )->getPropertyType( 0018EB48 )
    0x000019C0 21495 3  XPCOM R: ( (dsIProperty*)12296818 )->getPropertyType( *0018EB48 = 0x00000004 ) = 0x00000000
    0x000019C0 21495 3  XPCOM C: ( (dsIProperty*)12296818 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21495 3  XPCOM R: ( (dsIProperty*)12296818 )->queryInterface( 170B3A38, *0018EB48 = 12296884 ) = 0x00000000
    0x000019C0 21495 3  XPCOM C: ( (dsIStringProperty*)12296884 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21495 3  XPCOM R: ( (dsIStringProperty*)12296884 )->queryInterface( 170B3A38, *0018EB48 = 12296884 ) = 0x00000000
    0x000019C0 21495 3  XPCOM C: ( (dsIStringProperty*)12296884 )->Name( 0018EBB8 )
    0x000019C0 21495 3  XPCOM R: ( (dsIStringProperty*)12296884 )->Name( *0018EBB8 = Run to symbol ) = 0x00000000
    0x000019C0 21495 3  XPCOM C: ( (dsIProperties*)1862CFE8 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 21495 3  XPCOM R: ( (dsIProperties*)1862CFE8 )->getProperty( 0x00000000, *0018EBC8 = 12296818 ) = 0x00000000
    0x000019C0 21495 3  XPCOM C: ( (dsIProperty*)12296818 )->getPropertyType( 0018EB48 )
    0x000019C0 21495 3  XPCOM R: ( (dsIProperty*)12296818 )->getPropertyType( *0018EB48 = 0x00000004 ) = 0x00000000
    0x000019C0 21495 3  XPCOM C: ( (dsIProperty*)12296818 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21495 3  XPCOM R: ( (dsIProperty*)12296818 )->queryInterface( 170B3A38, *0018EB48 = 12296884 ) = 0x00000000
    0x000019C0 21495 3  XPCOM C: ( (dsIStringProperty*)12296884 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21496 3  XPCOM R: ( (dsIStringProperty*)12296884 )->queryInterface( 170B3A38, *0018EB48 = 12296884 ) = 0x00000000
    0x000019C0 21496 3  XPCOM C: ( (dsIProperties*)1862CFE8 )->Count( 0018EBE8 )
    0x000019C0 21496 3  XPCOM R: ( (dsIProperties*)1862CFE8 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21496 3  XPCOM C: ( (dsIProperties*)1862CFE8 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 21496 3  XPCOM R: ( (dsIProperties*)1862CFE8 )->getProperty( 0x00000001, *0018EBC8 = 1702FDB8 ) = 0x00000000
    0x000019C0 21496 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->getPropertyType( 0018EB48 )
    0x000019C0 21496 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21496 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21496 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->queryInterface( 170B3A38, *0018EB48 = 1702FE24 ) = 0x00000000
    0x000019C0 21496 3  XPCOM C: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21496 3  XPCOM R: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 170B3A38, *0018EB48 = 1702FE24 ) = 0x00000000
    0x000019C0 21496 3  XPCOM C: ( (dsIBooleanProperty*)1702FE24 )->Name( 0018EBB8 )
    0x000019C0 21496 3  XPCOM R: ( (dsIBooleanProperty*)1702FE24 )->Name( *0018EBB8 = On a program load or restart ) = 0x00000000
    0x000019C0 21496 3  XPCOM C: ( (dsIProperties*)1862CFE8 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 21496 3  XPCOM R: ( (dsIProperties*)1862CFE8 )->getProperty( 0x00000001, *0018EBC8 = 1702FDB8 ) = 0x00000000
    0x000019C0 21496 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->getPropertyType( 0018EB48 )
    0x000019C0 21496 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21496 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21496 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->queryInterface( 170B3A38, *0018EB48 = 1702FE24 ) = 0x00000000
    0x000019C0 21496 3  XPCOM C: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21496 3  XPCOM R: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 170B3A38, *0018EB48 = 1702FE24 ) = 0x00000000
    0x000019C0 21496 3  XPCOM C: ( (dsIProperties*)1862CFE8 )->Count( 0018EBE8 )
    0x000019C0 21496 3  XPCOM R: ( (dsIProperties*)1862CFE8 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21496 3  XPCOM C: ( (dsIProperties*)1862CFE8 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 21496 3  XPCOM R: ( (dsIProperties*)1862CFE8 )->getProperty( 0x00000002, *0018EBC8 = 1702FE40 ) = 0x00000000
    0x000019C0 21496 3  XPCOM C: ( (dsIProperty*)1702FE40 )->getPropertyType( 0018EB48 )
    0x000019C0 21496 3  XPCOM R: ( (dsIProperty*)1702FE40 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21496 3  XPCOM C: ( (dsIProperty*)1702FE40 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21496 3  XPCOM R: ( (dsIProperty*)1702FE40 )->queryInterface( 170B3A38, *0018EB48 = 1702FEAC ) = 0x00000000
    0x000019C0 21496 3  XPCOM C: ( (dsIBooleanProperty*)1702FEAC )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21496 3  XPCOM R: ( (dsIBooleanProperty*)1702FEAC )->queryInterface( 170B3A38, *0018EB48 = 1702FEAC ) = 0x00000000
    0x000019C0 21496 3  XPCOM C: ( (dsIBooleanProperty*)1702FEAC )->Name( 0018EBB8 )
    0x000019C0 21496 3  XPCOM R: ( (dsIBooleanProperty*)1702FEAC )->Name( *0018EBB8 = On a reset ) = 0x00000000
    0x000019C0 21496 3  XPCOM C: ( (dsIProperties*)1862CFE8 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 21496 3  XPCOM R: ( (dsIProperties*)1862CFE8 )->getProperty( 0x00000002, *0018EBC8 = 1702FE40 ) = 0x00000000
    0x000019C0 21496 3  XPCOM C: ( (dsIProperty*)1702FE40 )->getPropertyType( 0018EB48 )
    0x000019C0 21496 3  XPCOM R: ( (dsIProperty*)1702FE40 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21496 3  XPCOM C: ( (dsIProperty*)1702FE40 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21496 3  XPCOM R: ( (dsIProperty*)1702FE40 )->queryInterface( 170B3A38, *0018EB48 = 1702FEAC ) = 0x00000000
    0x000019C0 21496 3  XPCOM C: ( (dsIBooleanProperty*)1702FEAC )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21496 3  XPCOM R: ( (dsIBooleanProperty*)1702FEAC )->queryInterface( 170B3A38, *0018EB48 = 1702FEAC ) = 0x00000000
    0x000019C0 21496 3  XPCOM C: ( (dsIProperties*)1862CFE8 )->Count( 0018EBE8 )
    0x000019C0 21496 3  XPCOM R: ( (dsIProperties*)1862CFE8 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21497 3  XPCOM C: ( (dsIProperties*)17034C00 )->Count( 0018EC28 )
    0x000019C0 21497 3  XPCOM R: ( (dsIProperties*)17034C00 )->Count( *0018EC28 = 0x00000003 ) = 0x00000000
    0x000019C0 21497 3  XPCOM C: ( (dsIProperties*)17034C00 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 21497 3  XPCOM R: ( (dsIProperties*)17034C00 )->getProperty( 0x00000002, *0018EC08 = 17132FE0 ) = 0x00000000
    0x000019C0 21497 3  XPCOM C: ( (dsIProperty*)17132FE0 )->getPropertyType( 0018EB88 )
    0x000019C0 21497 3  XPCOM R: ( (dsIProperty*)17132FE0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21497 3  XPCOM C: ( (dsIProperty*)17132FE0 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21497 3  XPCOM R: ( (dsIProperty*)17132FE0 )->queryInterface( 170B3A38, *0018EB88 = 1713304C ) = 0x00000000
    0x000019C0 21497 3  XPCOM C: ( (dsIGroup*)1713304C )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21497 3  XPCOM R: ( (dsIGroup*)1713304C )->queryInterface( 170B3A38, *0018EB88 = 1713304C ) = 0x00000000
    0x000019C0 21497 3  XPCOM C: ( (dsIGroup*)1713304C )->Name( 0018EBF8 )
    0x000019C0 21497 3  XPCOM R: ( (dsIGroup*)1713304C )->Name( *0018EBF8 = Launch Options ) = 0x00000000
    0x000019C0 21497 3  XPCOM C: ( (dsIProperties*)17034C00 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 21497 3  XPCOM R: ( (dsIProperties*)17034C00 )->getProperty( 0x00000002, *0018EC08 = 17132FE0 ) = 0x00000000
    0x000019C0 21497 3  XPCOM C: ( (dsIProperty*)17132FE0 )->getPropertyType( 0018EB88 )
    0x000019C0 21497 3  XPCOM R: ( (dsIProperty*)17132FE0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21497 3  XPCOM C: ( (dsIProperty*)17132FE0 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21497 3  XPCOM R: ( (dsIProperty*)17132FE0 )->queryInterface( 170B3A38, *0018EB88 = 1713304C ) = 0x00000000
    0x000019C0 21497 3  XPCOM C: ( (dsIGroup*)1713304C )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21497 3  XPCOM R: ( (dsIGroup*)1713304C )->queryInterface( 170B3A38, *0018EB88 = 1713304C ) = 0x00000000
    0x000019C0 21497 3  XPCOM C: ( (dsIGroup*)1713304C )->getChildren( 0018EBC8 )
    0x000019C0 21497 3  XPCOM R: ( (dsIGroup*)1713304C )->getChildren( *0018EBC8 = 1862CFB8 ) = 0x00000000
    0x000019C0 21497 3  XPCOM C: ( (dsIProperties*)17034C00 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 21497 3  XPCOM R: ( (dsIProperties*)17034C00 )->getProperty( 0x00000002, *0018EC08 = 17132FE0 ) = 0x00000000
    0x000019C0 21497 3  XPCOM C: ( (dsIProperty*)17132FE0 )->getPropertyType( 0018EB88 )
    0x000019C0 21497 3  XPCOM R: ( (dsIProperty*)17132FE0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21497 3  XPCOM C: ( (dsIProperty*)17132FE0 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21497 3  XPCOM R: ( (dsIProperty*)17132FE0 )->queryInterface( 170B3A38, *0018EB88 = 1713304C ) = 0x00000000
    0x000019C0 21497 3  XPCOM C: ( (dsIGroup*)1713304C )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21497 3  XPCOM R: ( (dsIGroup*)1713304C )->queryInterface( 170B3A38, *0018EB88 = 1713304C ) = 0x00000000
    0x000019C0 21497 3  XPCOM C: ( (dsIGroup*)1713304C )->getChildren( 0018EBC8 )
    0x000019C0 21497 3  XPCOM R: ( (dsIGroup*)1713304C )->getChildren( *0018EBC8 = 1862CF88 ) = 0x00000000
    0x000019C0 21497 3  XPCOM C: ( (dsIProperties*)1862CF88 )->Count( 0018EC28 )
    0x000019C0 21497 3  XPCOM R: ( (dsIProperties*)1862CF88 )->Count( *0018EC28 = 0x00000003 ) = 0x00000000
    0x000019C0 21497 3  XPCOM C: ( (dsIProperties*)17034C00 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 21497 3  XPCOM R: ( (dsIProperties*)17034C00 )->getProperty( 0x00000002, *0018EC08 = 17132FE0 ) = 0x00000000
    0x000019C0 21497 3  XPCOM C: ( (dsIProperty*)17132FE0 )->getPropertyType( 0018EB88 )
    0x000019C0 21497 3  XPCOM R: ( (dsIProperty*)17132FE0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21497 3  XPCOM C: ( (dsIProperty*)17132FE0 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21498 3  XPCOM R: ( (dsIProperty*)17132FE0 )->queryInterface( 170B3A38, *0018EB88 = 1713304C ) = 0x00000000
    0x000019C0 21498 3  XPCOM C: ( (dsIGroup*)1713304C )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21498 3  XPCOM R: ( (dsIGroup*)1713304C )->queryInterface( 170B3A38, *0018EB88 = 1713304C ) = 0x00000000
    0x000019C0 21498 3  XPCOM C: ( (dsIGroup*)1713304C )->getChildren( 0018EBC8 )
    0x000019C0 21498 3  XPCOM R: ( (dsIGroup*)1713304C )->getChildren( *0018EBC8 = 1862C418 ) = 0x00000000
    0x000019C0 21498 3  XPCOM C: ( (dsIProperties*)1862C418 )->Count( 0018EBE8 )
    0x000019C0 21498 3  XPCOM R: ( (dsIProperties*)1862C418 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21498 3  XPCOM C: ( (dsIProperties*)1862C418 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 21498 3  XPCOM R: ( (dsIProperties*)1862C418 )->getProperty( 0x00000000, *0018EBC8 = 16F51FA8 ) = 0x00000000
    0x000019C0 21498 3  XPCOM C: ( (dsIProperty*)16F51FA8 )->getPropertyType( 0018EB48 )
    0x000019C0 21498 3  XPCOM R: ( (dsIProperty*)16F51FA8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21498 3  XPCOM C: ( (dsIProperty*)16F51FA8 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21498 3  XPCOM R: ( (dsIProperty*)16F51FA8 )->queryInterface( 170B3A38, *0018EB48 = 16F52014 ) = 0x00000000
    0x000019C0 21498 3  XPCOM C: ( (dsIBooleanProperty*)16F52014 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21498 3  XPCOM R: ( (dsIBooleanProperty*)16F52014 )->queryInterface( 170B3A38, *0018EB48 = 16F52014 ) = 0x00000000
    0x000019C0 21498 3  XPCOM C: ( (dsIBooleanProperty*)16F52014 )->Name( 0018EBB8 )
    0x000019C0 21498 3  XPCOM R: ( (dsIBooleanProperty*)16F52014 )->Name( *0018EBB8 = Connect to the target on debugger startup ) = 0x00000000
    0x000019C0 21498 3  XPCOM C: ( (dsIProperties*)1862C418 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 21498 3  XPCOM R: ( (dsIProperties*)1862C418 )->getProperty( 0x00000000, *0018EBC8 = 16F51FA8 ) = 0x00000000
    0x000019C0 21498 3  XPCOM C: ( (dsIProperty*)16F51FA8 )->getPropertyType( 0018EB48 )
    0x000019C0 21498 3  XPCOM R: ( (dsIProperty*)16F51FA8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21498 3  XPCOM C: ( (dsIProperty*)16F51FA8 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21498 3  XPCOM R: ( (dsIProperty*)16F51FA8 )->queryInterface( 170B3A38, *0018EB48 = 16F52014 ) = 0x00000000
    0x000019C0 21498 3  XPCOM C: ( (dsIBooleanProperty*)16F52014 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21498 3  XPCOM R: ( (dsIBooleanProperty*)16F52014 )->queryInterface( 170B3A38, *0018EB48 = 16F52014 ) = 0x00000000
    0x000019C0 21498 3  XPCOM C: ( (dsIProperties*)1862C418 )->Count( 0018EBE8 )
    0x000019C0 21498 3  XPCOM R: ( (dsIProperties*)1862C418 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21498 3  XPCOM C: ( (dsIProperties*)1862C418 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 21498 3  XPCOM R: ( (dsIProperties*)1862C418 )->getProperty( 0x00000001, *0018EBC8 = 16F52140 ) = 0x00000000
    0x000019C0 21498 3  XPCOM C: ( (dsIProperty*)16F52140 )->getPropertyType( 0018EB48 )
    0x000019C0 21498 3  XPCOM R: ( (dsIProperty*)16F52140 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21498 3  XPCOM C: ( (dsIProperty*)16F52140 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21498 3  XPCOM R: ( (dsIProperty*)16F52140 )->queryInterface( 170B3A38, *0018EB48 = 16F521AC ) = 0x00000000
    0x000019C0 21498 3  XPCOM C: ( (dsIBooleanProperty*)16F521AC )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21498 3  XPCOM R: ( (dsIBooleanProperty*)16F521AC )->queryInterface( 170B3A38, *0018EB48 = 16F521AC ) = 0x00000000
    0x000019C0 21498 3  XPCOM C: ( (dsIBooleanProperty*)16F521AC )->Name( 0018EBB8 )
    0x000019C0 21498 3  XPCOM R: ( (dsIBooleanProperty*)16F521AC )->Name( *0018EBB8 = Restore breakpoints from previous session ) = 0x00000000
    0x000019C0 21498 3  XPCOM C: ( (dsIProperties*)1862C418 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 21498 3  XPCOM R: ( (dsIProperties*)1862C418 )->getProperty( 0x00000001, *0018EBC8 = 16F52140 ) = 0x00000000
    0x000019C0 21498 3  XPCOM C: ( (dsIProperty*)16F52140 )->getPropertyType( 0018EB48 )
    0x000019C0 21498 3  XPCOM R: ( (dsIProperty*)16F52140 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21498 3  XPCOM C: ( (dsIProperty*)16F52140 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21498 3  XPCOM R: ( (dsIProperty*)16F52140 )->queryInterface( 170B3A38, *0018EB48 = 16F521AC ) = 0x00000000
    0x000019C0 21498 3  XPCOM C: ( (dsIBooleanProperty*)16F521AC )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21499 3  XPCOM R: ( (dsIBooleanProperty*)16F521AC )->queryInterface( 170B3A38, *0018EB48 = 16F521AC ) = 0x00000000
    0x000019C0 21499 3  XPCOM C: ( (dsIProperties*)1862C418 )->Count( 0018EBE8 )
    0x000019C0 21499 3  XPCOM R: ( (dsIProperties*)1862C418 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21499 3  XPCOM C: ( (dsIProperties*)1862C418 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 21499 3  XPCOM R: ( (dsIProperties*)1862C418 )->getProperty( 0x00000002, *0018EBC8 = 16F521C8 ) = 0x00000000
    0x000019C0 21499 3  XPCOM C: ( (dsIProperty*)16F521C8 )->getPropertyType( 0018EB48 )
    0x000019C0 21499 3  XPCOM R: ( (dsIProperty*)16F521C8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21499 3  XPCOM C: ( (dsIProperty*)16F521C8 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21499 3  XPCOM R: ( (dsIProperty*)16F521C8 )->queryInterface( 170B3A38, *0018EB48 = 16F52234 ) = 0x00000000
    0x000019C0 21499 3  XPCOM C: ( (dsIBooleanProperty*)16F52234 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21499 3  XPCOM R: ( (dsIBooleanProperty*)16F52234 )->queryInterface( 170B3A38, *0018EB48 = 16F52234 ) = 0x00000000
    0x000019C0 21499 3  XPCOM C: ( (dsIBooleanProperty*)16F52234 )->Name( 0018EBB8 )
    0x000019C0 21499 3  XPCOM R: ( (dsIBooleanProperty*)16F52234 )->Name( *0018EBB8 = Continue debug launch if target connection or program load fails ) = 0x00000000
    0x000019C0 21499 3  XPCOM C: ( (dsIProperties*)1862C418 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 21499 3  XPCOM R: ( (dsIProperties*)1862C418 )->getProperty( 0x00000002, *0018EBC8 = 16F521C8 ) = 0x00000000
    0x000019C0 21499 3  XPCOM C: ( (dsIProperty*)16F521C8 )->getPropertyType( 0018EB48 )
    0x000019C0 21499 3  XPCOM R: ( (dsIProperty*)16F521C8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21499 3  XPCOM C: ( (dsIProperty*)16F521C8 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21499 3  XPCOM R: ( (dsIProperty*)16F521C8 )->queryInterface( 170B3A38, *0018EB48 = 16F52234 ) = 0x00000000
    0x000019C0 21499 3  XPCOM C: ( (dsIBooleanProperty*)16F52234 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21499 3  XPCOM R: ( (dsIBooleanProperty*)16F52234 )->queryInterface( 170B3A38, *0018EB48 = 16F52234 ) = 0x00000000
    0x000019C0 21499 3  XPCOM C: ( (dsIProperties*)1862C418 )->Count( 0018EBE8 )
    0x000019C0 21499 3  XPCOM R: ( (dsIProperties*)1862C418 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21499 3  XPCOM C: ( (dsIProperties*)17034C00 )->Count( 0018EC28 )
    0x000019C0 21499 3  XPCOM R: ( (dsIProperties*)17034C00 )->Count( *0018EC28 = 0x00000003 ) = 0x00000000
    0x000019C0 21499 3  XPCOM C: ( (dsIProperties*)17034A50 )->Count( 0018EC68 )
    0x000019C0 21499 3  XPCOM R: ( (dsIProperties*)17034A50 )->Count( *0018EC68 = 0x00000005 ) = 0x00000000
    0x000019C0 21499 3  XPCOM C: ( (dsIProperties*)17034A50 )->getProperty( 0x00000002, 0018EC48 )
    0x000019C0 21499 3  XPCOM R: ( (dsIProperties*)17034A50 )->getProperty( 0x00000002, *0018EC48 = 17020F28 ) = 0x00000000
    0x000019C0 21499 3  XPCOM C: ( (dsIProperty*)17020F28 )->getPropertyType( 0018EBC8 )
    0x000019C0 21499 3  XPCOM R: ( (dsIProperty*)17020F28 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 21499 3  XPCOM C: ( (dsIProperty*)17020F28 )->queryInterface( 170B3A38, 0018EBC8 )
    0x000019C0 21499 3  XPCOM R: ( (dsIProperty*)17020F28 )->queryInterface( 170B3A38, *0018EBC8 = 17020F94 ) = 0x00000000
    0x000019C0 21499 3  XPCOM C: ( (dsINode*)17020F94 )->queryInterface( 170B3A38, 0018EBC8 )
    0x000019C0 21499 3  XPCOM R: ( (dsINode*)17020F94 )->queryInterface( 170B3A38, *0018EBC8 = 17020F94 ) = 0x00000000
    0x000019C0 21499 3  XPCOM C: ( (dsINode*)17020F94 )->Name( 0018EC38 )
    0x000019C0 21499 3  XPCOM R: ( (dsINode*)17020F94 )->Name( *0018EC38 = Misc/Other Options ) = 0x00000000
    0x000019C0 21499 3  XPCOM C: ( (dsIProperties*)17034A50 )->getProperty( 0x00000002, 0018EC48 )
    0x000019C0 21499 3  XPCOM R: ( (dsIProperties*)17034A50 )->getProperty( 0x00000002, *0018EC48 = 17020F28 ) = 0x00000000
    0x000019C0 21499 3  XPCOM C: ( (dsIProperty*)17020F28 )->getPropertyType( 0018EBC8 )
    0x000019C0 21499 3  XPCOM R: ( (dsIProperty*)17020F28 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 21499 3  XPCOM C: ( (dsIProperty*)17020F28 )->queryInterface( 170B3A38, 0018EBC8 )
    0x000019C0 21500 3  XPCOM R: ( (dsIProperty*)17020F28 )->queryInterface( 170B3A38, *0018EBC8 = 17020F94 ) = 0x00000000
    0x000019C0 21500 3  XPCOM C: ( (dsINode*)17020F94 )->queryInterface( 170B3A38, 0018EBC8 )
    0x000019C0 21500 3  XPCOM R: ( (dsINode*)17020F94 )->queryInterface( 170B3A38, *0018EBC8 = 17020F94 ) = 0x00000000
    0x000019C0 21500 3  XPCOM C: ( (dsINode*)17020F94 )->getChildren( 0018EC08 )
    0x000019C0 21500 3  XPCOM R: ( (dsINode*)17020F94 )->getChildren( *0018EC08 = 1862B488 ) = 0x00000000
    0x000019C0 21500 3  XPCOM C: ( (dsIProperties*)17034A50 )->getProperty( 0x00000002, 0018EC48 )
    0x000019C0 21500 3  XPCOM R: ( (dsIProperties*)17034A50 )->getProperty( 0x00000002, *0018EC48 = 17020F28 ) = 0x00000000
    0x000019C0 21500 3  XPCOM C: ( (dsIProperty*)17020F28 )->getPropertyType( 0018EBC8 )
    0x000019C0 21500 3  XPCOM R: ( (dsIProperty*)17020F28 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 21500 3  XPCOM C: ( (dsIProperty*)17020F28 )->queryInterface( 170B4158, 0018EBC8 )
    0x000019C0 21500 3  XPCOM R: ( (dsIProperty*)17020F28 )->queryInterface( 170B4158, *0018EBC8 = 17020F94 ) = 0x00000000
    0x000019C0 21500 3  XPCOM C: ( (dsINode*)17020F94 )->queryInterface( 170B4158, 0018EBC8 )
    0x000019C0 21500 3  XPCOM R: ( (dsINode*)17020F94 )->queryInterface( 170B4158, *0018EBC8 = 17020F94 ) = 0x00000000
    0x000019C0 21500 3  XPCOM C: ( (dsINode*)17020F94 )->getChildren( 0018EC08 )
    0x000019C0 21500 3  XPCOM R: ( (dsINode*)17020F94 )->getChildren( *0018EC08 = 1862B188 ) = 0x00000000
    0x000019C0 21500 3  XPCOM C: ( (dsIProperties*)1862B188 )->Count( 0018EC68 )
    0x000019C0 21500 3  XPCOM R: ( (dsIProperties*)1862B188 )->Count( *0018EC68 = 0x00000008 ) = 0x00000000
    0x000019C0 21500 3  XPCOM C: ( (dsIProperties*)17034A50 )->getProperty( 0x00000002, 0018EC48 )
    0x000019C0 21500 3  XPCOM R: ( (dsIProperties*)17034A50 )->getProperty( 0x00000002, *0018EC48 = 17020F28 ) = 0x00000000
    0x000019C0 21500 3  XPCOM C: ( (dsIProperty*)17020F28 )->getPropertyType( 0018EBC8 )
    0x000019C0 21500 3  XPCOM R: ( (dsIProperty*)17020F28 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 21500 3  XPCOM C: ( (dsIProperty*)17020F28 )->queryInterface( 170B3A38, 0018EBC8 )
    0x000019C0 21500 3  XPCOM R: ( (dsIProperty*)17020F28 )->queryInterface( 170B3A38, *0018EBC8 = 17020F94 ) = 0x00000000
    0x000019C0 21500 3  XPCOM C: ( (dsINode*)17020F94 )->queryInterface( 170B3A38, 0018EBC8 )
    0x000019C0 21500 3  XPCOM R: ( (dsINode*)17020F94 )->queryInterface( 170B3A38, *0018EBC8 = 17020F94 ) = 0x00000000
    0x000019C0 21500 3  XPCOM C: ( (dsINode*)17020F94 )->getChildren( 0018EC08 )
    0x000019C0 21500 3  XPCOM R: ( (dsINode*)17020F94 )->getChildren( *0018EC08 = 1862B638 ) = 0x00000000
    0x000019C0 21500 3  XPCOM C: ( (dsIProperties*)1862B638 )->Count( 0018EC28 )
    0x000019C0 21500 3  XPCOM R: ( (dsIProperties*)1862B638 )->Count( *0018EC28 = 0x00000008 ) = 0x00000000
    0x000019C0 21500 3  XPCOM C: ( (dsIProperties*)1862B638 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 21500 3  XPCOM R: ( (dsIProperties*)1862B638 )->getProperty( 0x00000000, *0018EC08 = 17132ED0 ) = 0x00000000
    0x000019C0 21500 3  XPCOM C: ( (dsIProperty*)17132ED0 )->getPropertyType( 0018EB88 )
    0x000019C0 21500 3  XPCOM R: ( (dsIProperty*)17132ED0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21500 3  XPCOM C: ( (dsIProperty*)17132ED0 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21500 3  XPCOM R: ( (dsIProperty*)17132ED0 )->queryInterface( 170B4158, *0018EB88 = 17132F3C ) = 0x00000000
    0x000019C0 21500 3  XPCOM C: ( (dsIGroup*)17132F3C )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21501 3  XPCOM R: ( (dsIGroup*)17132F3C )->queryInterface( 170B4158, *0018EB88 = 17132F3C ) = 0x00000000
    0x000019C0 21501 3  XPCOM C: ( (dsIGroup*)17132F3C )->Name( 0018EBF8 )
    0x000019C0 21501 3  XPCOM R: ( (dsIGroup*)17132F3C )->Name( *0018EBF8 = OS Aware Debug Options ) = 0x00000000
    0x000019C0 21501 3  XPCOM C: ( (dsIProperties*)1862B638 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 21501 3  XPCOM R: ( (dsIProperties*)1862B638 )->getProperty( 0x00000000, *0018EC08 = 17132ED0 ) = 0x00000000
    0x000019C0 21501 3  XPCOM C: ( (dsIProperty*)17132ED0 )->getPropertyType( 0018EB88 )
    0x000019C0 21501 3  XPCOM R: ( (dsIProperty*)17132ED0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21501 3  XPCOM C: ( (dsIProperty*)17132ED0 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21501 3  XPCOM R: ( (dsIProperty*)17132ED0 )->queryInterface( 170B4158, *0018EB88 = 17132F3C ) = 0x00000000
    0x000019C0 21501 3  XPCOM C: ( (dsIGroup*)17132F3C )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21501 3  XPCOM R: ( (dsIGroup*)17132F3C )->queryInterface( 170B4158, *0018EB88 = 17132F3C ) = 0x00000000
    0x000019C0 21501 3  XPCOM C: ( (dsIGroup*)17132F3C )->getChildren( 0018EBC8 )
    0x000019C0 21501 3  XPCOM R: ( (dsIGroup*)17132F3C )->getChildren( *0018EBC8 = 1862C448 ) = 0x00000000
    0x000019C0 21501 3  XPCOM C: ( (dsIProperties*)1862B638 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 21501 3  XPCOM R: ( (dsIProperties*)1862B638 )->getProperty( 0x00000000, *0018EC08 = 17132ED0 ) = 0x00000000
    0x000019C0 21501 3  XPCOM C: ( (dsIProperty*)17132ED0 )->getPropertyType( 0018EB88 )
    0x000019C0 21501 3  XPCOM R: ( (dsIProperty*)17132ED0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21501 3  XPCOM C: ( (dsIProperty*)17132ED0 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21501 3  XPCOM R: ( (dsIProperty*)17132ED0 )->queryInterface( 170B4158, *0018EB88 = 17132F3C ) = 0x00000000
    0x000019C0 21501 3  XPCOM C: ( (dsIGroup*)17132F3C )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21501 3  XPCOM R: ( (dsIGroup*)17132F3C )->queryInterface( 170B4158, *0018EB88 = 17132F3C ) = 0x00000000
    0x000019C0 21501 3  XPCOM C: ( (dsIGroup*)17132F3C )->getChildren( 0018EBC8 )
    0x000019C0 21501 3  XPCOM R: ( (dsIGroup*)17132F3C )->getChildren( *0018EBC8 = 1862B5A8 ) = 0x00000000
    0x000019C0 21501 3  XPCOM C: ( (dsIProperties*)1862B5A8 )->Count( 0018EC28 )
    0x000019C0 21501 3  XPCOM R: ( (dsIProperties*)1862B5A8 )->Count( *0018EC28 = 0x00000003 ) = 0x00000000
    0x000019C0 21501 3  XPCOM C: ( (dsIProperties*)1862B638 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 21501 3  XPCOM R: ( (dsIProperties*)1862B638 )->getProperty( 0x00000000, *0018EC08 = 17132ED0 ) = 0x00000000
    0x000019C0 21501 3  XPCOM C: ( (dsIProperty*)17132ED0 )->getPropertyType( 0018EB88 )
    0x000019C0 21501 3  XPCOM R: ( (dsIProperty*)17132ED0 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21501 3  XPCOM C: ( (dsIProperty*)17132ED0 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21501 3  XPCOM R: ( (dsIProperty*)17132ED0 )->queryInterface( 170B4158, *0018EB88 = 17132F3C ) = 0x00000000
    0x000019C0 21501 3  XPCOM C: ( (dsIGroup*)17132F3C )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21501 3  XPCOM R: ( (dsIGroup*)17132F3C )->queryInterface( 170B4158, *0018EB88 = 17132F3C ) = 0x00000000
    0x000019C0 21501 3  XPCOM C: ( (dsIGroup*)17132F3C )->getChildren( 0018EBC8 )
    0x000019C0 21501 3  XPCOM R: ( (dsIGroup*)17132F3C )->getChildren( *0018EBC8 = 1862B1B8 ) = 0x00000000
    0x000019C0 21501 3  XPCOM C: ( (dsIProperties*)1862B1B8 )->Count( 0018EBE8 )
    0x000019C0 21501 3  XPCOM R: ( (dsIProperties*)1862B1B8 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21501 3  XPCOM C: ( (dsIProperties*)1862B1B8 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 21501 3  XPCOM R: ( (dsIProperties*)1862B1B8 )->getProperty( 0x00000000, *0018EBC8 = 12412EA0 ) = 0x00000000
    0x000019C0 21501 3  XPCOM C: ( (dsIProperty*)12412EA0 )->getPropertyType( 0018EB48 )
    0x000019C0 21501 3  XPCOM R: ( (dsIProperty*)12412EA0 )->getPropertyType( *0018EB48 = 0x00000003 ) = 0x00000000
    0x000019C0 21501 3  XPCOM C: ( (dsIProperty*)12412EA0 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21501 3  XPCOM R: ( (dsIProperty*)12412EA0 )->queryInterface( 170B4158, *0018EB48 = 12412F44 ) = 0x00000000
    0x000019C0 21502 3  XPCOM C: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21502 3  XPCOM R: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 170B4158, *0018EB48 = 12412F0C ) = 0x00000000
    0x000019C0 21502 3  XPCOM C: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21502 3  XPCOM R: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 170B4158, *0018EB48 = 12412F44 ) = 0x00000000
    0x000019C0 21502 3  XPCOM C: ( (dsIChoiceListProperty*)12412F44 )->Name( 0018EBB8 )
    0x000019C0 21502 3  XPCOM R: ( (dsIChoiceListProperty*)12412F44 )->Name( *0018EBB8 = Automatically load module symbols ) = 0x00000000
    0x000019C0 21502 3  XPCOM C: ( (dsIProperties*)1862B1B8 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 21502 3  XPCOM R: ( (dsIProperties*)1862B1B8 )->getProperty( 0x00000000, *0018EBC8 = 12412EA0 ) = 0x00000000
    0x000019C0 21502 3  XPCOM C: ( (dsIProperty*)12412EA0 )->getPropertyType( 0018EB48 )
    0x000019C0 21502 3  XPCOM R: ( (dsIProperty*)12412EA0 )->getPropertyType( *0018EB48 = 0x00000003 ) = 0x00000000
    0x000019C0 21502 3  XPCOM C: ( (dsIProperty*)12412EA0 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21502 3  XPCOM R: ( (dsIProperty*)12412EA0 )->queryInterface( 170B4158, *0018EB48 = 12412F44 ) = 0x00000000
    0x000019C0 21502 3  XPCOM C: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21502 3  XPCOM R: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 170B4158, *0018EB48 = 12412F0C ) = 0x00000000
    0x000019C0 21502 3  XPCOM C: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21502 3  XPCOM R: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 170B4158, *0018EB48 = 12412F44 ) = 0x00000000
    0x000019C0 21502 3  XPCOM C: ( (dsIProperties*)1862B1B8 )->Count( 0018EBE8 )
    0x000019C0 21502 3  XPCOM R: ( (dsIProperties*)1862B1B8 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21502 3  XPCOM C: ( (dsIProperties*)1862B1B8 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 21502 3  XPCOM R: ( (dsIProperties*)1862B1B8 )->getProperty( 0x00000001, *0018EBC8 = 12296138 ) = 0x00000000
    0x000019C0 21502 3  XPCOM C: ( (dsIProperty*)12296138 )->getPropertyType( 0018EB48 )
    0x000019C0 21502 3  XPCOM R: ( (dsIProperty*)12296138 )->getPropertyType( *0018EB48 = 0x00000004 ) = 0x00000000
    0x000019C0 21502 3  XPCOM C: ( (dsIProperty*)12296138 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21502 3  XPCOM R: ( (dsIProperty*)12296138 )->queryInterface( 170B4158, *0018EB48 = 122961A4 ) = 0x00000000
    0x000019C0 21502 3  XPCOM C: ( (dsIStringProperty*)122961A4 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21502 3  XPCOM R: ( (dsIStringProperty*)122961A4 )->queryInterface( 170B4158, *0018EB48 = 122961A4 ) = 0x00000000
    0x000019C0 21502 3  XPCOM C: ( (dsIStringProperty*)122961A4 )->Name( 0018EBB8 )
    0x000019C0 21502 3  XPCOM R: ( (dsIStringProperty*)122961A4 )->Name( *0018EBB8 = Module name list ) = 0x00000000
    0x000019C0 21502 3  XPCOM C: ( (dsIProperties*)1862B1B8 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 21502 3  XPCOM R: ( (dsIProperties*)1862B1B8 )->getProperty( 0x00000001, *0018EBC8 = 12296138 ) = 0x00000000
    0x000019C0 21502 3  XPCOM C: ( (dsIProperty*)12296138 )->getPropertyType( 0018EB48 )
    0x000019C0 21502 3  XPCOM R: ( (dsIProperty*)12296138 )->getPropertyType( *0018EB48 = 0x00000004 ) = 0x00000000
    0x000019C0 21502 3  XPCOM C: ( (dsIProperty*)12296138 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21502 3  XPCOM R: ( (dsIProperty*)12296138 )->queryInterface( 170B4158, *0018EB48 = 122961A4 ) = 0x00000000
    0x000019C0 21502 3  XPCOM C: ( (dsIStringProperty*)122961A4 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21502 3  XPCOM R: ( (dsIStringProperty*)122961A4 )->queryInterface( 170B4158, *0018EB48 = 122961A4 ) = 0x00000000
    0x000019C0 21502 3  XPCOM C: ( (dsIProperties*)1862B1B8 )->Count( 0018EBE8 )
    0x000019C0 21502 3  XPCOM R: ( (dsIProperties*)1862B1B8 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21502 3  XPCOM C: ( (dsIProperties*)1862B1B8 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 21502 3  XPCOM R: ( (dsIProperties*)1862B1B8 )->getProperty( 0x00000002, *0018EBC8 = 122964A8 ) = 0x00000000
    0x000019C0 21502 3  XPCOM C: ( (dsIProperty*)122964A8 )->getPropertyType( 0018EB48 )
    0x000019C0 21502 3  XPCOM R: ( (dsIProperty*)122964A8 )->getPropertyType( *0018EB48 = 0x00000004 ) = 0x00000000
    0x000019C0 21503 3  XPCOM C: ( (dsIProperty*)122964A8 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21503 3  XPCOM R: ( (dsIProperty*)122964A8 )->queryInterface( 170B4158, *0018EB48 = 12296514 ) = 0x00000000
    0x000019C0 21503 3  XPCOM C: ( (dsIStringProperty*)12296514 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21503 3  XPCOM R: ( (dsIStringProperty*)12296514 )->queryInterface( 170B4158, *0018EB48 = 12296514 ) = 0x00000000
    0x000019C0 21503 3  XPCOM C: ( (dsIStringProperty*)12296514 )->Name( 0018EBB8 )
    0x000019C0 21503 3  XPCOM R: ( (dsIStringProperty*)12296514 )->Name( *0018EBB8 = Module symbol search path ) = 0x00000000
    0x000019C0 21503 3  XPCOM C: ( (dsIProperties*)1862B1B8 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 21503 3  XPCOM R: ( (dsIProperties*)1862B1B8 )->getProperty( 0x00000002, *0018EBC8 = 122964A8 ) = 0x00000000
    0x000019C0 21503 3  XPCOM C: ( (dsIProperty*)122964A8 )->getPropertyType( 0018EB48 )
    0x000019C0 21503 3  XPCOM R: ( (dsIProperty*)122964A8 )->getPropertyType( *0018EB48 = 0x00000004 ) = 0x00000000
    0x000019C0 21503 3  XPCOM C: ( (dsIProperty*)122964A8 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21503 3  XPCOM R: ( (dsIProperty*)122964A8 )->queryInterface( 170B4158, *0018EB48 = 12296514 ) = 0x00000000
    0x000019C0 21503 3  XPCOM C: ( (dsIStringProperty*)12296514 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21503 3  XPCOM R: ( (dsIStringProperty*)12296514 )->queryInterface( 170B4158, *0018EB48 = 12296514 ) = 0x00000000
    0x000019C0 21503 3  XPCOM C: ( (dsIProperties*)1862B1B8 )->Count( 0018EBE8 )
    0x000019C0 21503 3  XPCOM R: ( (dsIProperties*)1862B1B8 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21503 3  XPCOM C: ( (dsIProperties*)1862B638 )->Count( 0018EC28 )
    0x000019C0 21503 3  XPCOM R: ( (dsIProperties*)1862B638 )->Count( *0018EC28 = 0x00000008 ) = 0x00000000
    0x000019C0 21503 3  XPCOM C: ( (dsIProperties*)1862B638 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 21503 3  XPCOM R: ( (dsIProperties*)1862B638 )->getProperty( 0x00000001, *0018EC08 = 1702F868 ) = 0x00000000
    0x000019C0 21503 3  XPCOM C: ( (dsIProperty*)1702F868 )->getPropertyType( 0018EB88 )
    0x000019C0 21503 3  XPCOM R: ( (dsIProperty*)1702F868 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 21503 3  XPCOM C: ( (dsIProperty*)1702F868 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21503 3  XPCOM R: ( (dsIProperty*)1702F868 )->queryInterface( 170B4158, *0018EB88 = 1702F8D4 ) = 0x00000000
    0x000019C0 21503 3  XPCOM C: ( (dsIBooleanProperty*)1702F8D4 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21503 3  XPCOM R: ( (dsIBooleanProperty*)1702F8D4 )->queryInterface( 170B4158, *0018EB88 = 1702F8D4 ) = 0x00000000
    0x000019C0 21503 3  XPCOM C: ( (dsIBooleanProperty*)1702F8D4 )->Name( 0018EBF8 )
    0x000019C0 21503 3  XPCOM R: ( (dsIBooleanProperty*)1702F8D4 )->Name( *0018EBF8 = Simulators will flush the pipeline on a halt ) = 0x00000000
    0x000019C0 21503 3  XPCOM C: ( (dsIProperties*)1862B638 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 21503 3  XPCOM R: ( (dsIProperties*)1862B638 )->getProperty( 0x00000001, *0018EC08 = 1702F868 ) = 0x00000000
    0x000019C0 21503 3  XPCOM C: ( (dsIProperty*)1702F868 )->getPropertyType( 0018EB88 )
    0x000019C0 21503 3  XPCOM R: ( (dsIProperty*)1702F868 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 21503 3  XPCOM C: ( (dsIProperty*)1702F868 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21503 3  XPCOM R: ( (dsIProperty*)1702F868 )->queryInterface( 170B4158, *0018EB88 = 1702F8D4 ) = 0x00000000
    0x000019C0 21503 3  XPCOM C: ( (dsIBooleanProperty*)1702F8D4 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21503 3  XPCOM R: ( (dsIBooleanProperty*)1702F8D4 )->queryInterface( 170B4158, *0018EB88 = 1702F8D4 ) = 0x00000000
    0x000019C0 21503 3  XPCOM C: ( (dsIProperties*)1862B638 )->Count( 0018EC28 )
    0x000019C0 21503 3  XPCOM R: ( (dsIProperties*)1862B638 )->Count( *0018EC28 = 0x00000008 ) = 0x00000000
    0x000019C0 21503 3  XPCOM C: ( (dsIProperties*)1862B638 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 21503 3  XPCOM R: ( (dsIProperties*)1862B638 )->getProperty( 0x00000002, *0018EC08 = 1702F8F0 ) = 0x00000000
    0x000019C0 21503 3  XPCOM C: ( (dsIProperty*)1702F8F0 )->getPropertyType( 0018EB88 )
    0x000019C0 21503 3  XPCOM R: ( (dsIProperty*)1702F8F0 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 21503 3  XPCOM C: ( (dsIProperty*)1702F8F0 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21504 3  XPCOM R: ( (dsIProperty*)1702F8F0 )->queryInterface( 170B4158, *0018EB88 = 1702F95C ) = 0x00000000
    0x000019C0 21504 3  XPCOM C: ( (dsIBooleanProperty*)1702F95C )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21504 3  XPCOM R: ( (dsIBooleanProperty*)1702F95C )->queryInterface( 170B4158, *0018EB88 = 1702F95C ) = 0x00000000
    0x000019C0 21504 3  XPCOM C: ( (dsIBooleanProperty*)1702F95C )->Name( 0018EBF8 )
    0x000019C0 21504 3  XPCOM R: ( (dsIBooleanProperty*)1702F95C )->Name( *0018EBF8 = Automatically step over functions without debug information when source stepping ) = 0x00000000
    0x000019C0 21504 3  XPCOM C: ( (dsIProperties*)1862B638 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 21504 3  XPCOM R: ( (dsIProperties*)1862B638 )->getProperty( 0x00000002, *0018EC08 = 1702F8F0 ) = 0x00000000
    0x000019C0 21504 3  XPCOM C: ( (dsIProperty*)1702F8F0 )->getPropertyType( 0018EB88 )
    0x000019C0 21504 3  XPCOM R: ( (dsIProperty*)1702F8F0 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 21504 3  XPCOM C: ( (dsIProperty*)1702F8F0 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21504 3  XPCOM R: ( (dsIProperty*)1702F8F0 )->queryInterface( 170B4158, *0018EB88 = 1702F95C ) = 0x00000000
    0x000019C0 21504 3  XPCOM C: ( (dsIBooleanProperty*)1702F95C )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21504 3  XPCOM R: ( (dsIBooleanProperty*)1702F95C )->queryInterface( 170B4158, *0018EB88 = 1702F95C ) = 0x00000000
    0x000019C0 21504 3  XPCOM C: ( (dsIProperties*)1862B638 )->Count( 0018EC28 )
    0x000019C0 21504 3  XPCOM R: ( (dsIProperties*)1862B638 )->Count( *0018EC28 = 0x00000008 ) = 0x00000000
    0x000019C0 21504 3  XPCOM C: ( (dsIProperties*)1862B638 )->getProperty( 0x00000003, 0018EC08 )
    0x000019C0 21504 3  XPCOM R: ( (dsIProperties*)1862B638 )->getProperty( 0x00000003, *0018EC08 = 1702FA88 ) = 0x00000000
    0x000019C0 21504 3  XPCOM C: ( (dsIProperty*)1702FA88 )->getPropertyType( 0018EB88 )
    0x000019C0 21504 3  XPCOM R: ( (dsIProperty*)1702FA88 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 21504 3  XPCOM C: ( (dsIProperty*)1702FA88 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21504 3  XPCOM R: ( (dsIProperty*)1702FA88 )->queryInterface( 170B4158, *0018EB88 = 1702FAF4 ) = 0x00000000
    0x000019C0 21504 3  XPCOM C: ( (dsIBooleanProperty*)1702FAF4 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21504 3  XPCOM R: ( (dsIBooleanProperty*)1702FAF4 )->queryInterface( 170B4158, *0018EB88 = 1702FAF4 ) = 0x00000000
    0x000019C0 21504 3  XPCOM C: ( (dsIBooleanProperty*)1702FAF4 )->Name( 0018EBF8 )
    0x000019C0 21504 3  XPCOM R: ( (dsIBooleanProperty*)1702FAF4 )->Name( *0018EBF8 = Allow power transitions while running if supported (low power running) ) = 0x00000000
    0x000019C0 21504 3  XPCOM C: ( (dsIProperties*)1862B638 )->getProperty( 0x00000003, 0018EC08 )
    0x000019C0 21504 3  XPCOM R: ( (dsIProperties*)1862B638 )->getProperty( 0x00000003, *0018EC08 = 1702FA88 ) = 0x00000000
    0x000019C0 21504 3  XPCOM C: ( (dsIProperty*)1702FA88 )->getPropertyType( 0018EB88 )
    0x000019C0 21504 3  XPCOM R: ( (dsIProperty*)1702FA88 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 21504 3  XPCOM C: ( (dsIProperty*)1702FA88 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21504 3  XPCOM R: ( (dsIProperty*)1702FA88 )->queryInterface( 170B4158, *0018EB88 = 1702FAF4 ) = 0x00000000
    0x000019C0 21504 3  XPCOM C: ( (dsIBooleanProperty*)1702FAF4 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21504 3  XPCOM R: ( (dsIBooleanProperty*)1702FAF4 )->queryInterface( 170B4158, *0018EB88 = 1702FAF4 ) = 0x00000000
    0x000019C0 21504 3  XPCOM C: ( (dsIProperties*)1862B638 )->Count( 0018EC28 )
    0x000019C0 21504 3  XPCOM R: ( (dsIProperties*)1862B638 )->Count( *0018EC28 = 0x00000008 ) = 0x00000000
    0x000019C0 21504 3  XPCOM C: ( (dsIProperties*)1862B638 )->getProperty( 0x00000004, 0018EC08 )
    0x000019C0 21504 3  XPCOM R: ( (dsIProperties*)1862B638 )->getProperty( 0x00000004, *0018EC08 = 1702FB10 ) = 0x00000000
    0x000019C0 21504 3  XPCOM C: ( (dsIProperty*)1702FB10 )->getPropertyType( 0018EB88 )
    0x000019C0 21504 3  XPCOM R: ( (dsIProperty*)1702FB10 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 21504 3  XPCOM C: ( (dsIProperty*)1702FB10 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21504 3  XPCOM R: ( (dsIProperty*)1702FB10 )->queryInterface( 170B4158, *0018EB88 = 1702FB7C ) = 0x00000000
    0x000019C0 21505 3  XPCOM C: ( (dsIBooleanProperty*)1702FB7C )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21505 3  XPCOM R: ( (dsIBooleanProperty*)1702FB7C )->queryInterface( 170B4158, *0018EB88 = 1702FB7C ) = 0x00000000
    0x000019C0 21505 3  XPCOM C: ( (dsIBooleanProperty*)1702FB7C )->Name( 0018EBF8 )
    0x000019C0 21505 3  XPCOM R: ( (dsIBooleanProperty*)1702FB7C )->Name( *0018EBF8 = Add timestamp information to target output ) = 0x00000000
    0x000019C0 21505 3  XPCOM C: ( (dsIProperties*)1862B638 )->getProperty( 0x00000004, 0018EC08 )
    0x000019C0 21505 3  XPCOM R: ( (dsIProperties*)1862B638 )->getProperty( 0x00000004, *0018EC08 = 1702FB10 ) = 0x00000000
    0x000019C0 21505 3  XPCOM C: ( (dsIProperty*)1702FB10 )->getPropertyType( 0018EB88 )
    0x000019C0 21505 3  XPCOM R: ( (dsIProperty*)1702FB10 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 21505 3  XPCOM C: ( (dsIProperty*)1702FB10 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21505 3  XPCOM R: ( (dsIProperty*)1702FB10 )->queryInterface( 170B4158, *0018EB88 = 1702FB7C ) = 0x00000000
    0x000019C0 21505 3  XPCOM C: ( (dsIBooleanProperty*)1702FB7C )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21505 3  XPCOM R: ( (dsIBooleanProperty*)1702FB7C )->queryInterface( 170B4158, *0018EB88 = 1702FB7C ) = 0x00000000
    0x000019C0 21505 3  XPCOM C: ( (dsIProperties*)1862B638 )->Count( 0018EC28 )
    0x000019C0 21505 3  XPCOM R: ( (dsIProperties*)1862B638 )->Count( *0018EC28 = 0x00000008 ) = 0x00000000
    0x000019C0 21505 3  XPCOM C: ( (dsIProperties*)1862B638 )->getProperty( 0x00000005, 0018EC08 )
    0x000019C0 21505 3  XPCOM R: ( (dsIProperties*)1862B638 )->getProperty( 0x00000005, *0018EC08 = 1702FB98 ) = 0x00000000
    0x000019C0 21505 3  XPCOM C: ( (dsIProperty*)1702FB98 )->getPropertyType( 0018EB88 )
    0x000019C0 21505 3  XPCOM R: ( (dsIProperty*)1702FB98 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 21505 3  XPCOM C: ( (dsIProperty*)1702FB98 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21505 3  XPCOM R: ( (dsIProperty*)1702FB98 )->queryInterface( 170B4158, *0018EB88 = 1702FC04 ) = 0x00000000
    0x000019C0 21505 3  XPCOM C: ( (dsIBooleanProperty*)1702FC04 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21505 3  XPCOM R: ( (dsIBooleanProperty*)1702FC04 )->queryInterface( 170B4158, *0018EB88 = 1702FC04 ) = 0x00000000
    0x000019C0 21505 3  XPCOM C: ( (dsIBooleanProperty*)1702FC04 )->Name( 0018EBF8 )
    0x000019C0 21505 3  XPCOM R: ( (dsIBooleanProperty*)1702FC04 )->Name( *0018EBF8 = Allow software breakpoints to be used ) = 0x00000000
    0x000019C0 21505 3  XPCOM C: ( (dsIProperties*)1862B638 )->getProperty( 0x00000005, 0018EC08 )
    0x000019C0 21505 3  XPCOM R: ( (dsIProperties*)1862B638 )->getProperty( 0x00000005, *0018EC08 = 1702FB98 ) = 0x00000000
    0x000019C0 21505 3  XPCOM C: ( (dsIProperty*)1702FB98 )->getPropertyType( 0018EB88 )
    0x000019C0 21505 3  XPCOM R: ( (dsIProperty*)1702FB98 )->getPropertyType( *0018EB88 = 0x00000000 ) = 0x00000000
    0x000019C0 21505 3  XPCOM C: ( (dsIProperty*)1702FB98 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21505 3  XPCOM R: ( (dsIProperty*)1702FB98 )->queryInterface( 170B4158, *0018EB88 = 1702FC04 ) = 0x00000000
    0x000019C0 21505 3  XPCOM C: ( (dsIBooleanProperty*)1702FC04 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21505 3  XPCOM R: ( (dsIBooleanProperty*)1702FC04 )->queryInterface( 170B4158, *0018EB88 = 1702FC04 ) = 0x00000000
    0x000019C0 21505 3  XPCOM C: ( (dsIProperties*)1862B638 )->Count( 0018EC28 )
    0x000019C0 21505 3  XPCOM R: ( (dsIProperties*)1862B638 )->Count( *0018EC28 = 0x00000008 ) = 0x00000000
    0x000019C0 21505 3  XPCOM C: ( (dsIProperties*)1862B638 )->getProperty( 0x00000006, 0018EC08 )
    0x000019C0 21505 3  XPCOM R: ( (dsIProperties*)1862B638 )->getProperty( 0x00000006, *0018EC08 = 122971B8 ) = 0x00000000
    0x000019C0 21505 3  XPCOM C: ( (dsIProperty*)122971B8 )->getPropertyType( 0018EB88 )
    0x000019C0 21505 3  XPCOM R: ( (dsIProperty*)122971B8 )->getPropertyType( *0018EB88 = 0x00000004 ) = 0x00000000
    0x000019C0 21505 3  XPCOM C: ( (dsIProperty*)122971B8 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21505 3  XPCOM R: ( (dsIProperty*)122971B8 )->queryInterface( 170B4158, *0018EB88 = 12297224 ) = 0x00000000
    0x000019C0 21505 3  XPCOM C: ( (dsIStringProperty*)12297224 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21505 3  XPCOM R: ( (dsIStringProperty*)12297224 )->queryInterface( 170B4158, *0018EB88 = 12297224 ) = 0x00000000
    0x000019C0 21505 3  XPCOM C: ( (dsIStringProperty*)12297224 )->Name( 0018EBF8 )
    0x000019C0 21505 3  XPCOM R: ( (dsIStringProperty*)12297224 )->Name( *0018EBF8 = Default directory for File IO:  ) = 0x00000000
    0x000019C0 21506 3  XPCOM C: ( (dsIProperties*)1862B638 )->getProperty( 0x00000006, 0018EC08 )
    0x000019C0 21506 3  XPCOM R: ( (dsIProperties*)1862B638 )->getProperty( 0x00000006, *0018EC08 = 122971B8 ) = 0x00000000
    0x000019C0 21506 3  XPCOM C: ( (dsIProperty*)122971B8 )->getPropertyType( 0018EB88 )
    0x000019C0 21506 3  XPCOM R: ( (dsIProperty*)122971B8 )->getPropertyType( *0018EB88 = 0x00000004 ) = 0x00000000
    0x000019C0 21506 3  XPCOM C: ( (dsIProperty*)122971B8 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21506 3  XPCOM R: ( (dsIProperty*)122971B8 )->queryInterface( 170B4158, *0018EB88 = 12297224 ) = 0x00000000
    0x000019C0 21506 3  XPCOM C: ( (dsIStringProperty*)12297224 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21506 3  XPCOM R: ( (dsIStringProperty*)12297224 )->queryInterface( 170B4158, *0018EB88 = 12297224 ) = 0x00000000
    0x000019C0 21506 3  XPCOM C: ( (dsIProperties*)1862B638 )->Count( 0018EC28 )
    0x000019C0 21506 3  XPCOM R: ( (dsIProperties*)1862B638 )->Count( *0018EC28 = 0x00000008 ) = 0x00000000
    0x000019C0 21506 3  XPCOM C: ( (dsIProperties*)1862B638 )->getProperty( 0x00000007, 0018EC08 )
    0x000019C0 21506 3  XPCOM R: ( (dsIProperties*)1862B638 )->getProperty( 0x00000007, *0018EC08 = 12412420 ) = 0x00000000
    0x000019C0 21506 3  XPCOM C: ( (dsIProperty*)12412420 )->getPropertyType( 0018EB88 )
    0x000019C0 21506 3  XPCOM R: ( (dsIProperty*)12412420 )->getPropertyType( *0018EB88 = 0x00000003 ) = 0x00000000
    0x000019C0 21506 3  XPCOM C: ( (dsIProperty*)12412420 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21506 3  XPCOM R: ( (dsIProperty*)12412420 )->queryInterface( 170B4158, *0018EB88 = 124124C4 ) = 0x00000000
    0x000019C0 21506 3  XPCOM C: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21506 3  XPCOM R: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 170B4158, *0018EB88 = 1241248C ) = 0x00000000
    0x000019C0 21506 3  XPCOM C: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21506 3  XPCOM R: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 170B4158, *0018EB88 = 124124C4 ) = 0x00000000
    0x000019C0 21506 3  XPCOM C: ( (dsIChoiceListProperty*)124124C4 )->Name( 0018EBF8 )
    0x000019C0 21506 3  XPCOM R: ( (dsIChoiceListProperty*)124124C4 )->Name( *0018EBF8 = When added to a sync group: ) = 0x00000000
    0x000019C0 21506 3  XPCOM C: ( (dsIProperties*)1862B638 )->getProperty( 0x00000007, 0018EC08 )
    0x000019C0 21506 3  XPCOM R: ( (dsIProperties*)1862B638 )->getProperty( 0x00000007, *0018EC08 = 12412420 ) = 0x00000000
    0x000019C0 21506 3  XPCOM C: ( (dsIProperty*)12412420 )->getPropertyType( 0018EB88 )
    0x000019C0 21506 3  XPCOM R: ( (dsIProperty*)12412420 )->getPropertyType( *0018EB88 = 0x00000003 ) = 0x00000000
    0x000019C0 21506 3  XPCOM C: ( (dsIProperty*)12412420 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21506 3  XPCOM R: ( (dsIProperty*)12412420 )->queryInterface( 170B4158, *0018EB88 = 124124C4 ) = 0x00000000
    0x000019C0 21506 3  XPCOM C: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21506 3  XPCOM R: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 170B4158, *0018EB88 = 1241248C ) = 0x00000000
    0x000019C0 21506 3  XPCOM C: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21506 3  XPCOM R: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 170B4158, *0018EB88 = 124124C4 ) = 0x00000000
    0x000019C0 21506 3  XPCOM C: ( (dsIProperties*)1862B638 )->Count( 0018EC28 )
    0x000019C0 21506 3  XPCOM R: ( (dsIProperties*)1862B638 )->Count( *0018EC28 = 0x00000008 ) = 0x00000000
    0x000019C0 21506 3  XPCOM C: ( (dsIProperties*)17034A50 )->Count( 0018EC68 )
    0x000019C0 21506 3  XPCOM R: ( (dsIProperties*)17034A50 )->Count( *0018EC68 = 0x00000005 ) = 0x00000000
    0x000019C0 21506 3  XPCOM C: ( (dsIProperties*)17034A50 )->getProperty( 0x00000003, 0018EC48 )
    0x000019C0 21506 3  XPCOM R: ( (dsIProperties*)17034A50 )->getProperty( 0x00000003, *0018EC48 = 17132CB0 ) = 0x00000000
    0x000019C0 21506 3  XPCOM C: ( (dsIProperty*)17132CB0 )->getPropertyType( 0018EBC8 )
    0x000019C0 21506 3  XPCOM R: ( (dsIProperty*)17132CB0 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 21506 3  XPCOM C: ( (dsIProperty*)17132CB0 )->queryInterface( 170B4158, 0018EBC8 )
    0x000019C0 21506 3  XPCOM R: ( (dsIProperty*)17132CB0 )->queryInterface( 170B4158, *0018EBC8 = 17132D1C ) = 0x00000000
    0x000019C0 21506 3  XPCOM C: ( (dsINode*)17132D1C )->queryInterface( 170B4158, 0018EBC8 )
    0x000019C0 21507 3  XPCOM R: ( (dsINode*)17132D1C )->queryInterface( 170B4158, *0018EBC8 = 17132D1C ) = 0x00000000
    0x000019C0 21507 3  XPCOM C: ( (dsINode*)17132D1C )->Name( 0018EC38 )
    0x000019C0 21507 3  XPCOM R: ( (dsINode*)17132D1C )->Name( *0018EC38 = Cortex M Disassembly Style Options ) = 0x00000000
    0x000019C0 21507 3  XPCOM C: ( (dsIProperties*)17034A50 )->getProperty( 0x00000003, 0018EC48 )
    0x000019C0 21507 3  XPCOM R: ( (dsIProperties*)17034A50 )->getProperty( 0x00000003, *0018EC48 = 17132CB0 ) = 0x00000000
    0x000019C0 21507 3  XPCOM C: ( (dsIProperty*)17132CB0 )->getPropertyType( 0018EBC8 )
    0x000019C0 21507 3  XPCOM R: ( (dsIProperty*)17132CB0 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 21507 3  XPCOM C: ( (dsIProperty*)17132CB0 )->queryInterface( 170B4158, 0018EBC8 )
    0x000019C0 21507 3  XPCOM R: ( (dsIProperty*)17132CB0 )->queryInterface( 170B4158, *0018EBC8 = 17132D1C ) = 0x00000000
    0x000019C0 21507 3  XPCOM C: ( (dsINode*)17132D1C )->queryInterface( 170B4158, 0018EBC8 )
    0x000019C0 21507 3  XPCOM R: ( (dsINode*)17132D1C )->queryInterface( 170B4158, *0018EBC8 = 17132D1C ) = 0x00000000
    0x000019C0 21507 3  XPCOM C: ( (dsINode*)17132D1C )->getChildren( 0018EC08 )
    0x000019C0 21507 3  XPCOM R: ( (dsINode*)17132D1C )->getChildren( *0018EC08 = 1862B6C8 ) = 0x00000000
    0x000019C0 21507 3  XPCOM C: ( (dsIProperties*)17034A50 )->getProperty( 0x00000003, 0018EC48 )
    0x000019C0 21507 3  XPCOM R: ( (dsIProperties*)17034A50 )->getProperty( 0x00000003, *0018EC48 = 17132CB0 ) = 0x00000000
    0x000019C0 21507 3  XPCOM C: ( (dsIProperty*)17132CB0 )->getPropertyType( 0018EBC8 )
    0x000019C0 21507 3  XPCOM R: ( (dsIProperty*)17132CB0 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 21507 3  XPCOM C: ( (dsIProperty*)17132CB0 )->queryInterface( 170B4158, 0018EBC8 )
    0x000019C0 21507 3  XPCOM R: ( (dsIProperty*)17132CB0 )->queryInterface( 170B4158, *0018EBC8 = 17132D1C ) = 0x00000000
    0x000019C0 21507 3  XPCOM C: ( (dsINode*)17132D1C )->queryInterface( 170B4158, 0018EBC8 )
    0x000019C0 21507 3  XPCOM R: ( (dsINode*)17132D1C )->queryInterface( 170B4158, *0018EBC8 = 17132D1C ) = 0x00000000
    0x000019C0 21507 3  XPCOM C: ( (dsINode*)17132D1C )->getChildren( 0018EC08 )
    0x000019C0 21507 3  XPCOM R: ( (dsINode*)17132D1C )->getChildren( *0018EC08 = 1862B4B8 ) = 0x00000000
    0x000019C0 21507 3  XPCOM C: ( (dsIProperties*)1862B4B8 )->Count( 0018EC68 )
    0x000019C0 21507 3  XPCOM R: ( (dsIProperties*)1862B4B8 )->Count( *0018EC68 = 0x00000001 ) = 0x00000000
    0x000019C0 21507 3  XPCOM C: ( (dsIProperties*)17034A50 )->getProperty( 0x00000003, 0018EC48 )
    0x000019C0 21507 3  XPCOM R: ( (dsIProperties*)17034A50 )->getProperty( 0x00000003, *0018EC48 = 17132CB0 ) = 0x00000000
    0x000019C0 21507 3  XPCOM C: ( (dsIProperty*)17132CB0 )->getPropertyType( 0018EBC8 )
    0x000019C0 21507 3  XPCOM R: ( (dsIProperty*)17132CB0 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 21507 3  XPCOM C: ( (dsIProperty*)17132CB0 )->queryInterface( 170B4158, 0018EBC8 )
    0x000019C0 21507 3  XPCOM R: ( (dsIProperty*)17132CB0 )->queryInterface( 170B4158, *0018EBC8 = 17132D1C ) = 0x00000000
    0x000019C0 21507 3  XPCOM C: ( (dsINode*)17132D1C )->queryInterface( 170B4158, 0018EBC8 )
    0x000019C0 21507 3  XPCOM R: ( (dsINode*)17132D1C )->queryInterface( 170B4158, *0018EBC8 = 17132D1C ) = 0x00000000
    0x000019C0 21507 3  XPCOM C: ( (dsINode*)17132D1C )->getChildren( 0018EC08 )
    0x000019C0 21507 3  XPCOM R: ( (dsINode*)17132D1C )->getChildren( *0018EC08 = 1862B4E8 ) = 0x00000000
    0x000019C0 21507 3  XPCOM C: ( (dsIProperties*)1862B4E8 )->Count( 0018EC28 )
    0x000019C0 21507 3  XPCOM R: ( (dsIProperties*)1862B4E8 )->Count( *0018EC28 = 0x00000001 ) = 0x00000000
    0x000019C0 21508 3  XPCOM C: ( (dsIProperties*)1862B4E8 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 21508 3  XPCOM R: ( (dsIProperties*)1862B4E8 )->getProperty( 0x00000000, *0018EC08 = 122DD968 ) = 0x00000000
    0x000019C0 21508 3  XPCOM C: ( (dsIProperty*)122DD968 )->getPropertyType( 0018EB88 )
    0x000019C0 21508 3  XPCOM R: ( (dsIProperty*)122DD968 )->getPropertyType( *0018EB88 = 0x00000003 ) = 0x00000000
    0x000019C0 21508 3  XPCOM C: ( (dsIProperty*)122DD968 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21508 3  XPCOM R: ( (dsIProperty*)122DD968 )->queryInterface( 170B4158, *0018EB88 = 122DDA0C ) = 0x00000000
    0x000019C0 21508 3  XPCOM C: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21508 3  XPCOM R: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 170B4158, *0018EB88 = 122DD9D4 ) = 0x00000000
    0x000019C0 21508 3  XPCOM C: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21508 3  XPCOM R: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 170B4158, *0018EB88 = 122DDA0C ) = 0x00000000
    0x000019C0 21508 3  XPCOM C: ( (dsIChoiceListProperty*)122DDA0C )->Name( 0018EBF8 )
    0x000019C0 21508 3  XPCOM R: ( (dsIChoiceListProperty*)122DDA0C )->Name( *0018EBF8 = Disassembly Mode ) = 0x00000000
    0x000019C0 21508 3  XPCOM C: ( (dsIProperties*)1862B4E8 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 21508 3  XPCOM R: ( (dsIProperties*)1862B4E8 )->getProperty( 0x00000000, *0018EC08 = 122DD968 ) = 0x00000000
    0x000019C0 21508 3  XPCOM C: ( (dsIProperty*)122DD968 )->getPropertyType( 0018EB88 )
    0x000019C0 21508 3  XPCOM R: ( (dsIProperty*)122DD968 )->getPropertyType( *0018EB88 = 0x00000003 ) = 0x00000000
    0x000019C0 21508 3  XPCOM C: ( (dsIProperty*)122DD968 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21508 3  XPCOM R: ( (dsIProperty*)122DD968 )->queryInterface( 170B4158, *0018EB88 = 122DDA0C ) = 0x00000000
    0x000019C0 21508 3  XPCOM C: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21508 3  XPCOM R: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 170B4158, *0018EB88 = 122DD9D4 ) = 0x00000000
    0x000019C0 21508 3  XPCOM C: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21508 3  XPCOM R: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 170B4158, *0018EB88 = 122DDA0C ) = 0x00000000
    0x000019C0 21508 3  XPCOM C: ( (dsIProperties*)1862B4E8 )->Count( 0018EC28 )
    0x000019C0 21508 3  XPCOM R: ( (dsIProperties*)1862B4E8 )->Count( *0018EC28 = 0x00000001 ) = 0x00000000
    0x000019C0 21508 3  XPCOM C: ( (dsIProperties*)17034A50 )->Count( 0018EC68 )
    0x000019C0 21508 3  XPCOM R: ( (dsIProperties*)17034A50 )->Count( *0018EC68 = 0x00000005 ) = 0x00000000
    0x000019C0 21508 3  XPCOM C: ( (dsIProperties*)17034A50 )->getProperty( 0x00000004, 0018EC48 )
    0x000019C0 21508 3  XPCOM R: ( (dsIProperties*)17034A50 )->getProperty( 0x00000004, *0018EC48 = 16F52690 ) = 0x00000000
    0x000019C0 21508 3  XPCOM C: ( (dsIProperty*)16F52690 )->getPropertyType( 0018EBC8 )
    0x000019C0 21508 3  XPCOM R: ( (dsIProperty*)16F52690 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 21508 3  XPCOM C: ( (dsIProperty*)16F52690 )->queryInterface( 170B4158, 0018EBC8 )
    0x000019C0 21508 3  XPCOM R: ( (dsIProperty*)16F52690 )->queryInterface( 170B4158, *0018EBC8 = 16F526FC ) = 0x00000000
    0x000019C0 21508 3  XPCOM C: ( (dsINode*)16F526FC )->queryInterface( 170B4158, 0018EBC8 )
    0x000019C0 21508 3  XPCOM R: ( (dsINode*)16F526FC )->queryInterface( 170B4158, *0018EBC8 = 16F526FC ) = 0x00000000
    0x000019C0 21508 3  XPCOM C: ( (dsINode*)16F526FC )->Name( 0018EC38 )
    0x000019C0 21508 3  XPCOM R: ( (dsINode*)16F526FC )->Name( *0018EC38 = Flash Settings ) = 0x00000000
    0x000019C0 21508 3  XPCOM C: ( (dsIProperties*)17034A50 )->getProperty( 0x00000004, 0018EC48 )
    0x000019C0 21508 3  XPCOM R: ( (dsIProperties*)17034A50 )->getProperty( 0x00000004, *0018EC48 = 16F52690 ) = 0x00000000
    0x000019C0 21508 3  XPCOM C: ( (dsIProperty*)16F52690 )->getPropertyType( 0018EBC8 )
    0x000019C0 21508 3  XPCOM R: ( (dsIProperty*)16F52690 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 21508 3  XPCOM C: ( (dsIProperty*)16F52690 )->queryInterface( 170B4158, 0018EBC8 )
    0x000019C0 21509 3  XPCOM R: ( (dsIProperty*)16F52690 )->queryInterface( 170B4158, *0018EBC8 = 16F526FC ) = 0x00000000
    0x000019C0 21509 3  XPCOM C: ( (dsINode*)16F526FC )->queryInterface( 170B4158, 0018EBC8 )
    0x000019C0 21509 3  XPCOM R: ( (dsINode*)16F526FC )->queryInterface( 170B4158, *0018EBC8 = 16F526FC ) = 0x00000000
    0x000019C0 21509 3  XPCOM C: ( (dsINode*)16F526FC )->getChildren( 0018EC08 )
    0x000019C0 21509 3  XPCOM R: ( (dsINode*)16F526FC )->getChildren( *0018EC08 = 1862C3B8 ) = 0x00000000
    0x000019C0 21509 3  XPCOM C: ( (dsIProperties*)17034A50 )->getProperty( 0x00000004, 0018EC48 )
    0x000019C0 21509 3  XPCOM R: ( (dsIProperties*)17034A50 )->getProperty( 0x00000004, *0018EC48 = 16F52690 ) = 0x00000000
    0x000019C0 21509 3  XPCOM C: ( (dsIProperty*)16F52690 )->getPropertyType( 0018EBC8 )
    0x000019C0 21509 3  XPCOM R: ( (dsIProperty*)16F52690 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 21509 3  XPCOM C: ( (dsIProperty*)16F52690 )->queryInterface( 170B3A38, 0018EBC8 )
    0x000019C0 21509 3  XPCOM R: ( (dsIProperty*)16F52690 )->queryInterface( 170B3A38, *0018EBC8 = 16F526FC ) = 0x00000000
    0x000019C0 21509 3  XPCOM C: ( (dsINode*)16F526FC )->queryInterface( 170B3A38, 0018EBC8 )
    0x000019C0 21509 3  XPCOM R: ( (dsINode*)16F526FC )->queryInterface( 170B3A38, *0018EBC8 = 16F526FC ) = 0x00000000
    0x000019C0 21509 3  XPCOM C: ( (dsINode*)16F526FC )->getChildren( 0018EC08 )
    0x000019C0 21509 3  XPCOM R: ( (dsINode*)16F526FC )->getChildren( *0018EC08 = 1862C388 ) = 0x00000000
    0x000019C0 21509 3  XPCOM C: ( (dsIProperties*)1862C388 )->Count( 0018EC68 )
    0x000019C0 21509 3  XPCOM R: ( (dsIProperties*)1862C388 )->Count( *0018EC68 = 0x00000009 ) = 0x00000000
    0x000019C0 21509 3  XPCOM C: ( (dsIProperties*)17034A50 )->getProperty( 0x00000004, 0018EC48 )
    0x000019C0 21509 3  XPCOM R: ( (dsIProperties*)17034A50 )->getProperty( 0x00000004, *0018EC48 = 16F52690 ) = 0x00000000
    0x000019C0 21509 3  XPCOM C: ( (dsIProperty*)16F52690 )->getPropertyType( 0018EBC8 )
    0x000019C0 21509 3  XPCOM R: ( (dsIProperty*)16F52690 )->getPropertyType( *0018EBC8 = 0x00000005 ) = 0x00000000
    0x000019C0 21509 3  XPCOM C: ( (dsIProperty*)16F52690 )->queryInterface( 170B4158, 0018EBC8 )
    0x000019C0 21509 3  XPCOM R: ( (dsIProperty*)16F52690 )->queryInterface( 170B4158, *0018EBC8 = 16F526FC ) = 0x00000000
    0x000019C0 21509 3  XPCOM C: ( (dsINode*)16F526FC )->queryInterface( 170B4158, 0018EBC8 )
    0x000019C0 21509 3  XPCOM R: ( (dsINode*)16F526FC )->queryInterface( 170B4158, *0018EBC8 = 16F526FC ) = 0x00000000
    0x000019C0 21509 3  XPCOM C: ( (dsINode*)16F526FC )->getChildren( 0018EC08 )
    0x000019C0 21509 3  XPCOM R: ( (dsINode*)16F526FC )->getChildren( *0018EC08 = 1862C328 ) = 0x00000000
    0x000019C0 21509 3  XPCOM C: ( (dsIProperties*)1862C328 )->Count( 0018EC28 )
    0x000019C0 21509 3  XPCOM R: ( (dsIProperties*)1862C328 )->Count( *0018EC28 = 0x00000009 ) = 0x00000000
    0x000019C0 21509 3  XPCOM C: ( (dsIProperties*)1862C328 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 21509 3  XPCOM R: ( (dsIProperties*)1862C328 )->getProperty( 0x00000000, *0018EC08 = 185E9200 ) = 0x00000000
    0x000019C0 21509 3  XPCOM C: ( (dsIProperty*)185E9200 )->getPropertyType( 0018EB88 )
    0x000019C0 21509 3  XPCOM R: ( (dsIProperty*)185E9200 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21509 3  XPCOM C: ( (dsIProperty*)185E9200 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21509 3  XPCOM R: ( (dsIProperty*)185E9200 )->queryInterface( 170B3A38, *0018EB88 = 185E926C ) = 0x00000000
    0x000019C0 21509 3  XPCOM C: ( (dsIGroup*)185E926C )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21509 3  XPCOM R: ( (dsIGroup*)185E926C )->queryInterface( 170B3A38, *0018EB88 = 185E926C ) = 0x00000000
    0x000019C0 21510 3  XPCOM C: ( (dsIGroup*)185E926C )->Name( 0018EBF8 )
    0x000019C0 21510 3  XPCOM R: ( (dsIGroup*)185E926C )->Name( *0018EBF8 = Flash Settings ) = 0x00000000
    0x000019C0 21510 3  XPCOM C: ( (dsIProperties*)1862C328 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 21510 3  XPCOM R: ( (dsIProperties*)1862C328 )->getProperty( 0x00000000, *0018EC08 = 185E9200 ) = 0x00000000
    0x000019C0 21510 3  XPCOM C: ( (dsIProperty*)185E9200 )->getPropertyType( 0018EB88 )
    0x000019C0 21510 3  XPCOM R: ( (dsIProperty*)185E9200 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21510 3  XPCOM C: ( (dsIProperty*)185E9200 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21510 3  XPCOM R: ( (dsIProperty*)185E9200 )->queryInterface( 170B3A38, *0018EB88 = 185E926C ) = 0x00000000
    0x000019C0 21510 3  XPCOM C: ( (dsIGroup*)185E926C )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21510 3  XPCOM R: ( (dsIGroup*)185E926C )->queryInterface( 170B3A38, *0018EB88 = 185E926C ) = 0x00000000
    0x000019C0 21510 3  XPCOM C: ( (dsIGroup*)185E926C )->getChildren( 0018EBC8 )
    0x000019C0 21510 3  XPCOM R: ( (dsIGroup*)185E926C )->getChildren( *0018EBC8 = 1862C3E8 ) = 0x00000000
    0x000019C0 21510 3  XPCOM C: ( (dsIProperties*)1862C328 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 21510 3  XPCOM R: ( (dsIProperties*)1862C328 )->getProperty( 0x00000000, *0018EC08 = 185E9200 ) = 0x00000000
    0x000019C0 21510 3  XPCOM C: ( (dsIProperty*)185E9200 )->getPropertyType( 0018EB88 )
    0x000019C0 21510 3  XPCOM R: ( (dsIProperty*)185E9200 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21510 3  XPCOM C: ( (dsIProperty*)185E9200 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21510 3  XPCOM R: ( (dsIProperty*)185E9200 )->queryInterface( 170B3A38, *0018EB88 = 185E926C ) = 0x00000000
    0x000019C0 21511 3  XPCOM C: ( (dsIGroup*)185E926C )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21511 3  XPCOM R: ( (dsIGroup*)185E926C )->queryInterface( 170B3A38, *0018EB88 = 185E926C ) = 0x00000000
    0x000019C0 21511 3  XPCOM C: ( (dsIGroup*)185E926C )->getChildren( 0018EBC8 )
    0x000019C0 21511 3  XPCOM R: ( (dsIGroup*)185E926C )->getChildren( *0018EBC8 = 1862C2C8 ) = 0x00000000
    0x000019C0 21511 3  XPCOM C: ( (dsIProperties*)1862C2C8 )->Count( 0018EC28 )
    0x000019C0 21511 3  XPCOM R: ( (dsIProperties*)1862C2C8 )->Count( *0018EC28 = 0x00000002 ) = 0x00000000
    0x000019C0 21511 3  XPCOM C: ( (dsIProperties*)1862C328 )->getProperty( 0x00000000, 0018EC08 )
    0x000019C0 21511 3  XPCOM R: ( (dsIProperties*)1862C328 )->getProperty( 0x00000000, *0018EC08 = 185E9200 ) = 0x00000000
    0x000019C0 21511 3  XPCOM C: ( (dsIProperty*)185E9200 )->getPropertyType( 0018EB88 )
    0x000019C0 21511 3  XPCOM R: ( (dsIProperty*)185E9200 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21511 3  XPCOM C: ( (dsIProperty*)185E9200 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21511 3  XPCOM R: ( (dsIProperty*)185E9200 )->queryInterface( 170B3A38, *0018EB88 = 185E926C ) = 0x00000000
    0x000019C0 21511 3  XPCOM C: ( (dsIGroup*)185E926C )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21511 3  XPCOM R: ( (dsIGroup*)185E926C )->queryInterface( 170B3A38, *0018EB88 = 185E926C ) = 0x00000000
    0x000019C0 21511 3  XPCOM C: ( (dsIGroup*)185E926C )->getChildren( 0018EBC8 )
    0x000019C0 21511 3  XPCOM R: ( (dsIGroup*)185E926C )->getChildren( *0018EBC8 = 1862C268 ) = 0x00000000
    0x000019C0 21511 3  XPCOM C: ( (dsIProperties*)1862C268 )->Count( 0018EBE8 )
    0x000019C0 21511 3  XPCOM R: ( (dsIProperties*)1862C268 )->Count( *0018EBE8 = 0x00000002 ) = 0x00000000
    0x000019C0 21511 3  XPCOM C: ( (dsIProperties*)1862C268 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 21511 3  XPCOM R: ( (dsIProperties*)1862C268 )->getProperty( 0x00000000, *0018EBC8 = 005AFD50 ) = 0x00000000
    0x000019C0 21511 3  XPCOM C: ( (dsIProperty*)005AFD50 )->getPropertyType( 0018EB48 )
    0x000019C0 21511 3  XPCOM R: ( (dsIProperty*)005AFD50 )->getPropertyType( *0018EB48 = 0x00000001 ) = 0x00000000
    0x000019C0 21511 3  XPCOM C: ( (dsIProperty*)005AFD50 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21511 3  XPCOM R: ( (dsIProperty*)005AFD50 )->queryInterface( 170B3A38, *0018EB48 = 005AFDBC ) = 0x00000000
    0x000019C0 21511 3  XPCOM C: ( (dsINumericProperty*)005AFDBC )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21511 3  XPCOM R: ( (dsINumericProperty*)005AFDBC )->queryInterface( 170B3A38, *0018EB48 = 005AFDBC ) = 0x00000000
    0x000019C0 21511 3  XPCOM C: ( (dsINumericProperty*)005AFDBC )->Name( 0018EBB8 )
    0x000019C0 21511 3  XPCOM R: ( (dsINumericProperty*)005AFDBC )->Name( *0018EBB8 = Crystal Frequency: (MHz) ) = 0x00000000
    0x000019C0 21511 3  XPCOM C: ( (dsIProperties*)1862C268 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 21511 3  XPCOM R: ( (dsIProperties*)1862C268 )->getProperty( 0x00000000, *0018EBC8 = 005AFD50 ) = 0x00000000
    0x000019C0 21511 3  XPCOM C: ( (dsIProperty*)005AFD50 )->getPropertyType( 0018EB48 )
    0x000019C0 21511 3  XPCOM R: ( (dsIProperty*)005AFD50 )->getPropertyType( *0018EB48 = 0x00000001 ) = 0x00000000
    0x000019C0 21511 3  XPCOM C: ( (dsIProperty*)005AFD50 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21511 3  XPCOM R: ( (dsIProperty*)005AFD50 )->queryInterface( 170B3A38, *0018EB48 = 005AFDBC ) = 0x00000000
    0x000019C0 21511 3  XPCOM C: ( (dsINumericProperty*)005AFDBC )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21511 3  XPCOM R: ( (dsINumericProperty*)005AFDBC )->queryInterface( 170B3A38, *0018EB48 = 005AFDBC ) = 0x00000000
    0x000019C0 21511 3  XPCOM C: ( (dsIProperties*)1862C268 )->Count( 0018EBE8 )
    0x000019C0 21511 3  XPCOM R: ( (dsIProperties*)1862C268 )->Count( *0018EBE8 = 0x00000002 ) = 0x00000000
    0x000019C0 21511 3  XPCOM C: ( (dsIProperties*)1862C268 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 21511 3  XPCOM R: ( (dsIProperties*)1862C268 )->getProperty( 0x00000001, *0018EBC8 = 185E9860 ) = 0x00000000
    0x000019C0 21511 3  XPCOM C: ( (dsIProperty*)185E9860 )->getPropertyType( 0018EB48 )
    0x000019C0 21512 3  XPCOM R: ( (dsIProperty*)185E9860 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21512 3  XPCOM C: ( (dsIProperty*)185E9860 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21512 3  XPCOM R: ( (dsIProperty*)185E9860 )->queryInterface( 170B3A38, *0018EB48 = 185E98CC ) = 0x00000000
    0x000019C0 21512 3  XPCOM C: ( (dsIBooleanProperty*)185E98CC )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21512 3  XPCOM R: ( (dsIBooleanProperty*)185E98CC )->queryInterface( 170B3A38, *0018EB48 = 185E98CC ) = 0x00000000
    0x000019C0 21512 3  XPCOM C: ( (dsIBooleanProperty*)185E98CC )->Name( 0018EBB8 )
    0x000019C0 21512 3  XPCOM R: ( (dsIBooleanProperty*)185E98CC )->Name( *0018EBB8 = Reset target during program load to Flash memory ) = 0x00000000
    0x000019C0 21512 3  XPCOM C: ( (dsIProperties*)1862C268 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 21512 3  XPCOM R: ( (dsIProperties*)1862C268 )->getProperty( 0x00000001, *0018EBC8 = 185E9860 ) = 0x00000000
    0x000019C0 21512 3  XPCOM C: ( (dsIProperty*)185E9860 )->getPropertyType( 0018EB48 )
    0x000019C0 21512 3  XPCOM R: ( (dsIProperty*)185E9860 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21512 3  XPCOM C: ( (dsIProperty*)185E9860 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21512 3  XPCOM R: ( (dsIProperty*)185E9860 )->queryInterface( 170B3A38, *0018EB48 = 185E98CC ) = 0x00000000
    0x000019C0 21512 3  XPCOM C: ( (dsIBooleanProperty*)185E98CC )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21512 3  XPCOM R: ( (dsIBooleanProperty*)185E98CC )->queryInterface( 170B3A38, *0018EB48 = 185E98CC ) = 0x00000000
    0x000019C0 21512 3  XPCOM C: ( (dsIProperties*)1862C268 )->Count( 0018EBE8 )
    0x000019C0 21512 3  XPCOM R: ( (dsIProperties*)1862C268 )->Count( *0018EBE8 = 0x00000002 ) = 0x00000000
    0x000019C0 21512 3  XPCOM C: ( (dsIProperties*)1862C328 )->Count( 0018EC28 )
    0x000019C0 21512 3  XPCOM R: ( (dsIProperties*)1862C328 )->Count( *0018EC28 = 0x00000009 ) = 0x00000000
    0x000019C0 21512 3  XPCOM C: ( (dsIProperties*)1862C328 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 21512 3  XPCOM R: ( (dsIProperties*)1862C328 )->getProperty( 0x00000001, *0018EC08 = 185E9288 ) = 0x00000000
    0x000019C0 21512 3  XPCOM C: ( (dsIProperty*)185E9288 )->getPropertyType( 0018EB88 )
    0x000019C0 21512 3  XPCOM R: ( (dsIProperty*)185E9288 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21512 3  XPCOM C: ( (dsIProperty*)185E9288 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21512 3  XPCOM R: ( (dsIProperty*)185E9288 )->queryInterface( 170B3A38, *0018EB88 = 185E92F4 ) = 0x00000000
    0x000019C0 21512 3  XPCOM C: ( (dsIGroup*)185E92F4 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21512 3  XPCOM R: ( (dsIGroup*)185E92F4 )->queryInterface( 170B3A38, *0018EB88 = 185E92F4 ) = 0x00000000
    0x000019C0 21512 3  XPCOM C: ( (dsIGroup*)185E92F4 )->Name( 0018EBF8 )
    0x000019C0 21512 3  XPCOM R: ( (dsIGroup*)185E92F4 )->Name( *0018EBF8 = Program Load Settings ) = 0x00000000
    0x000019C0 21512 3  XPCOM C: ( (dsIProperties*)1862C328 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 21512 3  XPCOM R: ( (dsIProperties*)1862C328 )->getProperty( 0x00000001, *0018EC08 = 185E9288 ) = 0x00000000
    0x000019C0 21512 3  XPCOM C: ( (dsIProperty*)185E9288 )->getPropertyType( 0018EB88 )
    0x000019C0 21512 3  XPCOM R: ( (dsIProperty*)185E9288 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21512 3  XPCOM C: ( (dsIProperty*)185E9288 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21512 3  XPCOM R: ( (dsIProperty*)185E9288 )->queryInterface( 170B3A38, *0018EB88 = 185E92F4 ) = 0x00000000
    0x000019C0 21512 3  XPCOM C: ( (dsIGroup*)185E92F4 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21512 3  XPCOM R: ( (dsIGroup*)185E92F4 )->queryInterface( 170B3A38, *0018EB88 = 185E92F4 ) = 0x00000000
    0x000019C0 21512 3  XPCOM C: ( (dsIGroup*)185E92F4 )->getChildren( 0018EBC8 )
    0x000019C0 21512 3  XPCOM R: ( (dsIGroup*)185E92F4 )->getChildren( *0018EBC8 = 1862C238 ) = 0x00000000
    0x000019C0 21513 3  XPCOM C: ( (dsIProperties*)1862C328 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 21513 3  XPCOM R: ( (dsIProperties*)1862C328 )->getProperty( 0x00000001, *0018EC08 = 185E9288 ) = 0x00000000
    0x000019C0 21513 3  XPCOM C: ( (dsIProperty*)185E9288 )->getPropertyType( 0018EB88 )
    0x000019C0 21513 3  XPCOM R: ( (dsIProperty*)185E9288 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21513 3  XPCOM C: ( (dsIProperty*)185E9288 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21513 3  XPCOM R: ( (dsIProperty*)185E9288 )->queryInterface( 170B3A38, *0018EB88 = 185E92F4 ) = 0x00000000
    0x000019C0 21513 3  XPCOM C: ( (dsIGroup*)185E92F4 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21513 3  XPCOM R: ( (dsIGroup*)185E92F4 )->queryInterface( 170B3A38, *0018EB88 = 185E92F4 ) = 0x00000000
    0x000019C0 21513 3  XPCOM C: ( (dsIGroup*)185E92F4 )->getChildren( 0018EBC8 )
    0x000019C0 21513 3  XPCOM R: ( (dsIGroup*)185E92F4 )->getChildren( *0018EBC8 = 1862CF58 ) = 0x00000000
    0x000019C0 21513 3  XPCOM C: ( (dsIProperties*)1862CF58 )->Count( 0018EC28 )
    0x000019C0 21513 3  XPCOM R: ( (dsIProperties*)1862CF58 )->Count( *0018EC28 = 0x00000003 ) = 0x00000000
    0x000019C0 21513 3  XPCOM C: ( (dsIProperties*)1862C328 )->getProperty( 0x00000001, 0018EC08 )
    0x000019C0 21513 3  XPCOM R: ( (dsIProperties*)1862C328 )->getProperty( 0x00000001, *0018EC08 = 185E9288 ) = 0x00000000
    0x000019C0 21513 3  XPCOM C: ( (dsIProperty*)185E9288 )->getPropertyType( 0018EB88 )
    0x000019C0 21513 3  XPCOM R: ( (dsIProperty*)185E9288 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21513 3  XPCOM C: ( (dsIProperty*)185E9288 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21515 3  XPCOM R: ( (dsIProperty*)185E9288 )->queryInterface( 170B3A38, *0018EB88 = 185E92F4 ) = 0x00000000
    0x000019C0 21515 3  XPCOM C: ( (dsIGroup*)185E92F4 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21515 3  XPCOM R: ( (dsIGroup*)185E92F4 )->queryInterface( 170B3A38, *0018EB88 = 185E92F4 ) = 0x00000000
    0x000019C0 21515 3  XPCOM C: ( (dsIGroup*)185E92F4 )->getChildren( 0018EBC8 )
    0x000019C0 21515 3  XPCOM R: ( (dsIGroup*)185E92F4 )->getChildren( *0018EBC8 = 1862CF28 ) = 0x00000000
    0x000019C0 21516 3  XPCOM C: ( (dsIProperties*)1862CF28 )->Count( 0018EBE8 )
    0x000019C0 21516 3  XPCOM R: ( (dsIProperties*)1862CF28 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21516 3  XPCOM C: ( (dsIProperties*)1862CF28 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 21516 3  XPCOM R: ( (dsIProperties*)1862CF28 )->getProperty( 0x00000000, *0018EBC8 = 12412060 ) = 0x00000000
    0x000019C0 21516 3  XPCOM C: ( (dsIProperty*)12412060 )->getPropertyType( 0018EB48 )
    0x000019C0 21516 3  XPCOM R: ( (dsIProperty*)12412060 )->getPropertyType( *0018EB48 = 0x00000003 ) = 0x00000000
    0x000019C0 21516 3  XPCOM C: ( (dsIProperty*)12412060 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21516 3  XPCOM R: ( (dsIProperty*)12412060 )->queryInterface( 170B3A38, *0018EB48 = 12412104 ) = 0x00000000
    0x000019C0 21516 3  XPCOM C: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21516 3  XPCOM R: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 170B3A38, *0018EB48 = 124120CC ) = 0x00000000
    0x000019C0 21516 3  XPCOM C: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21516 3  XPCOM R: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 170B3A38, *0018EB48 = 12412104 ) = 0x00000000
    0x000019C0 21516 3  XPCOM C: ( (dsIChoiceListProperty*)12412104 )->Name( 0018EBB8 )
    0x000019C0 21516 3  XPCOM R: ( (dsIChoiceListProperty*)12412104 )->Name( *0018EBB8 = Erase Method ) = 0x00000000
    0x000019C0 21516 3  XPCOM C: ( (dsIProperties*)1862CF28 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 21516 3  XPCOM R: ( (dsIProperties*)1862CF28 )->getProperty( 0x00000000, *0018EBC8 = 12412060 ) = 0x00000000
    0x000019C0 21516 3  XPCOM C: ( (dsIProperty*)12412060 )->getPropertyType( 0018EB48 )
    0x000019C0 21516 3  XPCOM R: ( (dsIProperty*)12412060 )->getPropertyType( *0018EB48 = 0x00000003 ) = 0x00000000
    0x000019C0 21516 3  XPCOM C: ( (dsIProperty*)12412060 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21516 3  XPCOM R: ( (dsIProperty*)12412060 )->queryInterface( 170B3A38, *0018EB48 = 12412104 ) = 0x00000000
    0x000019C0 21517 3  XPCOM C: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21517 3  XPCOM R: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 170B3A38, *0018EB48 = 124120CC ) = 0x00000000
    0x000019C0 21517 3  XPCOM C: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21517 3  XPCOM R: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 170B3A38, *0018EB48 = 12412104 ) = 0x00000000
    0x000019C0 21517 3  XPCOM C: ( (dsIProperties*)1862CF28 )->Count( 0018EBE8 )
    0x000019C0 21517 3  XPCOM R: ( (dsIProperties*)1862CF28 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21517 3  XPCOM C: ( (dsIProperties*)1862CF28 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 21517 3  XPCOM R: ( (dsIProperties*)1862CF28 )->getProperty( 0x00000001, *0018EBC8 = 185E98E8 ) = 0x00000000
    0x000019C0 21517 3  XPCOM C: ( (dsIProperty*)185E98E8 )->getPropertyType( 0018EB48 )
    0x000019C0 21517 3  XPCOM R: ( (dsIProperty*)185E98E8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21517 3  XPCOM C: ( (dsIProperty*)185E98E8 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21517 3  XPCOM R: ( (dsIProperty*)185E98E8 )->queryInterface( 170B3A38, *0018EB48 = 185E9954 ) = 0x00000000
    0x000019C0 21517 3  XPCOM C: ( (dsIBooleanProperty*)185E9954 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21517 3  XPCOM R: ( (dsIBooleanProperty*)185E9954 )->queryInterface( 170B3A38, *0018EB48 = 185E9954 ) = 0x00000000
    0x000019C0 21517 3  XPCOM C: ( (dsIBooleanProperty*)185E9954 )->Name( 0018EBB8 )
    0x000019C0 21517 3  XPCOM R: ( (dsIBooleanProperty*)185E9954 )->Name( *0018EBB8 = Perform Blank Check on Flash memory before load program ) = 0x00000000
    0x000019C0 21517 3  XPCOM C: ( (dsIProperties*)1862CF28 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 21517 3  XPCOM R: ( (dsIProperties*)1862CF28 )->getProperty( 0x00000001, *0018EBC8 = 185E98E8 ) = 0x00000000
    0x000019C0 21517 3  XPCOM C: ( (dsIProperty*)185E98E8 )->getPropertyType( 0018EB48 )
    0x000019C0 21517 3  XPCOM R: ( (dsIProperty*)185E98E8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21517 3  XPCOM C: ( (dsIProperty*)185E98E8 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21517 3  XPCOM R: ( (dsIProperty*)185E98E8 )->queryInterface( 170B3A38, *0018EB48 = 185E9954 ) = 0x00000000
    0x000019C0 21517 3  XPCOM C: ( (dsIBooleanProperty*)185E9954 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21517 3  XPCOM R: ( (dsIBooleanProperty*)185E9954 )->queryInterface( 170B3A38, *0018EB48 = 185E9954 ) = 0x00000000
    0x000019C0 21517 3  XPCOM C: ( (dsIProperties*)1862CF28 )->Count( 0018EBE8 )
    0x000019C0 21517 3  XPCOM R: ( (dsIProperties*)1862CF28 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21517 3  XPCOM C: ( (dsIProperties*)1862CF28 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 21517 3  XPCOM R: ( (dsIProperties*)1862CF28 )->getProperty( 0x00000002, *0018EBC8 = 16EF8CD8 ) = 0x00000000
    0x000019C0 21517 3  XPCOM C: ( (dsIProperty*)16EF8CD8 )->getPropertyType( 0018EB48 )
    0x000019C0 21517 3  XPCOM R: ( (dsIProperty*)16EF8CD8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21517 3  XPCOM C: ( (dsIProperty*)16EF8CD8 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21517 3  XPCOM R: ( (dsIProperty*)16EF8CD8 )->queryInterface( 170B3A38, *0018EB48 = 16EF8D44 ) = 0x00000000
    0x000019C0 21517 3  XPCOM C: ( (dsIBooleanProperty*)16EF8D44 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21517 3  XPCOM R: ( (dsIBooleanProperty*)16EF8D44 )->queryInterface( 170B3A38, *0018EB48 = 16EF8D44 ) = 0x00000000
    0x000019C0 21517 3  XPCOM C: ( (dsIBooleanProperty*)16EF8D44 )->Name( 0018EBB8 )
    0x000019C0 21517 3  XPCOM R: ( (dsIBooleanProperty*)16EF8D44 )->Name( *0018EBB8 = Calculate CRC32 on entire Flash Memory after load program ) = 0x00000000
    0x000019C0 21517 3  XPCOM C: ( (dsIProperties*)1862CF28 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 21517 3  XPCOM R: ( (dsIProperties*)1862CF28 )->getProperty( 0x00000002, *0018EBC8 = 16EF8CD8 ) = 0x00000000
    0x000019C0 21518 3  XPCOM C: ( (dsIProperty*)16EF8CD8 )->getPropertyType( 0018EB48 )
    0x000019C0 21518 3  XPCOM R: ( (dsIProperty*)16EF8CD8 )->getPropertyType( *0018EB48 = 0x00000000 ) = 0x00000000
    0x000019C0 21518 3  XPCOM C: ( (dsIProperty*)16EF8CD8 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21518 3  XPCOM R: ( (dsIProperty*)16EF8CD8 )->queryInterface( 170B3A38, *0018EB48 = 16EF8D44 ) = 0x00000000
    0x000019C0 21518 3  XPCOM C: ( (dsIBooleanProperty*)16EF8D44 )->queryInterface( 170B3A38, 0018EB48 )
    0x000019C0 21518 3  XPCOM R: ( (dsIBooleanProperty*)16EF8D44 )->queryInterface( 170B3A38, *0018EB48 = 16EF8D44 ) = 0x00000000
    0x000019C0 21518 3  XPCOM C: ( (dsIProperties*)1862CF28 )->Count( 0018EBE8 )
    0x000019C0 21518 3  XPCOM R: ( (dsIProperties*)1862CF28 )->Count( *0018EBE8 = 0x00000003 ) = 0x00000000
    0x000019C0 21518 3  XPCOM C: ( (dsIProperties*)1862C328 )->Count( 0018EC28 )
    0x000019C0 21518 3  XPCOM R: ( (dsIProperties*)1862C328 )->Count( *0018EC28 = 0x00000009 ) = 0x00000000
    0x000019C0 21518 3  XPCOM C: ( (dsIProperties*)1862C328 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 21518 3  XPCOM R: ( (dsIProperties*)1862C328 )->getProperty( 0x00000002, *0018EC08 = 185E9310 ) = 0x00000000
    0x000019C0 21518 3  XPCOM C: ( (dsIProperty*)185E9310 )->getPropertyType( 0018EB88 )
    0x000019C0 21518 3  XPCOM R: ( (dsIProperty*)185E9310 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21518 3  XPCOM C: ( (dsIProperty*)185E9310 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21518 3  XPCOM R: ( (dsIProperty*)185E9310 )->queryInterface( 170B3A38, *0018EB88 = 185E937C ) = 0x00000000
    0x000019C0 21518 3  XPCOM C: ( (dsIGroup*)185E937C )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21518 3  XPCOM R: ( (dsIGroup*)185E937C )->queryInterface( 170B3A38, *0018EB88 = 185E937C ) = 0x00000000
    0x000019C0 21518 3  XPCOM C: ( (dsIGroup*)185E937C )->Name( 0018EBF8 )
    0x000019C0 21518 3  XPCOM R: ( (dsIGroup*)185E937C )->Name( *0018EBF8 = Erase ) = 0x00000000
    0x000019C0 21518 3  XPCOM C: ( (dsIProperties*)1862C328 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 21518 3  XPCOM R: ( (dsIProperties*)1862C328 )->getProperty( 0x00000002, *0018EC08 = 185E9310 ) = 0x00000000
    0x000019C0 21518 3  XPCOM C: ( (dsIProperty*)185E9310 )->getPropertyType( 0018EB88 )
    0x000019C0 21518 3  XPCOM R: ( (dsIProperty*)185E9310 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21518 3  XPCOM C: ( (dsIProperty*)185E9310 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21518 3  XPCOM R: ( (dsIProperty*)185E9310 )->queryInterface( 170B3A38, *0018EB88 = 185E937C ) = 0x00000000
    0x000019C0 21518 3  XPCOM C: ( (dsIGroup*)185E937C )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21518 3  XPCOM R: ( (dsIGroup*)185E937C )->queryInterface( 170B3A38, *0018EB88 = 185E937C ) = 0x00000000
    0x000019C0 21518 3  XPCOM C: ( (dsIGroup*)185E937C )->getChildren( 0018EBC8 )
    0x000019C0 21518 3  XPCOM R: ( (dsIGroup*)185E937C )->getChildren( *0018EBC8 = 1862CEF8 ) = 0x00000000
    0x000019C0 21518 3  XPCOM C: ( (dsIProperties*)1862C328 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 21518 3  XPCOM R: ( (dsIProperties*)1862C328 )->getProperty( 0x00000002, *0018EC08 = 185E9310 ) = 0x00000000
    0x000019C0 21518 3  XPCOM C: ( (dsIProperty*)185E9310 )->getPropertyType( 0018EB88 )
    0x000019C0 21518 3  XPCOM R: ( (dsIProperty*)185E9310 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21518 3  XPCOM C: ( (dsIProperty*)185E9310 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21518 3  XPCOM R: ( (dsIProperty*)185E9310 )->queryInterface( 170B4158, *0018EB88 = 185E937C ) = 0x00000000
    0x000019C0 21518 3  XPCOM C: ( (dsIGroup*)185E937C )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21518 3  XPCOM R: ( (dsIGroup*)185E937C )->queryInterface( 170B4158, *0018EB88 = 185E937C ) = 0x00000000
    0x000019C0 21518 3  XPCOM C: ( (dsIGroup*)185E937C )->getChildren( 0018EBC8 )
    0x000019C0 21518 3  XPCOM R: ( (dsIGroup*)185E937C )->getChildren( *0018EBC8 = 1862CEC8 ) = 0x00000000
    0x000019C0 21518 3  XPCOM C: ( (dsIProperties*)1862CEC8 )->Count( 0018EC28 )
    0x000019C0 21519 3  XPCOM R: ( (dsIProperties*)1862CEC8 )->Count( *0018EC28 = 0x00000004 ) = 0x00000000
    0x000019C0 21519 3  XPCOM C: ( (dsIProperties*)1862C328 )->getProperty( 0x00000002, 0018EC08 )
    0x000019C0 21519 3  XPCOM R: ( (dsIProperties*)1862C328 )->getProperty( 0x00000002, *0018EC08 = 185E9310 ) = 0x00000000
    0x000019C0 21519 3  XPCOM C: ( (dsIProperty*)185E9310 )->getPropertyType( 0018EB88 )
    0x000019C0 21519 3  XPCOM R: ( (dsIProperty*)185E9310 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21519 3  XPCOM C: ( (dsIProperty*)185E9310 )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21519 3  XPCOM R: ( (dsIProperty*)185E9310 )->queryInterface( 170B3A38, *0018EB88 = 185E937C ) = 0x00000000
    0x000019C0 21519 3  XPCOM C: ( (dsIGroup*)185E937C )->queryInterface( 170B3A38, 0018EB88 )
    0x000019C0 21519 3  XPCOM R: ( (dsIGroup*)185E937C )->queryInterface( 170B3A38, *0018EB88 = 185E937C ) = 0x00000000
    0x000019C0 21519 3  XPCOM C: ( (dsIGroup*)185E937C )->getChildren( 0018EBC8 )
    0x000019C0 21519 3  XPCOM R: ( (dsIGroup*)185E937C )->getChildren( *0018EBC8 = 1862CE98 ) = 0x00000000
    0x000019C0 21519 3  XPCOM C: ( (dsIProperties*)1862CE98 )->Count( 0018EBE8 )
    0x000019C0 21519 3  XPCOM R: ( (dsIProperties*)1862CE98 )->Count( *0018EBE8 = 0x00000004 ) = 0x00000000
    0x000019C0 21519 3  XPCOM C: ( (dsIProperties*)1862CE98 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 21519 3  XPCOM R: ( (dsIProperties*)1862CE98 )->getProperty( 0x00000000, *0018EBC8 = 122DD2A8 ) = 0x00000000
    0x000019C0 21519 3  XPCOM C: ( (dsIProperty*)122DD2A8 )->getPropertyType( 0018EB48 )
    0x000019C0 21519 3  XPCOM R: ( (dsIProperty*)122DD2A8 )->getPropertyType( *0018EB48 = 0x00000003 ) = 0x00000000
    0x000019C0 21519 3  XPCOM C: ( (dsIProperty*)122DD2A8 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21519 3  XPCOM R: ( (dsIProperty*)122DD2A8 )->queryInterface( 170B4158, *0018EB48 = 122DD34C ) = 0x00000000
    0x000019C0 21519 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21519 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 170B4158, *0018EB48 = 122DD314 ) = 0x00000000
    0x000019C0 21519 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21519 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 170B4158, *0018EB48 = 122DD34C ) = 0x00000000
    0x000019C0 21519 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->Name( 0018EBB8 )
    0x000019C0 21519 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->Name( *0018EBB8 =  ) = 0x00000000
    0x000019C0 21519 3  XPCOM C: ( (dsIProperties*)1862CE98 )->getProperty( 0x00000000, 0018EBC8 )
    0x000019C0 21519 3  XPCOM R: ( (dsIProperties*)1862CE98 )->getProperty( 0x00000000, *0018EBC8 = 122DD2A8 ) = 0x00000000
    0x000019C0 21519 3  XPCOM C: ( (dsIProperty*)122DD2A8 )->getPropertyType( 0018EB48 )
    0x000019C0 21519 3  XPCOM R: ( (dsIProperty*)122DD2A8 )->getPropertyType( *0018EB48 = 0x00000003 ) = 0x00000000
    0x000019C0 21519 3  XPCOM C: ( (dsIProperty*)122DD2A8 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21519 3  XPCOM R: ( (dsIProperty*)122DD2A8 )->queryInterface( 170B4158, *0018EB48 = 122DD34C ) = 0x00000000
    0x000019C0 21519 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21519 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 170B4158, *0018EB48 = 122DD314 ) = 0x00000000
    0x000019C0 21519 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21519 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 170B4158, *0018EB48 = 122DD34C ) = 0x00000000
    0x000019C0 21519 3  XPCOM C: ( (dsIProperties*)1862CE98 )->Count( 0018EBE8 )
    0x000019C0 21519 3  XPCOM R: ( (dsIProperties*)1862CE98 )->Count( *0018EBE8 = 0x00000004 ) = 0x00000000
    0x000019C0 21519 3  XPCOM C: ( (dsIProperties*)1862CE98 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 21519 3  XPCOM R: ( (dsIProperties*)1862CE98 )->getProperty( 0x00000001, *0018EBC8 = 12296D98 ) = 0x00000000
    0x000019C0 21519 3  XPCOM C: ( (dsIProperty*)12296D98 )->getPropertyType( 0018EB48 )
    0x000019C0 21519 3  XPCOM R: ( (dsIProperty*)12296D98 )->getPropertyType( *0018EB48 = 0x00000004 ) = 0x00000000
    0x000019C0 21520 3  XPCOM C: ( (dsIProperty*)12296D98 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21520 3  XPCOM R: ( (dsIProperty*)12296D98 )->queryInterface( 170B4158, *0018EB48 = 12296E04 ) = 0x00000000
    0x000019C0 21520 3  XPCOM C: ( (dsIStringProperty*)12296E04 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21520 3  XPCOM R: ( (dsIStringProperty*)12296E04 )->queryInterface( 170B4158, *0018EB48 = 12296E04 ) = 0x00000000
    0x000019C0 21520 3  XPCOM C: ( (dsIStringProperty*)12296E04 )->Name( 0018EBB8 )
    0x000019C0 21520 3  XPCOM R: ( (dsIStringProperty*)12296E04 )->Name( *0018EBB8 = Start Address: 0x ) = 0x00000000
    0x000019C0 21520 3  XPCOM C: ( (dsIProperties*)1862CE98 )->getProperty( 0x00000001, 0018EBC8 )
    0x000019C0 21520 3  XPCOM R: ( (dsIProperties*)1862CE98 )->getProperty( 0x00000001, *0018EBC8 = 12296D98 ) = 0x00000000
    0x000019C0 21520 3  XPCOM C: ( (dsIProperty*)12296D98 )->getPropertyType( 0018EB48 )
    0x000019C0 21520 3  XPCOM R: ( (dsIProperty*)12296D98 )->getPropertyType( *0018EB48 = 0x00000004 ) = 0x00000000
    0x000019C0 21520 3  XPCOM C: ( (dsIProperty*)12296D98 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21520 3  XPCOM R: ( (dsIProperty*)12296D98 )->queryInterface( 170B4158, *0018EB48 = 12296E04 ) = 0x00000000
    0x000019C0 21520 3  XPCOM C: ( (dsIStringProperty*)12296E04 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21520 3  XPCOM R: ( (dsIStringProperty*)12296E04 )->queryInterface( 170B4158, *0018EB48 = 12296E04 ) = 0x00000000
    0x000019C0 21520 3  XPCOM C: ( (dsIProperties*)1862CE98 )->Count( 0018EBE8 )
    0x000019C0 21520 3  XPCOM R: ( (dsIProperties*)1862CE98 )->Count( *0018EBE8 = 0x00000004 ) = 0x00000000
    0x000019C0 21520 3  XPCOM C: ( (dsIProperties*)1862CE98 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 21520 3  XPCOM R: ( (dsIProperties*)1862CE98 )->getProperty( 0x00000002, *0018EBC8 = 12296FA8 ) = 0x00000000
    0x000019C0 21520 3  XPCOM C: ( (dsIProperty*)12296FA8 )->getPropertyType( 0018EB48 )
    0x000019C0 21520 3  XPCOM R: ( (dsIProperty*)12296FA8 )->getPropertyType( *0018EB48 = 0x00000004 ) = 0x00000000
    0x000019C0 21520 3  XPCOM C: ( (dsIProperty*)12296FA8 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21520 3  XPCOM R: ( (dsIProperty*)12296FA8 )->queryInterface( 170B4158, *0018EB48 = 12297014 ) = 0x00000000
    0x000019C0 21520 3  XPCOM C: ( (dsIStringProperty*)12297014 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21520 3  XPCOM R: ( (dsIStringProperty*)12297014 )->queryInterface( 170B4158, *0018EB48 = 12297014 ) = 0x00000000
    0x000019C0 21520 3  XPCOM C: ( (dsIStringProperty*)12297014 )->Name( 0018EBB8 )
    0x000019C0 21520 3  XPCOM R: ( (dsIStringProperty*)12297014 )->Name( *0018EBB8 = End Address: 0x ) = 0x00000000
    0x000019C0 21520 3  XPCOM C: ( (dsIProperties*)1862CE98 )->getProperty( 0x00000002, 0018EBC8 )
    0x000019C0 21520 3  XPCOM R: ( (dsIProperties*)1862CE98 )->getProperty( 0x00000002, *0018EBC8 = 12296FA8 ) = 0x00000000
    0x000019C0 21520 3  XPCOM C: ( (dsIProperty*)12296FA8 )->getPropertyType( 0018EB48 )
    0x000019C0 21520 3  XPCOM R: ( (dsIProperty*)12296FA8 )->getPropertyType( *0018EB48 = 0x00000004 ) = 0x00000000
    0x000019C0 21520 3  XPCOM C: ( (dsIProperty*)12296FA8 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21520 3  XPCOM R: ( (dsIProperty*)12296FA8 )->queryInterface( 170B4158, *0018EB48 = 12297014 ) = 0x00000000
    0x000019C0 21520 3  XPCOM C: ( (dsIStringProperty*)12297014 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21520 3  XPCOM R: ( (dsIStringProperty*)12297014 )->queryInterface( 170B4158, *0018EB48 = 12297014 ) = 0x00000000
    0x000019C0 21521 3  XPCOM C: ( (dsIProperties*)1862CE98 )->Count( 0018EBE8 )
    0x000019C0 21521 3  XPCOM R: ( (dsIProperties*)1862CE98 )->Count( *0018EBE8 = 0x00000004 ) = 0x00000000
    0x000019C0 21521 3  XPCOM C: ( (dsIProperties*)1862CE98 )->getProperty( 0x00000003, 0018EBC8 )
    0x000019C0 21521 3  XPCOM R: ( (dsIProperties*)1862CE98 )->getProperty( 0x00000003, *0018EBC8 = 17004988 ) = 0x00000000
    0x000019C0 21521 3  XPCOM C: ( (dsIProperty*)17004988 )->getPropertyType( 0018EB48 )
    0x000019C0 21521 3  XPCOM R: ( (dsIProperty*)17004988 )->getPropertyType( *0018EB48 = 0x00000008 ) = 0x00000000
    0x000019C0 21521 3  XPCOM C: ( (dsIProperty*)17004988 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21521 3  XPCOM R: ( (dsIProperty*)17004988 )->queryInterface( 170B4158, *0018EB48 = 170049F4 ) = 0x00000000
    0x000019C0 21521 3  XPCOM C: ( (dsIButton*)170049F4 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21521 3  XPCOM R: ( (dsIButton*)170049F4 )->queryInterface( 170B4158, *0018EB48 = 170049F4 ) = 0x00000000
    0x000019C0 21521 3  XPCOM C: ( (dsIButton*)170049F4 )->Name( 0018EBB8 )
    0x000019C0 21521 3  XPCOM R: ( (dsIButton*)170049F4 )->Name( *0018EBB8 = Erase Flash ) = 0x00000000
    0x000019C0 21521 3  XPCOM C: ( (dsIProperties*)1862CE98 )->getProperty( 0x00000003, 0018EBC8 )
    0x000019C0 21521 3  XPCOM R: ( (dsIProperties*)1862CE98 )->getProperty( 0x00000003, *0018EBC8 = 17004988 ) = 0x00000000
    0x000019C0 21521 3  XPCOM C: ( (dsIProperty*)17004988 )->getPropertyType( 0018EB48 )
    0x000019C0 21521 3  XPCOM R: ( (dsIProperty*)17004988 )->getPropertyType( *0018EB48 = 0x00000008 ) = 0x00000000
    0x000019C0 21521 3  XPCOM C: ( (dsIProperty*)17004988 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21521 3  XPCOM R: ( (dsIProperty*)17004988 )->queryInterface( 170B4158, *0018EB48 = 170049F4 ) = 0x00000000
    0x000019C0 21521 3  XPCOM C: ( (dsIButton*)170049F4 )->queryInterface( 170B4158, 0018EB48 )
    0x000019C0 21521 3  XPCOM R: ( (dsIButton*)170049F4 )->queryInterface( 170B4158, *0018EB48 = 170049F4 ) = 0x00000000
    0x000019C0 21521 3  XPCOM C: ( (dsIProperties*)1862CE98 )->Count( 0018EBE8 )
    0x000019C0 21521 3  XPCOM R: ( (dsIProperties*)1862CE98 )->Count( *0018EBE8 = 0x00000004 ) = 0x00000000
    0x000019C0 21521 3  XPCOM C: ( (dsIProperties*)1862C328 )->Count( 0018EC28 )
    0x000019C0 21521 3  XPCOM R: ( (dsIProperties*)1862C328 )->Count( *0018EC28 = 0x00000009 ) = 0x00000000
    0x000019C0 21521 3  XPCOM C: ( (dsIProperties*)1862C328 )->getProperty( 0x00000003, 0018EC08 )
    0x000019C0 21521 3  XPCOM R: ( (dsIProperties*)1862C328 )->getProperty( 0x00000003, *0018EC08 = 185E9398 ) = 0x00000000
    0x000019C0 21521 3  XPCOM C: ( (dsIProperty*)185E9398 )->getPropertyType( 0018EB88 )
    0x000019C0 21521 3  XPCOM R: ( (dsIProperty*)185E9398 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21521 3  XPCOM C: ( (dsIProperty*)185E9398 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21521 3  XPCOM R: ( (dsIProperty*)185E9398 )->queryInterface( 170B4158, *0018EB88 = 185E9404 ) = 0x00000000
    0x000019C0 21521 3  XPCOM C: ( (dsIGroup*)185E9404 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21521 3  XPCOM R: ( (dsIGroup*)185E9404 )->queryInterface( 170B4158, *0018EB88 = 185E9404 ) = 0x00000000
    0x000019C0 21521 3  XPCOM C: ( (dsIGroup*)185E9404 )->Name( 0018EBF8 )
    0x000019C0 21521 3  XPCOM R: ( (dsIGroup*)185E9404 )->Name( *0018EBF8 = Blank Check ) = 0x00000000
    0x000019C0 21521 3  XPCOM C: ( (dsIProperties*)1862C328 )->getProperty( 0x00000003, 0018EC08 )
    0x000019C0 21521 3  XPCOM R: ( (dsIProperties*)1862C328 )->getProperty( 0x00000003, *0018EC08 = 185E9398 ) = 0x00000000
    0x000019C0 21521 3  XPCOM C: ( (dsIProperty*)185E9398 )->getPropertyType( 0018EB88 )
    0x000019C0 21521 3  XPCOM R: ( (dsIProperty*)185E9398 )->getPropertyType( *0018EB88 = 0x00000006 ) = 0x00000000
    0x000019C0 21521 3  XPCOM C: ( (dsIProperty*)185E9398 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21521 3  XPCOM R: ( (dsIProperty*)185E9398 )->queryInterface( 170B4158, *0018EB88 = 185E9404 ) = 0x00000000
    0x000019C0 21521 3  XPCOM C: ( (dsIGroup*)185E9404 )->queryInterface( 170B4158, 0018EB88 )
    0x000019C0 21521 3  XPCOM R: ( (dsIGroup*)185E9404 )->queryInterface( 170B4158, *0018EB88 = 185E9404 ) = 0x00000000
    0x000019C0 21522 3  XPCOM C: ( (dsIGroup*)185E9404 )->getChildren( 0018EC58 )
    0x000019C0 21522 3  XPCOM R: ( (dsIGroup*)185E9404 )->getChildren( *0018EC58 = 1862CE68 ) = 0x00000000
    0x000019C0 21522 3  XPCOM C: ( (dsIProperties*)1862CE68 )->Count( 0018ECB8 )
    0x000019C0 21522 3  XPCOM R: ( (dsIProperties*)1862CE68 )->Count( *0018ECB8 = 0x00000004 ) = 0x00000000
    0x000019C0 21522 3  XPCOM C: ( (dsIGroup*)185E9404 )->getChildren( 0018EC78 )
    0x000019C0 21522 3  XPCOM R: ( (dsIGroup*)185E9404 )->getChildren( *0018EC78 = 1862CE38 ) = 0x00000000
    0x000019C0 21522 3  XPCOM C: ( (dsIProperties*)1862CE38 )->Count( 0018EBD8 )
    0x000019C0 21522 3  XPCOM R: ( (dsIProperties*)1862CE38 )->Count( *0018EBD8 = 0x00000004 ) = 0x00000000
    0x000019C0 21522 3  XPCOM C: ( (dsIProperties*)1862CE38 )->getProperty( 0x00000000, 0018EBB8 )
    0x000019C0 21522 3  XPCOM R: ( (dsIProperties*)1862CE38 )->getProperty( 0x00000000, *0018EBB8 = 122DE028 ) = 0x00000000
    0x000019C0 21522 3  XPCOM C: ( (dsIProperty*)122DE028 )->getPropertyType( 0018EB38 )
    0x000019C0 21522 3  XPCOM R: ( (dsIProperty*)122DE028 )->getPropertyType( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 21522 3  XPCOM C: ( (dsIProperty*)122DE028 )->queryInterface( 170B4158, 0018EB38 )
    0x000019C0 21522 3  XPCOM R: ( (dsIProperty*)122DE028 )->queryInterface( 170B4158, *0018EB38 = 122DE0CC ) = 0x00000000
    0x000019C0 21522 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->queryInterface( 170B4158, 0018EB38 )
    0x000019C0 21522 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->queryInterface( 170B4158, *0018EB38 = 122DE094 ) = 0x00000000
    0x000019C0 21522 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->queryInterface( 170B4158, 0018EB38 )
    0x000019C0 21522 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->queryInterface( 170B4158, *0018EB38 = 122DE0CC ) = 0x00000000
    0x000019C0 21527 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->Name( 0018EB48 )
    0x000019C0 21527 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->Name( *0018EB48 =  ) = 0x00000000
    0x000019C0 21528 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->NumAllowedValues( 0018EB48 )
    0x000019C0 21528 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->NumAllowedValues( *0018EB48 = 0x00000002 ) = 0x00000000
    0x000019C0 21528 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->NumAllowedValues( 0018EB48 )
    0x000019C0 21528 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->NumAllowedValues( *0018EB48 = 0x00000002 ) = 0x00000000
    0x000019C0 21528 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->getAllowedValue( 0x00000000, 0018EB48 )
    0x000019C0 21528 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->getAllowedValue( 0x00000000, *0018EB48 = Entire Flash ) = 0x00000000
    0x000019C0 21529 3  XPCOM C: ( (dsIStringProperty*)122DE094 )->CurValue( 0018EB38 )
    0x000019C0 21529 3  XPCOM R: ( (dsIStringProperty*)122DE094 )->CurValue( *0018EB38 = Entire Flash ) = 0x00000000
    0x000019C0 21529 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->Iden( 0018EB38 )
    0x000019C0 21529 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->Iden( *0018EB38 = FlashBlankCheckSelection ) = 0x00000000
    0x000019C0 21529 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->DisableStatus( 0018EB48 )
    0x000019C0 21529 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->DisableStatus( *0018EB48 = false ) = 0x00000000
    0x000019C0 21529 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->NumAllowedValues( 0018EB48 )
    0x000019C0 21529 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->NumAllowedValues( *0018EB48 = 0x00000002 ) = 0x00000000
    0x000019C0 21529 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->getAllowedValue( 0x00000001, 0018EB48 )
    0x000019C0 21529 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->getAllowedValue( 0x00000001, *0018EB48 = By Address Range ) = 0x00000000
    0x000019C0 21530 3  XPCOM C: ( (dsIStringProperty*)122DE094 )->CurValue( 0018EB38 )
    0x000019C0 21530 3  XPCOM R: ( (dsIStringProperty*)122DE094 )->CurValue( *0018EB38 = Entire Flash ) = 0x00000000
    0x000019C0 21530 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->Iden( 0018EB38 )
    0x000019C0 21530 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->Iden( *0018EB38 = FlashBlankCheckSelection ) = 0x00000000
    0x000019C0 21530 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->DisableStatus( 0018EB48 )
    0x000019C0 21530 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->DisableStatus( *0018EB48 = false ) = 0x00000000
    0x000019C0 21530 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->NumAllowedValues( 0018EB48 )
    0x000019C0 21530 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->NumAllowedValues( *0018EB48 = 0x00000002 ) = 0x00000000
    0x000019C0 21530 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->Iden( 0018EB38 )
    0x000019C0 21530 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->Iden( *0018EB38 = FlashBlankCheckSelection ) = 0x00000000
    0x000019C0 21530 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->DisableStatus( 0018EB48 )
    0x000019C0 21530 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->DisableStatus( *0018EB48 = false ) = 0x00000000
    0x000019C0 21530 3  XPCOM C: ( (dsIProperties*)1862CE38 )->Count( 0018EBD8 )
    0x000019C0 21530 3  XPCOM R: ( (dsIProperties*)1862CE38 )->Count( *0018EBD8 = 0x00000004 ) = 0x00000000
    0x000019C0 21530 3  XPCOM C: ( (dsIProperties*)1862CE38 )->getProperty( 0x00000001, 0018EBB8 )
    0x000019C0 21530 3  XPCOM R: ( (dsIProperties*)1862CE38 )->getProperty( 0x00000001, *0018EBB8 = 122963F8 ) = 0x00000000
    0x000019C0 21530 3  XPCOM C: ( (dsIProperty*)122963F8 )->getPropertyType( 0018EB38 )
    0x000019C0 21530 3  XPCOM R: ( (dsIProperty*)122963F8 )->getPropertyType( *0018EB38 = 0x00000004 ) = 0x00000000
    0x000019C0 21530 3  XPCOM C: ( (dsIProperty*)122963F8 )->queryInterface( 170B4158, 0018EB38 )
    0x000019C0 21530 3  XPCOM R: ( (dsIProperty*)122963F8 )->queryInterface( 170B4158, *0018EB38 = 12296464 ) = 0x00000000
    0x000019C0 21530 3  XPCOM C: ( (dsIStringProperty*)12296464 )->queryInterface( 170B4158, 0018EB38 )
    0x000019C0 21530 3  XPCOM R: ( (dsIStringProperty*)12296464 )->queryInterface( 170B4158, *0018EB38 = 12296464 ) = 0x00000000
    0x000019C0 21530 3  XPCOM C: ( (dsIStringProperty*)12296464 )->getParent( 0018EA98 )
    0x000019C0 21530 3  XPCOM R: ( (dsIStringProperty*)12296464 )->getParent( *0018EA98 = 185E9398 ) = 0x00000000
    0x000019C0 21530 3  XPCOM C: ( (dsIProperty*)185E9398 )->getPropertyType( 0018E9F8 )
    0x000019C0 21530 3  XPCOM R: ( (dsIProperty*)185E9398 )->getPropertyType( *0018E9F8 = 0x00000006 ) = 0x00000000
    0x000019C0 21530 3  XPCOM C: ( (dsIProperty*)185E9398 )->queryInterface( 170B4158, 0018E9F8 )
    0x000019C0 21530 3  XPCOM R: ( (dsIProperty*)185E9398 )->queryInterface( 170B4158, *0018E9F8 = 185E9404 ) = 0x00000000
    0x000019C0 21530 3  XPCOM C: ( (dsIGroup*)185E9404 )->queryInterface( 170B4158, 0018E9F8 )
    0x000019C0 21530 3  XPCOM R: ( (dsIGroup*)185E9404 )->queryInterface( 170B4158, *0018E9F8 = 185E9404 ) = 0x00000000
    0x000019C0 21531 3  XPCOM C: ( (dsIGroup*)185E9404 )->Iden( 0018EA98 )
    0x000019C0 21531 3  XPCOM R: ( (dsIGroup*)185E9404 )->Iden( *0018EA98 = FlashBlankCheckGroup ) = 0x00000000
    0x000019C0 21531 3  XPCOM C: ( (dsIStringProperty*)12296464 )->Name( 0018EAE8 )
    0x000019C0 21531 3  XPCOM R: ( (dsIStringProperty*)12296464 )->Name( *0018EAE8 = Start Address: 0x ) = 0x00000000
    0x000019C0 21531 3  XPCOM C: ( (dsIStringProperty*)12296464 )->CurValue( 0018EAF8 )
    0x000019C0 21531 3  XPCOM R: ( (dsIStringProperty*)12296464 )->CurValue( *0018EAF8 = 0 ) = 0x00000000
    0x000019C0 21531 3  XPCOM C: ( (dsIStringProperty*)12296464 )->ReadOnly( 0018EAF8 )
    0x000019C0 21531 3  XPCOM R: ( (dsIStringProperty*)12296464 )->ReadOnly( *0018EAF8 = false ) = 0x00000000
    0x000019C0 21532 3  XPCOM C: ( (dsIStringProperty*)12296464 )->DisableStatus( 0018EAE8 )
    0x000019C0 21532 3  XPCOM R: ( (dsIStringProperty*)12296464 )->DisableStatus( *0018EAE8 = true ) = 0x00000000
    0x000019C0 21532 3  XPCOM C: ( (dsIStringProperty*)12296464 )->Iden( 0018EAE8 )
    0x000019C0 21532 3  XPCOM R: ( (dsIStringProperty*)12296464 )->Iden( *0018EAE8 = FlashBlankCheckStartAddr ) = 0x00000000
    0x000019C0 21532 3  XPCOM C: ( (dsIProperties*)1862CE38 )->Count( 0018EBD8 )
    0x000019C0 21532 3  XPCOM R: ( (dsIProperties*)1862CE38 )->Count( *0018EBD8 = 0x00000004 ) = 0x00000000
    0x000019C0 21532 3  XPCOM C: ( (dsIProperties*)1862CE38 )->getProperty( 0x00000002, 0018EBB8 )
    0x000019C0 21532 3  XPCOM R: ( (dsIProperties*)1862CE38 )->getProperty( 0x00000002, *0018EBB8 = 185EB058 ) = 0x00000000
    0x000019C0 21532 3  XPCOM C: ( (dsIProperty*)185EB058 )->getPropertyType( 0018EB38 )
    0x000019C0 21532 3  XPCOM R: ( (dsIProperty*)185EB058 )->getPropertyType( *0018EB38 = 0x00000004 ) = 0x00000000
    0x000019C0 21532 3  XPCOM C: ( (dsIProperty*)185EB058 )->queryInterface( 170B4158, 0018EB38 )
    0x000019C0 21533 3  XPCOM R: ( (dsIProperty*)185EB058 )->queryInterface( 170B4158, *0018EB38 = 185EB0C4 ) = 0x00000000
    0x000019C0 21533 3  XPCOM C: ( (dsIStringProperty*)185EB0C4 )->queryInterface( 170B4158, 0018EB38 )
    0x000019C0 21533 3  XPCOM R: ( (dsIStringProperty*)185EB0C4 )->queryInterface( 170B4158, *0018EB38 = 185EB0C4 ) = 0x00000000
    0x000019C0 21533 3  XPCOM C: ( (dsIStringProperty*)185EB0C4 )->getParent( 0018EA98 )
    0x000019C0 21533 3  XPCOM R: ( (dsIStringProperty*)185EB0C4 )->getParent( *0018EA98 = 185E9398 ) = 0x00000000
    0x000019C0 21533 3  XPCOM C: ( (dsIProperty*)185E9398 )->getPropertyType( 0018E9F8 )
    0x000019C0 21533 3  XPCOM R: ( (dsIProperty*)185E9398 )->getPropertyType( *0018E9F8 = 0x00000006 ) = 0x00000000
    0x000019C0 21533 3  XPCOM C: ( (dsIProperty*)185E9398 )->queryInterface( 170B4158, 0018E9F8 )
    0x000019C0 21533 3  XPCOM R: ( (dsIProperty*)185E9398 )->queryInterface( 170B4158, *0018E9F8 = 185E9404 ) = 0x00000000
    0x000019C0 21533 3  XPCOM C: ( (dsIGroup*)185E9404 )->queryInterface( 170B4158, 0018E9F8 )
    0x000019C0 21533 3  XPCOM R: ( (dsIGroup*)185E9404 )->queryInterface( 170B4158, *0018E9F8 = 185E9404 ) = 0x00000000
    0x000019C0 21533 3  XPCOM C: ( (dsIGroup*)185E9404 )->Iden( 0018EA98 )
    0x000019C0 21533 3  XPCOM R: ( (dsIGroup*)185E9404 )->Iden( *0018EA98 = FlashBlankCheckGroup ) = 0x00000000
    0x000019C0 21533 3  XPCOM C: ( (dsIStringProperty*)185EB0C4 )->Name( 0018EAE8 )
    0x000019C0 21534 3  XPCOM R: ( (dsIStringProperty*)185EB0C4 )->Name( *0018EAE8 = End Address: 0x ) = 0x00000000
    0x000019C0 21534 3  XPCOM C: ( (dsIStringProperty*)185EB0C4 )->CurValue( 0018EAF8 )
    0x000019C0 21534 3  XPCOM R: ( (dsIStringProperty*)185EB0C4 )->CurValue( *0018EAF8 = 0 ) = 0x00000000
    0x000019C0 21534 3  XPCOM C: ( (dsIStringProperty*)185EB0C4 )->ReadOnly( 0018EAF8 )
    0x000019C0 21534 3  XPCOM R: ( (dsIStringProperty*)185EB0C4 )->ReadOnly( *0018EAF8 = false ) = 0x00000000
    0x000019C0 21535 3  XPCOM C: ( (dsIStringProperty*)185EB0C4 )->DisableStatus( 0018EAE8 )
    0x000019C0 21535 3  XPCOM R: ( (dsIStringProperty*)185EB0C4 )->DisableStatus( *0018EAE8 = true ) = 0x00000000
    0x000019C0 21535 3  XPCOM C: ( (dsIStringProperty*)185EB0C4 )->Iden( 0018EAE8 )
    0x000019C0 21535 3  XPCOM R: ( (dsIStringProperty*)185EB0C4 )->Iden( *0018EAE8 = FlashBlankCheckEndAddr ) = 0x00000000
    0x000019C0 21535 3  XPCOM C: ( (dsIProperties*)1862CE38 )->Count( 0018EBD8 )
    0x000019C0 21535 3  XPCOM R: ( (dsIProperties*)1862CE38 )->Count( *0018EBD8 = 0x00000004 ) = 0x00000000
    0x000019C0 21535 3  XPCOM C: ( (dsIProperties*)1862CE38 )->getProperty( 0x00000003, 0018EBB8 )
    0x000019C0 21535 3  XPCOM R: ( (dsIProperties*)1862CE38 )->getProperty( 0x00000003, *0018EBB8 = 17004A18 ) = 0x00000000
    0x000019C0 21535 3  XPCOM C: ( (dsIProperty*)17004A18 )->getPropertyType( 0018EB38 )
    0x000019C0 21535 3  XPCOM R: ( (dsIProperty*)17004A18 )->getPropertyType( *0018EB38 = 0x00000008 ) = 0x00000000
    0x000019C0 21535 3  XPCOM C: ( (dsIProperty*)17004A18 )->queryInterface( 170B4158, 0018EB38 )
    0x000019C0 21535 3  XPCOM R: ( (dsIProperty*)17004A18 )->queryInterface( 170B4158, *0018EB38 = 17004A84 ) = 0x00000000
    0x000019C0 21535 3  XPCOM C: ( (dsIButton*)17004A84 )->queryInterface( 170B4158, 0018EB38 )
    0x000019C0 21535 3  XPCOM R: ( (dsIButton*)17004A84 )->queryInterface( 170B4158, *0018EB38 = 17004A84 ) = 0x00000000
    0x000019C0 21535 3  XPCOM C: ( (dsIButton*)17004A84 )->getParent( 0018EAE8 )
    0x000019C0 21535 3  XPCOM R: ( (dsIButton*)17004A84 )->getParent( *0018EAE8 = 185E9398 ) = 0x00000000
    0x000019C0 21535 3  XPCOM C: ( (dsIProperty*)185E9398 )->getPropertyType( 0018EA58 )
    0x000019C0 21535 3  XPCOM R: ( (dsIProperty*)185E9398 )->getPropertyType( *0018EA58 = 0x00000006 ) = 0x00000000
    0x000019C0 21535 3  XPCOM C: ( (dsIProperty*)185E9398 )->queryInterface( 170B4158, 0018EA58 )
    0x000019C0 21535 3  XPCOM R: ( (dsIProperty*)185E9398 )->queryInterface( 170B4158, *0018EA58 = 185E9404 ) = 0x00000000
    0x000019C0 21535 3  XPCOM C: ( (dsIGroup*)185E9404 )->queryInterface( 170B4158, 0018EA58 )
    0x000019C0 21535 3  XPCOM R: ( (dsIGroup*)185E9404 )->queryInterface( 170B4158, *0018EA58 = 185E9404 ) = 0x00000000
    0x000019C0 21535 3  XPCOM C: ( (dsIGroup*)185E9404 )->Iden( 0018EAE8 )
    0x000019C0 21535 3  XPCOM R: ( (dsIGroup*)185E9404 )->Iden( *0018EAE8 = FlashBlankCheckGroup ) = 0x00000000
    0x000019C0 21536 3  XPCOM C: ( (dsIButton*)17004A84 )->Name( 0018EB48 )
    0x000019C0 21536 3  XPCOM R: ( (dsIButton*)17004A84 )->Name( *0018EB48 = Blank Check ) = 0x00000000
    0x000019C0 21536 3  XPCOM C: ( (dsIButton*)17004A84 )->Iden( 0018EB38 )
    0x000019C0 21536 3  XPCOM R: ( (dsIButton*)17004A84 )->Iden( *0018EB38 = FlashBlankCheckButton ) = 0x00000000
    0x000019C0 21536 3  XPCOM C: ( (dsIButton*)17004A84 )->DisableStatus( 0018EB48 )
    0x000019C0 21536 3  XPCOM R: ( (dsIButton*)17004A84 )->DisableStatus( *0018EB48 = false ) = 0x00000000
    0x000019C0 21536 3  XPCOM C: ( (dsIProperties*)1862CE38 )->Count( 0018EBD8 )
    0x000019C0 21536 3  XPCOM R: ( (dsIProperties*)1862CE38 )->Count( *0018EBD8 = 0x00000004 ) = 0x00000000
    0x000019C0 21536 3  XPCOM C: ( (dsIStringEvent*)16EE8B58 )->addListener( 170B4158 )
    0x000019C0 21536 3  XPCOM R: ( (dsIStringEvent*)16EE8B58 )->addListener( 170B4158 ) = 0x00000000
    0x000019C0 21536 3  XPCOM C: ( (dsIStringEvent*)16EE8BD8 )->addListener( 125E6128 )
    0x000019C0 21537 3  XPCOM R: ( (dsIStringEvent*)16EE8BD8 )->addListener( 125E6128 ) = 0x00000000
    0x00002BA8 21973 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 21973 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 21973 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 21973 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 21973 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1166 ms
    0x00002BA8 21973 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 21973 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 21973 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1166 ms
    0x00002BA8 22473 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 22473 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 22473 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 22473 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 22473 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 666 ms
    0x00002BA8 22473 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 22473 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 22473 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 666 ms
    0x000019C0 22491 3  XPCOM C: ( (dsIDebugProperties*)125D0AF0 )->getProperty( FlashBlankCheckButton, 0018EEA8 )
    0x000019C0 22491 3  XPCOM R: ( (dsIDebugProperties*)125D0AF0 )->getProperty( FlashBlankCheckButton, *0018EEA8 = 17004A18 ) = 0x00000000
    0x000019C0 22491 3  XPCOM C: ( (dsIProperty*)17004A18 )->getPropertyType( 0018EDF8 )
    0x000019C0 22491 3  XPCOM R: ( (dsIProperty*)17004A18 )->getPropertyType( *0018EDF8 = 0x00000008 ) = 0x00000000
    0x000019C0 22492 3  XPCOM C: ( (dsIProperty*)17004A18 )->queryInterface( 125E55D0, 0018EDF8 )
    0x000019C0 22492 3  XPCOM R: ( (dsIProperty*)17004A18 )->queryInterface( 125E55D0, *0018EDF8 = 17004A84 ) = 0x00000000
    0x000019C0 22492 3  XPCOM C: ( (dsIButton*)17004A84 )->queryInterface( 125E55D0, 0018EDF8 )
    0x000019C0 22492 3  XPCOM R: ( (dsIButton*)17004A84 )->queryInterface( 125E55D0, *0018EDF8 = 17004A84 ) = 0x00000000
    0x000019C0 22492 3  XPCOM C: ( (dsIButton*)17004A84 )->Action( 0018EF08 )
    0x000019C0 22492 3  XPCOM R: ( (dsIButton*)17004A84 )->Action( *0018EF08 = DPActiveDebugSession.flash.performOperation("BlankCheck") ) = 0x00000000
    0x000019C0 22492 3  XPCOM C: ( (dsIProcessorInfo*)0050F498 )->Partnum( 0018ED68 )
    0x000019C0 22492 3  XPCOM R: ( (dsIProcessorInfo*)0050F498 )->Partnum( *0018ED68 = TM4C123GE6PM ) = 0x00000000
    0x000019C0 22492 3  XPCOM C: ( (dsIConnectDisconnect*)125EB74C )->connectionStatus( 0018ECA8 )
    0x000019C0 22492 3  XPCOM R: ( (dsIConnectDisconnect*)125EB74C )->connectionStatus( *0018ECA8 = 0x00000002 ) = 0x00000000
    0x000014C4 22507 3  XPCOM C: ( (dsIConnectDisconnect*)125EB74C )->connect()
    0x000014C4 22508 3 CS_DAP_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x000014C4 22508 3 CS_DAP_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x000014C4 22508 3  XPCOM R: ( (dsIConnectDisconnect*)125EB74C )->connect() = 0x00000000
    0x00002BA8 22508 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 22508 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 22508 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 22508 4 CS_DAP_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x00002BA8 22508 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 22508 4  POLL I: Yielding to other threads
    0x00002BA8 22508 3 CS_DAP_0 POLL C: Polling with state CPU_ST_CONNECT and status EVENT_DSP_HALT
    0x00002BA8 22508 3 CS_DAP_0 GTI C: GTI_CONNECT2( 0x127D48F0 )
    0x00002BA8 25061 3 CS_DAP_0 GTI R: GTI_CONNECT2( 0x127D48F0 ) = 0x00000000
    0x00002BA8 25061 3 CS_DAP_0 GTI C: GTI_GETERRSTR_EX3( 0x127D48F0, *0x0FB6EC90 = 0x00000000, *0x0FB6EC70 = 0x00000000, *0x0FB6EC8C = 0x00000000, *0x0FB6EC68 = 0x00000000, *0x0FB6EC88 = 0x00000000, *0x0FB6EC84 = 0x00000000, *0x0FB6EC7C = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x00002BA8 25061 3 CS_DAP_0 GTI R: GTI_GETERRSTR_EX3( 0x127D48F0, *0x0FB6EC90 = 0x00000000, *0x0FB6EC70 = 0x00000000, *0x0FB6EC8C = 0x00000000, *0x0FB6EC68 = 0x00000002, *0x0FB6EC88 = 0x00000000, *0x0FB6EC84 = 0x00000008, *0x0FB6EC7C = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x00002BA8 25061 3 CS_DAP_0 STATE I: Connection state changed to 4
    0x00002BA8 25061 3 CS_DAP_0 GTI C: GTI_STAT( 0x127D48F0 )
    0x00002BA8 25061 3 CS_DAP_0 GTI R: GTI_STAT( 0x127D48F0 ) = 0x0000000D
    0x00002BA8 25061 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_CHANGE
    0x00002BA8 25061 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x00002BA8 25061 3 CS_DAP_0 STATE I: Connection state changed to 0
    0x00002BA8 25061 3 CS_DAP_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eConnected )
    0x00002BA8 25061 3 CS_DAP_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eConnected )
    0x00002BA8 25062 3 CORTEX_M4_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 25062 3 CORTEX_M4_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 25062 3  COM_DBG_IF C: class DSP_CO_USER::OnConnected()
    0x00002BA8 25062 3  XPCOM C: ( (dsISimpleEventCallback*)122406C8 )->onEvent()
    0x00002BA8 25062 3  XPCOM C: ( (dsIRefreshControl*)125EB97C )->beginRefresh( 0FB6E1E8 )
    0x00002BA8 25062 3  XPCOM R: ( (dsIRefreshControl*)125EB97C )->beginRefresh( *0FB6E1E8 = 0x00000000 ) = 0x00000000
    0x00002BA8 25062 3  XPCOM R: ( (dsISimpleEventCallback*)122406C8 )->onEvent() = 0x00000000
    0x00002BA8 25062 3  COM_DBG_IF R: class DSP_CO_USER::OnConnected()
    0x00000490 25062 3  XPCOM C: ( (dsIRtdxCapable*)0050F664 )->IsRtdxCapable( 17AEF738 )
    0x00002BA8 25062 3  COM_DBG_IF C: class DSP_CO_USER::OnRefresh()
    0x00002BA8 25062 3  XPCOM C: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000003 )
    0x00002BA8 25062 3  XPCOM R: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000003 ) = 0x00000000
    0x00002BA8 25062 3  COM_DBG_IF R: class DSP_CO_USER::OnRefresh()
    0x00002BA8 25062 3  COM_DBG_IF C: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x00002BA8 25062 3  XPCOM C: ( (dsISimpleEventCallback*)12240CC8 )->onEvent()
    0x00002BA8 25062 3  XPCOM R: ( (dsISimpleEventCallback*)12240CC8 )->onEvent() = 0x00000000
    0x00002BA8 25062 3  COM_DBG_IF R: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x00002BA8 25062 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 25062 3 CS_DAP_0 POLL R: Poll() returning
    0x00000490 25062 3  XPCOM R: ( (dsIRtdxCapable*)0050F664 )->IsRtdxCapable( *17AEF738 = false ) = 0x00000000
    0x00002BA8 25062 3 CORTEX_M4_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 25062 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 25062 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 25062 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 25062 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 25062 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x00002BA8 25062 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 25062 4  POLL I: Yielding to other threads
    0x00002BA8 25062 3 CORTEX_M4_0 POLL C: Polling with state CPU_ST_CONNECT and status EVENT_DSP_HALT
    0x00002BA8 25062 3 CORTEX_M4_0 GTI C: GTI_CONNECT2( 0x101C1208 )
    0x00002BA8 25136 3 CORTEX_M4_0 GTI R: GTI_CONNECT2( 0x101C1208 ) = 0x00000000
    0x00002BA8 25136 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6EC90 = 0x00000000, *0x0FB6EC70 = 0x00000000, *0x0FB6EC8C = 0x00000000, *0x0FB6EC68 = 0x00000000, *0x0FB6EC88 = 0x00000000, *0x0FB6EC84 = 0x00000000, *0x0FB6EC7C = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x00002BA8 25136 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6EC90 = 0x00000000, *0x0FB6EC70 = 0x00000000, *0x0FB6EC8C = 0x00000000, *0x0FB6EC68 = 0x00000002, *0x0FB6EC88 = 0x00000000, *0x0FB6EC84 = 0x00000008, *0x0FB6EC7C = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x00002BA8 25136 3 CORTEX_M4_0 STATE I: Connection state changed to 4
    0x00002BA8 25136 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x101C1208, *0x0FB6F174 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x00002BA8 25137 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x101C1208, *0x0FB6F174 = { 4, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x00002BA8 25137 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_HALTED
    0x00002BA8 25138 3  CT C: JobMgrIFDS::DSPHaltedRefresh( 1, -1, 00000000 )
    0x00002BA8 25138 3  CT R: JobMgrIFDS::DSPHaltedRefresh( 1, -1, 00000000 )
    0x00002BA8 25138 3 CORTEX_M4_0 CT C: SyncMode::OnHalt()
    0x00002BA8 25138 3 CORTEX_M4_0 CT R: SyncMode::OnHalt() = (null)
    0x00002BA8 25138 3 CORTEX_M4_0 STATE I: Connection state changed to 0
    0x00002BA8 25138 3 CORTEX_M4_0 GEL I: Evaluating "OnTargetConnect()"
    0x00002BA8 25138 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class `anonymous namespace'::NullRequestNotification
    0x00002BA8 25138 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 25138 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 25138 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 25138 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 25138 4  POLL I: Yielding to other threads
    0x00002BA8 25138 3 CORTEX_M4_0 POLL C: Polling with state STATE_GET_PC and status EVENT_DSP_HALT
    0x00002BA8 25138 3 CORTEX_M4_0 GTI C: GTI_READREG( 0x101C1208, 0x0000020F, *0x0FB6F118 = 0x00000000 )
    0x00002BA8 25138 3 CORTEX_M4_0 GTI R: GTI_READREG( 0x101C1208, 0x0000020F, *0x0FB6F118 = 0x000003A6 ) = 0x00000000
    0x00002BA8 25138 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6EAE0 = 0x00000000, *0x0FB6EAC0 = 0x00000000, *0x0FB6EADC = 0x00000000, *0x0FB6EAB8 = 0x00000000, *0x0FB6EAD8 = 0x00000000, *0x0FB6EAD4 = 0x00000000, *0x0FB6EACC = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x00002BA8 25138 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6EAE0 = 0x00000000, *0x0FB6EAC0 = 0x00000000, *0x0FB6EADC = 0x00000000, *0x0FB6EAB8 = 0x00000002, *0x0FB6EAD8 = 0x00000000, *0x0FB6EAD4 = 0x00000008, *0x0FB6EACC = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x00002BA8 25138 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6EBF8 = 0x00000000, *0x0FB6EBD8 = 0x00000000, *0x0FB6EBF4 = 0x00000000, *0x0FB6EBD0 = 0x00000000, *0x0FB6EBF0 = 0x00000000, *0x0FB6EBEC = 0x00000000, *0x0FB6EBE4 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x00002BA8 25138 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6EBF8 = 0x00000000, *0x0FB6EBD8 = 0x00000000, *0x0FB6EBF4 = 0x00000000, *0x0FB6EBD0 = 0x00000002, *0x0FB6EBF0 = 0x00000000, *0x0FB6EBEC = 0x00000008, *0x0FB6EBE4 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x00002BA8 25138 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 25138 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 25138 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 25138 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 25138 4  POLL I: Yielding to other threads
    0x00002BA8 25138 3 CORTEX_M4_0 POLL C: Polling with state STATE_GET_CLK and status EVENT_DSP_HALT
    0x00002BA8 25138 3 CORTEX_M4_0 GTI C: GTI_READREG( 0x101C1208, 0x0000020D, *0x0FB6F120 = 0x00000000 )
    0x00002BA8 25138 3 CORTEX_M4_0 GTI R: GTI_READREG( 0x101C1208, 0x0000020D, *0x0FB6F120 = 0x20003638 ) = 0x00000000
    0x00002BA8 25138 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6EAE8 = 0x00000000, *0x0FB6EAC8 = 0x00000000, *0x0FB6EAE4 = 0x00000000, *0x0FB6EAC0 = 0x00000000, *0x0FB6EAE0 = 0x00000000, *0x0FB6EADC = 0x00000000, *0x0FB6EAD4 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x00002BA8 25138 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6EAE8 = 0x00000000, *0x0FB6EAC8 = 0x00000000, *0x0FB6EAE4 = 0x00000000, *0x0FB6EAC0 = 0x00000002, *0x0FB6EAE0 = 0x00000000, *0x0FB6EADC = 0x00000008, *0x0FB6EAD4 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x00002BA8 25138 3  COM_DBG_IF C: class DSP_CO_USER::OnTargetHaltDetected()
    0x00002BA8 25138 3  COM_DBG_IF R: class DSP_CO_USER::OnTargetHaltDetected()
    0x00002BA8 25138 3 CORTEX_M4_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x00002BA8 25138 3 CORTEX_M4_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eHalted )
    0x00002BA8 25139 3 CORTEX_M4_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eHalted )
    0x00002BA8 25139 3  COM_DBG_IF C: class DSP_CO_USER::OnHalt()
    0x00002BA8 25139 3  XPCOM C: ( (dsIObjectEventCallback*)16F734F8 )->onEvent( 170DE788 )
    0x00002BA8 25139 3  XPCOM C: ( (nsISupports*)170DE790 )->queryInterface( 124BE188, 0FB6DF28 )
    0x00002BA8 25139 3  XPCOM R: ( (nsISupports*)170DE790 )->queryInterface( 124BE188, *0FB6DF28 = 170DE788 ) = 0x00000000
    0x00002BA8 25139 3  XPCOM C: ( (dsITargetData*)170DE788 )->toUnsignedInt( 0FB6DF58 )
    0x00002BA8 25139 3  XPCOM R: ( (dsITargetData*)170DE788 )->toUnsignedInt( *0FB6DF58 = 0x000003A6 ) = 0x00000000
    0x00002BA8 25139 3  XPCOM C: ( (dsIRefreshControl*)125EB784 )->beginRefresh( 0FB6DF08 )
    0x00002BA8 25139 3  XPCOM R: ( (dsIRefreshControl*)125EB784 )->beginRefresh( *0FB6DF08 = 0x00000000 ) = 0x00000000
    0x00002BA8 25139 3  XPCOM R: ( (dsIObjectEventCallback*)16F734F8 )->onEvent( 170DE788 ) = 0x00000000
    0x00002BA8 25139 3  COM_DBG_IF R: class DSP_CO_USER::OnHalt()
    0x00002BA8 25139 3  COM_DBG_IF C: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x00002BA8 25139 3  XPCOM C: ( (dsISimpleEventCallback*)16F725B8 )->onEvent()
    0x00002BA8 25139 3  XPCOM R: ( (dsISimpleEventCallback*)16F725B8 )->onEvent() = 0x00000000
    0x00002BA8 25139 3  COM_DBG_IF R: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x00002BA8 25139 3  COM_DBG_IF C: class DSP_CO_USER::OnExecutionStatusChanged()
    0x00002BA8 25139 3  XPCOM C: ( (dsISimpleEventCallback*)16F71CB8 )->onEvent()
    0x00002BA8 25139 3  XPCOM R: ( (dsISimpleEventCallback*)16F71CB8 )->onEvent() = 0x00000000
    0x00002BA8 25139 3  COM_DBG_IF R: class DSP_CO_USER::OnExecutionStatusChanged()
    0x00002BA8 25139 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_READ_MEM added to polling loop by class `anonymous namespace'::TpiStatusRegistersImpl
    0x00002BA8 25139 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 25139 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 25139 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 25139 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 25139 4  POLL I: Yielding to other threads
    0x00002BA8 25139 3 CORTEX_M4_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 25139 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 25139 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 25139 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 25139 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 25139 4  POLL I: Yielding to other threads
    0x00002BA8 25139 3 CORTEX_M4_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x00002BA8 25139 2 CORTEX_M4_0 GEL I: tm4c123ge6pm.gel:24    Enter function OnTargetConnect
    0x00002BA8 25139 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class `anonymous namespace'::NullRequestNotification
    0x00002BA8 25139 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 25139 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 25139 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 25139 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 25139 4  POLL I: Yielding to other threads
    0x00002BA8 25139 3 CORTEX_M4_0 POLL C: Polling with state STATE_READ and status EVENT_DSP_HALT
    0x00002BA8 25140 3 CORTEX_M4_0 GTI C: GTI_READREG( 0x101C1208, 0x61001002, *0x0FB6F158 = 0x00000000 )
    0x00002BA8 25140 3 CORTEX_M4_0 GTI R: GTI_READREG( 0x101C1208, 0x61001002, *0x0FB6F158 = 0x00000000 ) = 0x00000000
    0x00002BA8 25140 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6EB20 = 0x00000000, *0x0FB6EB00 = 0x00000000, *0x0FB6EB1C = 0x00000000, *0x0FB6EAF8 = 0x00000000, *0x0FB6EB18 = 0x00000000, *0x0FB6EB14 = 0x00000000, *0x0FB6EB0C = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x00002BA8 25140 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6EB20 = 0x00000000, *0x0FB6EB00 = 0x00000000, *0x0FB6EB1C = 0x00000000, *0x0FB6EAF8 = 0x00000002, *0x0FB6EB18 = 0x00000000, *0x0FB6EB14 = 0x00000008, *0x0FB6EB0C = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x00002BA8 25140 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 25140 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 25140 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 25140 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 25140 4  POLL I: Yielding to other threads
    0x00002BA8 25140 3 CORTEX_M4_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x00002BA8 25140 2 CORTEX_M4_0 GEL I: tm4c123ge6pm.gel:0    Leave function OnTargetConnect
    0x00002BA8 25140 3 CORTEX_M4_0 GEL I: Evaluation of "OnTargetConnect()" completed - Value: 0 Location: unknown
    0x00002BA8 25140 3 CORTEX_M4_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eConnected )
    0x00002BA8 25140 3 CORTEX_M4_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eConnected )
    0x00002BA8 25140 3  COM_DBG_IF C: class DSP_CO_USER::OnConnected()
    0x00002BA8 25140 3  XPCOM C: ( (dsISimpleEventCallback*)16F721B8 )->onEvent()
    0x00002BA8 25140 3  XPCOM C: ( (dsIRefreshControl*)125EB784 )->beginRefresh( 0FB6E168 )
    0x00002BA8 25140 3  XPCOM R: ( (dsIRefreshControl*)125EB784 )->beginRefresh( *0FB6E168 = 0x00000000 ) = 0x00000000
    0x00000490 25140 3  XPCOM C: ( (dsIRtdxCapable*)0050F4B4 )->IsRtdxCapable( 17AEF738 )
    0x00002BA8 25140 3  XPCOM R: ( (dsISimpleEventCallback*)16F721B8 )->onEvent() = 0x00000000
    0x00002BA8 25140 3  COM_DBG_IF R: class DSP_CO_USER::OnConnected()
    0x00002BA8 25140 3  COM_DBG_IF C: class DSP_CO_USER::OnRefresh()
    0x00002BA8 25140 3  XPCOM C: ( (dsINumberEventCallback*)16F71F78 )->onEvent( 0x00000003 )
    0x00002BA8 25140 3  XPCOM R: ( (dsINumberEventCallback*)16F71F78 )->onEvent( 0x00000003 ) = 0x00000000
    0x00002BA8 25140 3  COM_DBG_IF R: class DSP_CO_USER::OnRefresh()
    0x00002BA8 25140 3  COM_DBG_IF C: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x00002BA8 25140 3  XPCOM C: ( (dsISimpleEventCallback*)16F725B8 )->onEvent()
    0x00002BA8 25140 3  XPCOM R: ( (dsISimpleEventCallback*)16F725B8 )->onEvent() = 0x00000000
    0x00002BA8 25140 3  COM_DBG_IF R: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x00002BA8 25140 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 25140 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 25140 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 25140 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 25140 4  POLL I: Yielding to other threads for 10 ms
    0x00000490 25140 3  XPCOM R: ( (dsIRtdxCapable*)0050F4B4 )->IsRtdxCapable( *17AEF738 = false ) = 0x00000000
    0x00002BA8 25151 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 25151 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 25151 3 CS_DAP_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 25151 3 CS_DAP_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 25151 3 CS_DAP_0 GTI C: GTI_STAT( 0x127D48F0 )
    0x00002BA8 25151 3 CS_DAP_0 GTI R: GTI_STAT( 0x127D48F0 ) = 0x0000000D
    0x00002BA8 25151 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_CHANGE
    0x00002BA8 25151 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x00002BA8 25151 3  COM_DBG_IF C: class DSP_CO_USER::OnRefresh()
    0x00002BA8 25151 3  XPCOM C: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 )
    0x00002BA8 25151 3  XPCOM R: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 ) = 0x00000000
    0x00002BA8 25151 3  COM_DBG_IF R: class DSP_CO_USER::OnRefresh()
    0x00002BA8 25151 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 25151 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 25151 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4989 ms
    0x00002BA8 25151 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 25151 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 25151 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4989 ms
    0x000019C0 25516 3  XPCOM C: ( (dsIConnectDisconnect*)125EB74C )->connectionStatus( 0018ECA8 )
    0x000019C0 25516 3  XPCOM R: ( (dsIConnectDisconnect*)125EB74C )->connectionStatus( *0018ECA8 = 0x00000000 ) = 0x00000000
    0x000019C0 25516 3  XPCOM C: ( (dsIProcessorInfo*)0050F498 )->Partnum( 0018ED68 )
    0x000019C0 25516 3  XPCOM R: ( (dsIProcessorInfo*)0050F498 )->Partnum( *0018ED68 = TM4C123GE6PM ) = 0x00000000
    0x000019C0 25516 3  XPCOM C: ( (dsIProcessorInfo*)0050F498 )->Partnum( 0018ED68 )
    0x000019C0 25516 3  XPCOM R: ( (dsIProcessorInfo*)0050F498 )->Partnum( *0018ED68 = TM4C123GE6PM ) = 0x00000000
    0x000012F8 25540 3  XPCOM C: ( (dsIFlashProgrammerManager*)16F72BF8 )->performOperation( BlankCheck, 1954F8B8 )
    0x000012F8 25540 3  FLASH C: FlashProgrammerManager::PerformOperation( BlankCheck )
    0x000012F8 25540 3  FLASH C: FlashProgrammerManager::TargetSupported()
    0x000012F8 25540 3  FLASH C: FlashStellaris::FlashAvailable()
    0x000012F8 25540 3  FLASH R: FlashStellaris::FlashAvailable() = 1
    0x000012F8 25540 3  FLASH I: FlashProgrammerManager::TargetSupported(), !m_pTargetInfo.isSimulator = 1
    0x000012F8 25540 3  FLASH I: FlashProgrammerManager::TargetSupported(), (m_flashDeviceInterface != NULL) = 1
    0x000012F8 25540 3  FLASH R: FlashProgrammerManager::TargetSupported() = 1
    0x000012F8 25540 3  FLASH C: FlashProgrammerUtility::GetValueOfProperty( FlashVerboseMode )
    0x000012F8 25540 3  FLASH R: FlashProgrammerUtility::GetValueOfProperty( FlashVerboseMode ) = 1
    0x000012F8 25540 3  FLASH C: FlashStellaris::PerformOperation(BlankCheck)
    0x000012F8 25540 3  FLASH I: FlashProgrammerUtility::ReportInfo(), Info: Performing Blank Check...
    0x000012F8 25540 3  COM_DBG_IF C: class dsDebugger::OnInfo()
    0x000012F8 25540 3  XPCOM C: ( (dsIStringEventCallback*)0051ED68 )->onEvent( CORTEX_M4_0: Performing Blank Check...
     )
    0x000012F8 25540 3  XPCOM R: ( (dsIStringEventCallback*)0051ED68 )->onEvent( CORTEX_M4_0: Performing Blank Check...
     ) = 0x00000000
    0x000012F8 25540 3  COM_DBG_IF R: class dsDebugger::OnInfo()
    0x000012F8 25540 3  COM_DBG_IF C: class DSP_CO_USER::OnInfo()
    0x000012F8 25540 3  XPCOM C: ( (dsIStringEventCallback*)16F72D38 )->onEvent( CORTEX_M4_0: Performing Blank Check...
     )
    0x000012F8 25541 3  XPCOM R: ( (dsIStringEventCallback*)16F72D38 )->onEvent( CORTEX_M4_0: Performing Blank Check...
     ) = 0x00000000
    0x000012F8 25541 3  COM_DBG_IF R: class DSP_CO_USER::OnInfo()
    0x000012F8 25541 3  FLASH C: FlashStellaris::BlankCheck()
    0x000012F8 25541 3  FLASH C: FlashProgrammerUtility::GetValueOfProperty( FlashBlankCheckSelection )
    0x000012F8 25541 3  FLASH R: FlashProgrammerUtility::GetValueOfProperty( FlashBlankCheckSelection ) = Entire Flash
    0x000012F8 25541 3  FLASH C: FlashStellaris::BlankCheckByAddress(0x00000000, 0x0003FFFF)
    0x000012F8 25541 3  FLASH C: FlashProgrammerUtility::GetValueOfProperty( FlashVerboseMode )
    0x000012F8 25541 3  FLASH R: FlashProgrammerUtility::GetValueOfProperty( FlashVerboseMode ) = 1
    0x000012F8 25541 3  FLASH I: FlashProgrammerUtility::ReportInfo(), Info: Performing Blank Check on the following (aligned) memory range: 0x00000000 - 0x0003FFFF
    0x000012F8 25541 3  COM_DBG_IF C: class dsDebugger::OnInfo()
    0x000012F8 25541 3  XPCOM C: ( (dsIStringEventCallback*)0051ED68 )->onEvent( CORTEX_M4_0: Performing Blank Check on the following (aligned) memory range: 0x00000000 - 0x0003FFFF
     )
    0x000012F8 25541 3  XPCOM R: ( (dsIStringEventCallback*)0051ED68 )->onEvent( CORTEX_M4_0: Performing Blank Check on the following (aligned) memory range: 0x00000000 - 0x0003FFFF
     ) = 0x00000000
    0x000012F8 25541 3  COM_DBG_IF R: class dsDebugger::OnInfo()
    0x000012F8 25541 3  COM_DBG_IF C: class DSP_CO_USER::OnInfo()
    0x000012F8 25541 3  XPCOM C: ( (dsIStringEventCallback*)16F72D38 )->onEvent( CORTEX_M4_0: Performing Blank Check on the following (aligned) memory range: 0x00000000 - 0x0003FFFF
     )
    0x000012F8 25541 3  XPCOM R: ( (dsIStringEventCallback*)16F72D38 )->onEvent( CORTEX_M4_0: Performing Blank Check on the following (aligned) memory range: 0x00000000 - 0x0003FFFF
     ) = 0x00000000
    0x000012F8 25541 3  COM_DBG_IF R: class DSP_CO_USER::OnInfo()
    0x000012F8 25541 3  FLASH C: FlashProgrammerUtility::ReadDataFromTarget( 18414DA8, 0x00000000, 32752, 0 )
    0x000012F8 25541 3 CORTEX_M4_0 GTI C: GTI_READMEM_WITH_STAT( 0x101C1208, 0x00000000, 0x00000000, 0x00007FF0, 0x00000001, "R", 0x00000000, 0x00000000, *0x186F0070 = 0x00000000, 0xFFFFFFFF, *0x00000000 = (nullptr) )
    0x000012F8 30929 3 CORTEX_M4_0 GTI R: GTI_READMEM_WITH_STAT( 0x101C1208, 0x00000000, 0x00000000, 0x00007FF0, 0x00000001, "R", 0x00000000, 0x00000000, *0x186F0070 = 0x00000008, 0xFFFFFFFF, *0x00000000 = (nullptr) ) = 0x00000000
    0x000012F8 30930 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x1954E9E4 = 0x00000000, *0x1954E9C4 = 0x00000000, *0x1954E9E0 = 0x00000000, *0x1954E9BC = 0x00000000, *0x1954E9DC = 0x00000000, *0x1954E9D8 = 0x00000000, *0x1954E9D0 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x000012F8 30930 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x1954E9E4 = 0x00000000, *0x1954E9C4 = 0x00000000, *0x1954E9E0 = 0x00000000, *0x1954E9BC = 0x00000002, *0x1954E9DC = 0x00000000, *0x1954E9D8 = 0x00000008, *0x1954E9D0 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x000012F8 30930 3  FLASH R: FlashProgrammerUtility::ReadDataFromTarget( 18414DA8, 0x00000000, 32752, 0 ) = 1
    0x000012F8 30930 3  FLASH C: FlashStellaris::TranslateDataBuffer()
    0x000012F8 30930 3  FLASH R: FlashStellaris::TranslateDataBuffer()
    0x000012F8 30930 3  FLASH E: FlashProgrammerUtility::ReportError(), Error: Flash Programmer: Error during Blank Check @ address 0x00000000; expected 0xFFFFFFFF, actual 0x20002F08
    0x000012F8 30930 3  COM_DBG_IF C: class dsDebugger::OnError()
    0x000012F8 30930 3  XPCOM C: ( (dsIStringEventCallback*)0051EDA8 )->onEvent( CORTEX_M4_0: Flash Programmer: Error during Blank Check @ address 0x00000000; expected 0xFFFFFFFF, actual 0x20002F08
     )
    0x000012F8 30931 3  XPCOM R: ( (dsIStringEventCallback*)0051EDA8 )->onEvent( CORTEX_M4_0: Flash Programmer: Error during Blank Check @ address 0x00000000; expected 0xFFFFFFFF, actual 0x20002F08
     ) = 0x00000000
    0x000012F8 30932 3  COM_DBG_IF R: class dsDebugger::OnError()
    0x000012F8 30932 3  COM_DBG_IF C: class DSP_CO_USER::OnError()
    0x000012F8 30932 3  XPCOM C: ( (dsIStringEventCallback*)16F732F8 )->onEvent( CORTEX_M4_0: Flash Programmer: Error during Blank Check @ address 0x00000000; expected 0xFFFFFFFF, actual 0x20002F08
     )
    0x000012F8 30932 3  XPCOM R: ( (dsIStringEventCallback*)16F732F8 )->onEvent( CORTEX_M4_0: Flash Programmer: Error during Blank Check @ address 0x00000000; expected 0xFFFFFFFF, actual 0x20002F08
     ) = 0x00000000
    0x000012F8 30932 3  COM_DBG_IF R: class DSP_CO_USER::OnError()
    0x000012F8 30932 3  FLASH R: FlashStellaris::BlankCheckByAddress() = false
    0x000012F8 30932 3  FLASH R: FlashStellaris::BlankCheck() = 0
    0x000012F8 30932 3  FLASH E: FlashProgrammerUtility::ReportError(), Error: Flash Programmer: Error performing Blank Check.
    0x000012F8 30932 3  COM_DBG_IF C: class dsDebugger::OnError()
    0x000012F8 30932 3  XPCOM C: ( (dsIStringEventCallback*)0051EDA8 )->onEvent( CORTEX_M4_0: Flash Programmer: Error performing Blank Check.
     )
    0x000012F8 30937 3  XPCOM R: ( (dsIStringEventCallback*)0051EDA8 )->onEvent( CORTEX_M4_0: Flash Programmer: Error performing Blank Check.
     ) = 0x00000000
    0x000012F8 30937 3  COM_DBG_IF R: class dsDebugger::OnError()
    0x000012F8 30937 3  COM_DBG_IF C: class DSP_CO_USER::OnError()
    0x000012F8 30937 3  XPCOM C: ( (dsIStringEventCallback*)16F732F8 )->onEvent( CORTEX_M4_0: Flash Programmer: Error performing Blank Check.
     )
    0x000012F8 30938 3  XPCOM R: ( (dsIStringEventCallback*)16F732F8 )->onEvent( CORTEX_M4_0: Flash Programmer: Error performing Blank Check.
     ) = 0x00000000
    0x000012F8 30938 3  COM_DBG_IF R: class DSP_CO_USER::OnError()
    0x000012F8 30938 3  FLASH R: FlashStellaris::PerformOperation() = false
    0x000012F8 30938 3  FLASH C: FlashProgrammerUtility::RestoreBackedUpRAM()
    0x000012F8 30938 3  FLASH R: FlashProgrammerUtility::RestoreBackedUpRAM() = 1
    0x000012F8 30938 3  FLASH R: FlashProgrammerManager::PerformOperation( BlankCheck ) = 0
    0x000012F8 30938 3  XPCOM R: ( (dsIFlashProgrammerManager*)16F72BF8 )->performOperation( BlankCheck, *1954F8B8 = false ) = 0x00000000
    0x00002BA8 30938 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 30938 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 30938 3 CS_DAP_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 30938 3 CS_DAP_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 30938 3 CS_DAP_0 GTI C: GTI_STAT( 0x127D48F0 )
    0x00002BA8 30938 3 CS_DAP_0 GTI R: GTI_STAT( 0x127D48F0 ) = 0x0000000D
    0x00002BA8 30938 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_CHANGE
    0x00002BA8 30938 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x00002BA8 30938 3  COM_DBG_IF C: class DSP_CO_USER::OnRefresh()
    0x00002BA8 30938 3  XPCOM C: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 )
    0x00002BA8 30938 3  XPCOM R: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 ) = 0x00000000
    0x00002BA8 30938 3  COM_DBG_IF R: class DSP_CO_USER::OnRefresh()
    0x00002BA8 30938 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 30938 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 30938 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 30938 3 CORTEX_M4_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 30938 3 CORTEX_M4_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 30938 3 CORTEX_M4_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 30939 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x101C1208, *0x0FB6F0EC = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x00002BA8 30940 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x101C1208, *0x0FB6F0EC = { 4, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x00002BA8 30940 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_HALTED
    0x00002BA8 30940 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 30940 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 30940 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 30940 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 30940 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 5000 ms
    0x00002BA8 31440 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 31440 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 31440 3 CS_DAP_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 31440 3 CS_DAP_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 31440 3 CS_DAP_0 GTI C: GTI_STAT( 0x127D48F0 )
    0x00002BA8 31440 3 CS_DAP_0 GTI R: GTI_STAT( 0x127D48F0 ) = 0x0000000D
    0x00002BA8 31440 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_CHANGE
    0x00002BA8 31440 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x00002BA8 31440 3  COM_DBG_IF C: class DSP_CO_USER::OnRefresh()
    0x00002BA8 31440 3  XPCOM C: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 )
    0x00002BA8 31440 3  XPCOM R: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 ) = 0x00000000
    0x00002BA8 31440 3  COM_DBG_IF R: class DSP_CO_USER::OnRefresh()
    0x00002BA8 31440 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 31440 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 31440 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4498 ms
    0x00002BA8 31440 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 31440 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 31440 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4498 ms
    0x00002BA8 31940 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 31940 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 31940 3 CS_DAP_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 31940 3 CS_DAP_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 31940 3 CS_DAP_0 GTI C: GTI_STAT( 0x127D48F0 )
    0x00002BA8 31940 3 CS_DAP_0 GTI R: GTI_STAT( 0x127D48F0 ) = 0x0000000D
    0x00002BA8 31940 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_CHANGE
    0x00002BA8 31940 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x00002BA8 31940 3  COM_DBG_IF C: class DSP_CO_USER::OnRefresh()
    0x00002BA8 31940 3  XPCOM C: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 )
    0x00002BA8 31940 3  XPCOM R: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 ) = 0x00000000
    0x00002BA8 31940 3  COM_DBG_IF R: class DSP_CO_USER::OnRefresh()
    0x00002BA8 31940 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 31940 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 31940 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3998 ms
    0x00002BA8 31940 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 31940 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 31940 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3998 ms
    0x00002BA8 32440 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 32440 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 32440 3 CS_DAP_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 32440 3 CS_DAP_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 32440 3 CS_DAP_0 GTI C: GTI_STAT( 0x127D48F0 )
    0x00002BA8 32440 3 CS_DAP_0 GTI R: GTI_STAT( 0x127D48F0 ) = 0x0000000D
    0x00002BA8 32440 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_CHANGE
    0x00002BA8 32440 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x00002BA8 32440 3  COM_DBG_IF C: class DSP_CO_USER::OnRefresh()
    0x00002BA8 32440 3  XPCOM C: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 )
    0x00002BA8 32440 3  XPCOM R: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 ) = 0x00000000
    0x00002BA8 32440 3  COM_DBG_IF R: class DSP_CO_USER::OnRefresh()
    0x00002BA8 32440 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 32440 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 32440 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3498 ms
    0x00002BA8 32440 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 32440 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 32440 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3498 ms
    0x00002BA8 32940 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 32940 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 32940 3 CS_DAP_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 32940 3 CS_DAP_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 32940 3 CS_DAP_0 GTI C: GTI_STAT( 0x127D48F0 )
    0x00002BA8 32940 3 CS_DAP_0 GTI R: GTI_STAT( 0x127D48F0 ) = 0x0000000D
    0x00002BA8 32940 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_CHANGE
    0x00002BA8 32940 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x00002BA8 32940 3  COM_DBG_IF C: class DSP_CO_USER::OnRefresh()
    0x00002BA8 32940 3  XPCOM C: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 )
    0x00002BA8 32940 3  XPCOM R: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 ) = 0x00000000
    0x00002BA8 32940 3  COM_DBG_IF R: class DSP_CO_USER::OnRefresh()
    0x00002BA8 32940 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 32940 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 32940 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2998 ms
    0x00002BA8 32940 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 32940 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 32940 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2998 ms
    0x00002BA8 33440 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 33440 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 33440 3 CS_DAP_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 33440 3 CS_DAP_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 33440 3 CS_DAP_0 GTI C: GTI_STAT( 0x127D48F0 )
    0x00002BA8 33440 3 CS_DAP_0 GTI R: GTI_STAT( 0x127D48F0 ) = 0x0000000D
    0x00002BA8 33440 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_CHANGE
    0x00002BA8 33440 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x00002BA8 33440 3  COM_DBG_IF C: class DSP_CO_USER::OnRefresh()
    0x00002BA8 33440 3  XPCOM C: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 )
    0x00002BA8 33440 3  XPCOM R: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 ) = 0x00000000
    0x00002BA8 33440 3  COM_DBG_IF R: class DSP_CO_USER::OnRefresh()
    0x00002BA8 33440 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 33440 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 33440 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2498 ms
    0x00002BA8 33440 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 33440 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 33440 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2498 ms
    0x00002BA8 33940 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 33940 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 33940 3 CS_DAP_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 33940 3 CS_DAP_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 33940 3 CS_DAP_0 GTI C: GTI_STAT( 0x127D48F0 )
    0x00002BA8 33940 3 CS_DAP_0 GTI R: GTI_STAT( 0x127D48F0 ) = 0x0000000D
    0x00002BA8 33940 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_CHANGE
    0x00002BA8 33940 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x00002BA8 33940 3  COM_DBG_IF C: class DSP_CO_USER::OnRefresh()
    0x00002BA8 33940 3  XPCOM C: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 )
    0x00002BA8 33940 3  XPCOM R: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 ) = 0x00000000
    0x00002BA8 33940 3  COM_DBG_IF R: class DSP_CO_USER::OnRefresh()
    0x00002BA8 33940 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 33940 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 33940 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1998 ms
    0x00002BA8 33940 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 33940 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 33940 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1998 ms
    0x00002BA8 34440 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 34440 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 34440 3 CS_DAP_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 34440 3 CS_DAP_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 34440 3 CS_DAP_0 GTI C: GTI_STAT( 0x127D48F0 )
    0x00002BA8 34440 3 CS_DAP_0 GTI R: GTI_STAT( 0x127D48F0 ) = 0x0000000D
    0x00002BA8 34440 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_CHANGE
    0x00002BA8 34440 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x00002BA8 34440 3  COM_DBG_IF C: class DSP_CO_USER::OnRefresh()
    0x00002BA8 34440 3  XPCOM C: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 )
    0x00002BA8 34440 3  XPCOM R: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 ) = 0x00000000
    0x00002BA8 34440 3  COM_DBG_IF R: class DSP_CO_USER::OnRefresh()
    0x00002BA8 34440 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 34440 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 34440 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1497 ms
    0x00002BA8 34440 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 34440 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 34440 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1497 ms
    0x00002BA8 34940 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 34940 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 34940 3 CS_DAP_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 34940 3 CS_DAP_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 34940 3 CS_DAP_0 GTI C: GTI_STAT( 0x127D48F0 )
    0x00002BA8 34940 3 CS_DAP_0 GTI R: GTI_STAT( 0x127D48F0 ) = 0x0000000D
    0x00002BA8 34940 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_CHANGE
    0x00002BA8 34940 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x00002BA8 34940 3  COM_DBG_IF C: class DSP_CO_USER::OnRefresh()
    0x00002BA8 34940 3  XPCOM C: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 )
    0x00002BA8 34940 3  XPCOM R: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 ) = 0x00000000
    0x00002BA8 34940 3  COM_DBG_IF R: class DSP_CO_USER::OnRefresh()
    0x00002BA8 34940 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 34940 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 34940 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 997 ms
    0x00002BA8 34940 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 34940 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 34940 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 997 ms
    0x00002BA8 35441 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 35441 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 35441 3 CS_DAP_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 35441 3 CS_DAP_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 35441 3 CS_DAP_0 GTI C: GTI_STAT( 0x127D48F0 )
    0x00002BA8 35441 3 CS_DAP_0 GTI R: GTI_STAT( 0x127D48F0 ) = 0x0000000D
    0x00002BA8 35441 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_CHANGE
    0x00002BA8 35441 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x00002BA8 35441 3  COM_DBG_IF C: class DSP_CO_USER::OnRefresh()
    0x00002BA8 35441 3  XPCOM C: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 )
    0x00002BA8 35441 3  XPCOM R: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 ) = 0x00000000
    0x00002BA8 35441 3  COM_DBG_IF R: class DSP_CO_USER::OnRefresh()
    0x00002BA8 35441 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 35441 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 35441 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 497 ms
    0x00002BA8 35441 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 35441 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 35441 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 497 ms
    0x00002BA8 35441 4  POLL I: TimeToSleep() found shorter sleep time of 497 ms from class DevicePollFrequencyManager
    0x00002BA8 35938 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3 ms
    0x00002BA8 35938 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 35938 3 CORTEX_M4_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 35938 3 CORTEX_M4_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 35938 3 CORTEX_M4_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 35938 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x101C1208, *0x0FB6F0EC = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x00002BA8 35939 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x101C1208, *0x0FB6F0EC = { 4, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x00002BA8 35939 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_HALTED
    0x00002BA8 35939 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 35939 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 35939 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3 ms
    0x00002BA8 35939 4  POLL I: TimeToSleep() found shorter sleep time of 3 ms from class DevicePollFrequencyManager
    0x00002BA8 35939 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 5000 ms
    0x00002BA8 35942 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 35942 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 35942 3 CS_DAP_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 35942 3 CS_DAP_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 35942 3 CS_DAP_0 GTI C: GTI_STAT( 0x127D48F0 )
    0x00002BA8 35942 3 CS_DAP_0 GTI R: GTI_STAT( 0x127D48F0 ) = 0x0000000D
    0x00002BA8 35942 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_CHANGE
    0x00002BA8 35942 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x00002BA8 35942 3  COM_DBG_IF C: class DSP_CO_USER::OnRefresh()
    0x00002BA8 35942 3  XPCOM C: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 )
    0x00002BA8 35942 3  XPCOM R: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 ) = 0x00000000
    0x00002BA8 35942 3  COM_DBG_IF R: class DSP_CO_USER::OnRefresh()
    0x00002BA8 35942 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 35942 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 35942 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4996 ms
    0x00002BA8 35942 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 35942 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 35942 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4996 ms
    0x00002BA8 36442 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 36442 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 36442 3 CS_DAP_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 36442 3 CS_DAP_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 36442 3 CS_DAP_0 GTI C: GTI_STAT( 0x127D48F0 )
    0x00002BA8 36442 3 CS_DAP_0 GTI R: GTI_STAT( 0x127D48F0 ) = 0x0000000D
    0x00002BA8 36442 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_CHANGE
    0x00002BA8 36442 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x00002BA8 36442 3  COM_DBG_IF C: class DSP_CO_USER::OnRefresh()
    0x00002BA8 36442 3  XPCOM C: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 )
    0x00002BA8 36442 3  XPCOM R: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 ) = 0x00000000
    0x00002BA8 36442 3  COM_DBG_IF R: class DSP_CO_USER::OnRefresh()
    0x00002BA8 36442 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 36442 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 36442 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4496 ms
    0x00002BA8 36442 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 36442 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 36442 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4496 ms
    0x00002BA8 36942 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 36942 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 36942 3 CS_DAP_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 36942 3 CS_DAP_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 36942 3 CS_DAP_0 GTI C: GTI_STAT( 0x127D48F0 )
    0x00002BA8 36942 3 CS_DAP_0 GTI R: GTI_STAT( 0x127D48F0 ) = 0x0000000D
    0x00002BA8 36942 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_CHANGE
    0x00002BA8 36942 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x00002BA8 36942 3  COM_DBG_IF C: class DSP_CO_USER::OnRefresh()
    0x00002BA8 36942 3  XPCOM C: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 )
    0x00002BA8 36942 3  XPCOM R: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 ) = 0x00000000
    0x00002BA8 36942 3  COM_DBG_IF R: class DSP_CO_USER::OnRefresh()
    0x00002BA8 36942 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 36942 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 36942 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3996 ms
    0x00002BA8 36942 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 36942 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 36942 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3996 ms
    0x00002BA8 37442 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 37442 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 37442 3 CS_DAP_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 37442 3 CS_DAP_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 37442 3 CS_DAP_0 GTI C: GTI_STAT( 0x127D48F0 )
    0x00002BA8 37442 3 CS_DAP_0 GTI R: GTI_STAT( 0x127D48F0 ) = 0x0000000D
    0x00002BA8 37442 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_CHANGE
    0x00002BA8 37442 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x00002BA8 37442 3  COM_DBG_IF C: class DSP_CO_USER::OnRefresh()
    0x00002BA8 37442 3  XPCOM C: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 )
    0x00002BA8 37442 3  XPCOM R: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 ) = 0x00000000
    0x00002BA8 37442 3  COM_DBG_IF R: class DSP_CO_USER::OnRefresh()
    0x00002BA8 37442 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 37442 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 37442 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3496 ms
    0x00002BA8 37442 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 37442 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 37442 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3496 ms
    0x00002BA8 37942 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 37942 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 37942 3 CS_DAP_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 37942 3 CS_DAP_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 37942 3 CS_DAP_0 GTI C: GTI_STAT( 0x127D48F0 )
    0x00002BA8 37942 3 CS_DAP_0 GTI R: GTI_STAT( 0x127D48F0 ) = 0x0000000D
    0x00002BA8 37942 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_CHANGE
    0x00002BA8 37942 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x00002BA8 37942 3  COM_DBG_IF C: class DSP_CO_USER::OnRefresh()
    0x00002BA8 37942 3  XPCOM C: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 )
    0x00002BA8 37942 3  XPCOM R: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 ) = 0x00000000
    0x00002BA8 37942 3  COM_DBG_IF R: class DSP_CO_USER::OnRefresh()
    0x00002BA8 37942 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 37942 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 37942 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2996 ms
    0x00002BA8 37942 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 37942 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 37942 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2996 ms
    0x00002BA8 38442 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 38442 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 38442 3 CS_DAP_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 38442 3 CS_DAP_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 38442 3 CS_DAP_0 GTI C: GTI_STAT( 0x127D48F0 )
    0x00002BA8 38442 3 CS_DAP_0 GTI R: GTI_STAT( 0x127D48F0 ) = 0x0000000D
    0x00002BA8 38442 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_CHANGE
    0x00002BA8 38442 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x00002BA8 38442 3  COM_DBG_IF C: class DSP_CO_USER::OnRefresh()
    0x00002BA8 38442 3  XPCOM C: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 )
    0x00002BA8 38442 3  XPCOM R: ( (dsINumberEventCallback*)12240C08 )->onEvent( 0x00000008 ) = 0x00000000
    0x00002BA8 38442 3  COM_DBG_IF R: class DSP_CO_USER::OnRefresh()
    0x00002BA8 38442 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 38442 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 38442 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2496 ms
    0x00002BA8 38442 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 38442 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 38442 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2496 ms
    0x000019C0 38476 3  XPCOM C: ( (dsIConnectDisconnect*)125EB74C )->disconnect( true )
    0x000019C0 38476 3 CORTEX_M4_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x000019C0 38476 3 CORTEX_M4_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x000019C0 38476 3 CORTEX_M4_0 STATE I: Connection state changed to 3
    0x000019C0 38476 3 CORTEX_M4_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::ePreDisconnect )
    0x000019C0 38476 3 CORTEX_M4_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::ePreDisconnect )
    0x000019C0 38476 3  COM_DBG_IF C: class DSP_CO_USER::OnDisconnecting()
    0x000019C0 38476 3  XPCOM C: ( (dsIBooleanEventCallback*)16F72238 )->onEvent( false )
    0x000019C0 38477 3  XPCOM C: ( (dsIRefreshControl*)125EB784 )->beginRefresh( 0018D688 )
    0x000019C0 38477 3  XPCOM R: ( (dsIRefreshControl*)125EB784 )->beginRefresh( *0018D688 = 0x00000000 ) = 0x00000000
    0x000019C0 38477 3  XPCOM R: ( (dsIBooleanEventCallback*)16F72238 )->onEvent( false ) = 0x00000000
    0x000019C0 38477 3  COM_DBG_IF R: class DSP_CO_USER::OnDisconnecting()
    0x000019C0 38477 3  COM_DBG_IF C: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x000019C0 38477 3  XPCOM C: ( (dsISimpleEventCallback*)16F725B8 )->onEvent()
    0x000019C0 38477 3  XPCOM R: ( (dsISimpleEventCallback*)16F725B8 )->onEvent() = 0x00000000
    0x000019C0 38477 3  COM_DBG_IF R: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x000019C0 38477 3  COM_DBG_IF C: class CoBreakpointManager::OnBatchUpdateStarted()
    0x000019C0 38477 3  COM_DBG_IF R: class CoBreakpointManager::OnBatchUpdateStarted()
    0x000019C0 38477 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class DebuggerListeners
    0x000019C0 38477 3  COM_DBG_IF C: class DSP_CO_USER::OnRemoveDebugState()
    0x000019C0 38477 3  COM_DBG_IF R: class DSP_CO_USER::OnRemoveDebugState()
    0x00002BA8 38477 3 CORTEX_M4_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 38477 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 38477 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 38477 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 465 ms
    0x00002BA8 38477 4  POLL I: TimeToSleep() found shorter sleep time of 465 ms from class DevicePollFrequencyManager
    0x00002BA8 38477 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x00002BA8 38477 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 38477 4  POLL I: Yielding to other threads
    0x00002BA8 38477 3 CORTEX_M4_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x00002BA8 38477 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class DebuggerListeners
    0x00002BA8 38477 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 38477 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 38477 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 465 ms
    0x00002BA8 38477 4  POLL I: TimeToSleep() found shorter sleep time of 465 ms from class DevicePollFrequencyManager
    0x00002BA8 38477 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x00002BA8 38477 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 38477 4  POLL I: Yielding to other threads
    0x00002BA8 38477 3 CORTEX_M4_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x00002BA8 38477 3  COM_DBG_IF C: class CoBreakpointManager::OnBatchUpdateFinished()
    0x00002BA8 38477 3  COM_DBG_IF R: class CoBreakpointManager::OnBatchUpdateFinished()
    0x00002BA8 38477 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 38477 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 38477 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 465 ms
    0x00002BA8 38477 4  POLL I: TimeToSleep() found shorter sleep time of 465 ms from class DevicePollFrequencyManager
    0x00002BA8 38477 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x00002BA8 38477 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 38477 4  POLL I: Yielding to other threads
    0x00002BA8 38477 3 CORTEX_M4_0 POLL C: Polling with state CPU_ST_DISCONNECT and status EVENT_DSP_HALT
    0x00002BA8 38477 3 CORTEX_M4_0 GTI C: GTI_DONE_REMOVING_DEBUG_STATE( 0x101C1208 )
    0x00002BA8 38477 3 CORTEX_M4_0 GTI R: GTI_DONE_REMOVING_DEBUG_STATE( 0x101C1208 ) = 0x00000000
    0x000019C0 38477 3  XPCOM R: ( (dsIConnectDisconnect*)125EB74C )->disconnect( true ) = 0x00000000
    0x00002BA8 38477 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6ECF8 = 0x00000000, *0x0FB6ECD8 = 0x00000000, *0x0FB6ECF4 = 0x00000000, *0x0FB6ECD0 = 0x00000000, *0x0FB6ECF0 = 0x00000000, *0x0FB6ECEC = 0x00000000, *0x0FB6ECE4 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x00002BA8 38477 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6ECF8 = 0x00000000, *0x0FB6ECD8 = 0x00000000, *0x0FB6ECF4 = 0x00000000, *0x0FB6ECD0 = 0x00000002, *0x0FB6ECF0 = 0x00000000, *0x0FB6ECEC = 0x00000008, *0x0FB6ECE4 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x00002BA8 38478 3 CORTEX_M4_0 GTI C: GTI_DISCONNECT( 0x101C1208 )
    0x00002BA8 38533 3 CORTEX_M4_0 GTI R: GTI_DISCONNECT( 0x101C1208 ) = 0x00000000
    0x00002BA8 38533 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6ECF8 = 0x00000000, *0x0FB6ECD8 = 0x00000000, *0x0FB6ECF4 = 0x00000000, *0x0FB6ECD0 = 0x00000000, *0x0FB6ECF0 = 0x00000000, *0x0FB6ECEC = 0x00000000, *0x0FB6ECE4 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x00002BA8 38533 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x101C1208, *0x0FB6ECF8 = 0x00000000, *0x0FB6ECD8 = 0x00000000, *0x0FB6ECF4 = 0x00000000, *0x0FB6ECD0 = 0x00000002, *0x0FB6ECF0 = 0x00000000, *0x0FB6ECEC = 0x00000008, *0x0FB6ECE4 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x00002BA8 38533 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x101C1208, *0x0FB6F30C = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x00002BA8 38533 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x101C1208, *0x0FB6F30C = { 1, 100, 202, 301, 401, 0, 0, 0 } ) = 0x00000000
    0x00002BA8 38533 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x00002BA8 38533 3 CORTEX_M4_0 STATE I: Connection state changed to 2
    0x00002BA8 38533 3 CORTEX_M4_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eDisconnected )
    0x00002BA8 38533 3 CORTEX_M4_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eDisconnected )
    0x00002BA8 38533 3 CS_DAP_0 SYNC C: IsSyncReady(): syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 38533 3 CS_DAP_0 SYNC R: IsSyncReady() = 0: syncAction = 0x00000000, syncSetup = 0x00000000, syncState = SYNC_FREE_RUN
    0x00002BA8 38533 3 CS_DAP_0 STATE I: Connection state changed to 3
    0x00002BA8 38533 3 CS_DAP_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::ePreDisconnect )
    0x00002BA8 38533 3 CS_DAP_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::ePreDisconnect )
    0x00002BA8 38533 3  COM_DBG_IF C: class DSP_CO_USER::OnDisconnecting()
    0x00002BA8 38533 3  XPCOM C: ( (dsIBooleanEventCallback*)12240648 )->onEvent( false )
    0x00002BA8 38533 3  XPCOM C: ( (dsIRefreshControl*)125EB97C )->beginRefresh( 0FB6DC88 )
    0x00002BA8 38533 3  XPCOM R: ( (dsIRefreshControl*)125EB97C )->beginRefresh( *0FB6DC88 = 0x00000000 ) = 0x00000000
    0x00002BA8 38533 3  XPCOM R: ( (dsIBooleanEventCallback*)12240648 )->onEvent( false ) = 0x00000000
    0x00002BA8 38533 3  COM_DBG_IF R: class DSP_CO_USER::OnDisconnecting()
    0x00002BA8 38533 3  COM_DBG_IF C: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x00002BA8 38533 3  XPCOM C: ( (dsISimpleEventCallback*)12240CC8 )->onEvent()
    0x00002BA8 38533 3  XPCOM R: ( (dsISimpleEventCallback*)12240CC8 )->onEvent() = 0x00000000
    0x00002BA8 38533 3  COM_DBG_IF R: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x00002BA8 38534 3  COM_DBG_IF C: class CoBreakpointManager::OnBatchUpdateStarted()
    0x00002BA8 38534 3  COM_DBG_IF R: class CoBreakpointManager::OnBatchUpdateStarted()
    0x00002BA8 38534 3 CS_DAP_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class DebuggerListeners
    0x00002BA8 38534 3  COM_DBG_IF C: class DSP_CO_USER::OnRemoveDebugState()
    0x00002BA8 38534 3  COM_DBG_IF R: class DSP_CO_USER::OnRemoveDebugState()
    0x00002BA8 38534 3  COM_DBG_IF C: class DSP_CO_USER::OnDisconnected()
    0x00002BA8 38534 3  XPCOM C: ( (dsISimpleEventCallback*)16F722B8 )->onEvent()
    0x00002BA8 38534 3  XPCOM R: ( (dsISimpleEventCallback*)16F722B8 )->onEvent() = 0x00000000
    0x00002BA8 38534 3  COM_DBG_IF R: class DSP_CO_USER::OnDisconnected()
    0x00002BA8 38534 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 38534 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 38534 4 CS_DAP_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x00002BA8 38534 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 38534 4  POLL I: Yielding to other threads
    0x00002BA8 38534 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 38534 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 38534 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 38534 4 CS_DAP_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x00002BA8 38534 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 38534 4  POLL I: Yielding to other threads
    0x00002BA8 38534 3 CS_DAP_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x00002BA8 38534 3 CS_DAP_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class DebuggerListeners
    0x00002BA8 38534 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 38534 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 38534 4 CS_DAP_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x00002BA8 38534 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 38534 4  POLL I: Yielding to other threads
    0x00002BA8 38534 3 CS_DAP_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x00002BA8 38534 3  COM_DBG_IF C: class CoBreakpointManager::OnBatchUpdateFinished()
    0x00002BA8 38534 3  COM_DBG_IF R: class CoBreakpointManager::OnBatchUpdateFinished()
    0x00002BA8 38534 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 38534 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 38534 4 CS_DAP_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x00002BA8 38534 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 38534 4  POLL I: Yielding to other threads
    0x00002BA8 38534 3 CS_DAP_0 POLL C: Polling with state CPU_ST_DISCONNECT and status EVENT_DSP_HALT
    0x00002BA8 38534 3 CS_DAP_0 GTI C: GTI_DONE_REMOVING_DEBUG_STATE( 0x127D48F0 )
    0x00002BA8 38534 3 CS_DAP_0 GTI R: GTI_DONE_REMOVING_DEBUG_STATE( 0x127D48F0 ) = 0x00000000
    0x00002BA8 38534 3 CS_DAP_0 GTI C: GTI_GETERRSTR_EX3( 0x127D48F0, *0x0FB6ECF8 = 0x00000000, *0x0FB6ECD8 = 0x00000000, *0x0FB6ECF4 = 0x00000000, *0x0FB6ECD0 = 0x00000000, *0x0FB6ECF0 = 0x00000000, *0x0FB6ECEC = 0x00000000, *0x0FB6ECE4 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x00002BA8 38534 3 CS_DAP_0 GTI R: GTI_GETERRSTR_EX3( 0x127D48F0, *0x0FB6ECF8 = 0x00000000, *0x0FB6ECD8 = 0x00000000, *0x0FB6ECF4 = 0x00000000, *0x0FB6ECD0 = 0x00000002, *0x0FB6ECF0 = 0x00000000, *0x0FB6ECEC = 0x00000008, *0x0FB6ECE4 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x00002BA8 38534 3 CS_DAP_0 GTI C: GTI_DISCONNECT( 0x127D48F0 )
    0x000019C0 38981 3  XPCOM C: ( (dsIProcessorInfo*)0050F498 )->Partnum( 0018EB88 )
    0x00002BA8 39809 3 CS_DAP_0 GTI R: GTI_DISCONNECT( 0x127D48F0 ) = 0x00000000
    0x00002BA8 39809 3 CS_DAP_0 GTI C: GTI_GETERRSTR_EX3( 0x127D48F0, *0x0FB6ECF8 = 0x00000000, *0x0FB6ECD8 = 0x00000000, *0x0FB6ECF4 = 0x00000000, *0x0FB6ECD0 = 0x00000000, *0x0FB6ECF0 = 0x00000000, *0x0FB6ECEC = 0x00000000, *0x0FB6ECE4 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x00002BA8 39809 3 CS_DAP_0 GTI R: GTI_GETERRSTR_EX3( 0x127D48F0, *0x0FB6ECF8 = 0x00000000, *0x0FB6ECD8 = 0x00000000, *0x0FB6ECF4 = 0x00000000, *0x0FB6ECD0 = 0x00000002, *0x0FB6ECF0 = 0x00000000, *0x0FB6ECEC = 0x00000008, *0x0FB6ECE4 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x00002BA8 39810 3 CS_DAP_0 GTI C: GTI_STAT( 0x127D48F0 )
    0x00002BA8 39810 3 CS_DAP_0 GTI R: GTI_STAT( 0x127D48F0 ) = 0x0000000B
    0x00002BA8 39810 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x00002BA8 39810 3 CS_DAP_0 STATE I: Connection state changed to 2
    0x00002BA8 39810 3 CS_DAP_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eDisconnected )
    0x00002BA8 39810 3 CS_DAP_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eDisconnected )
    0x00002BA8 39810 3  COM_DBG_IF C: class DSP_CO_USER::OnDisconnected()
    0x00002BA8 39810 3  XPCOM C: ( (dsISimpleEventCallback*)12240608 )->onEvent()
    0x00002BA8 39810 3  XPCOM R: ( (dsISimpleEventCallback*)12240608 )->onEvent() = 0x00000000
    0x00002BA8 39810 3  COM_DBG_IF R: class DSP_CO_USER::OnDisconnected()
    0x00002BA8 39810 4 CS_DAP_0 POLL I: Yielding to other threads
    0x000019C0 39810 3  XPCOM R: ( (dsIProcessorInfo*)0050F498 )->Partnum( *0018EB88 = TM4C123GE6PM ) = 0x00000000
    0x00002BA8 39810 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 39810 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 39810 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 39810 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4943 ms
    0x000019C0 39811 3  XPCOM C: ( (dsIProcessorInfo*)0050F498 )->Partnum( 0018EB88 )
    0x000019C0 39811 3  XPCOM R: ( (dsIProcessorInfo*)0050F498 )->Partnum( *0018EB88 = TM4C123GE6PM ) = 0x00000000
    0x000019C0 39811 3  XPCOM C: ( (dsITarget*)0050F488 )->TargetType( 0018EB88 )
    0x000019C0 39811 3  XPCOM R: ( (dsITarget*)0050F488 )->TargetType( *0018EB88 = TMS470REX ) = 0x00000000
    0x000019C0 39811 3  XPCOM C: ( (dsIDebugPropertiesManager*)005A3E30 )->getDebugPropertiesWithAttribute( Texas Instruments XDS100v2 USB Emulator_0/CORTEX_M4_0, TMS470REX, partnum=TM4C123GE6PM, 0018EB98 )
    0x000019C0 39812 3  XPCOM R: ( (dsIDebugPropertiesManager*)005A3E30 )->getDebugPropertiesWithAttribute( Texas Instruments XDS100v2 USB Emulator_0/CORTEX_M4_0, TMS470REX, partnum=TM4C123GE6PM, *0018EB98 = 125D0AF0 ) = 0x00000000
    0x000019C0 39812 3  XPCOM C: ( (dsIDebugProperties*)125D0AF0 )->queryInterface( 170B40F8, 0018EB48 )
    0x000019C0 39812 3  XPCOM R: ( (dsIDebugProperties*)125D0AF0 )->queryInterface( 170B40F8, *0018EB48 = 125D0AF4 ) = 0x00000000
    0x000019C0 39812 3  XPCOM C: ( (dsIDebugPropertiesEvents*)125D0AF4 )->onDisableStatusChanged( 0018EB38 )
    0x000019C0 39812 3  XPCOM R: ( (dsIDebugPropertiesEvents*)125D0AF4 )->onDisableStatusChanged( *0018EB38 = 16EE8B58 ) = 0x00000000
    0x000019C0 39812 3  XPCOM C: ( (dsIDebugPropertiesEvents*)125D0AF4 )->onPropertyValueChanged( 0018EB38 )
    0x000019C0 39812 3  XPCOM R: ( (dsIDebugPropertiesEvents*)125D0AF4 )->onPropertyValueChanged( *0018EB38 = 16EE8BD8 ) = 0x00000000
    0x000019C0 39812 3  XPCOM C: ( (dsIDebugProperties*)125D0AF0 )->loadSettings(  )
    0x000019C0 39813 3  XPCOM R: ( (dsIDebugProperties*)125D0AF0 )->loadSettings(  ) = 0x00000000
    0x000019C0 39813 3  XPCOM C: ( (dsIDebugProperties*)125D0AF0 )->getProperty( VerifyAfterProgramLoad, 0018EB38 )
    0x000019C0 39813 3  XPCOM R: ( (dsIDebugProperties*)125D0AF0 )->getProperty( VerifyAfterProgramLoad, *0018EB38 = 124124E0 ) = 0x00000000
    0x000019C0 39813 3  XPCOM C: ( (dsIProperty*)124124E0 )->getPropertyType( 0018EA88 )
    0x000019C0 39813 3  XPCOM R: ( (dsIProperty*)124124E0 )->getPropertyType( *0018EA88 = 0x00000003 ) = 0x00000000
    0x000019C0 39813 3  XPCOM C: ( (dsIProperty*)124124E0 )->queryInterface( 170B40F8, 0018EA88 )
    0x000019C0 39813 3  XPCOM R: ( (dsIProperty*)124124E0 )->queryInterface( 170B40F8, *0018EA88 = 12412584 ) = 0x00000000
    0x000019C0 39813 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B40F8, 0018EA88 )
    0x000019C0 39813 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B40F8, *0018EA88 = 1241254C ) = 0x00000000
    0x000019C0 39813 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B40F8, 0018EA88 )
    0x000019C0 39813 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B40F8, *0018EA88 = 12412584 ) = 0x00000000
    0x000019C0 39813 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( 0018EAF8 )
    0x000019C0 39813 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39813 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000000, 0018EAF8 )
    0x000019C0 39813 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000000, *0018EAF8 = Full verification ) = 0x00000000
    0x000019C0 39813 3  XPCOM C: ( (dsIStringProperty*)1241254C )->CurValue( Full verification )
    0x000019C0 39813 3  XPCOM R: ( (dsIStringProperty*)1241254C )->CurValue( Full verification ) = 0x00000000
    0x000019C0 39813 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( 0018EAF8 )
    0x000019C0 39813 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39813 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000001, 0018EAF8 )
    0x000019C0 39813 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000001, *0018EAF8 = Fast verification ) = 0x00000000
    0x000019C0 39813 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( 0018EAF8 )
    0x000019C0 39813 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39813 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000002, 0018EAF8 )
    0x000019C0 39813 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->getAllowedValue( 0x00000002, *0018EAF8 = No verification ) = 0x00000000
    0x000019C0 39813 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( 0018EAF8 )
    0x000019C0 39813 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->NumAllowedValues( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39813 3  XPCOM C: ( (dsIDebugProperties*)125D0AF0 )->getProperty( AutoRunToLabelOnRestart, 0018EB68 )
    0x000019C0 39813 3  XPCOM R: ( (dsIDebugProperties*)125D0AF0 )->getProperty( AutoRunToLabelOnRestart, *0018EB68 = 1702FDB8 ) = 0x00000000
    0x000019C0 39813 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->getPropertyType( 0018EAB8 )
    0x000019C0 39813 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->getPropertyType( *0018EAB8 = 0x00000000 ) = 0x00000000
    0x000019C0 39813 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->queryInterface( 170B40F8, 0018EAB8 )
    0x000019C0 39813 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->queryInterface( 170B40F8, *0018EAB8 = 1702FE24 ) = 0x00000000
    0x000019C0 39813 3  XPCOM C: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 170B40F8, 0018EAB8 )
    0x000019C0 39814 3  XPCOM R: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 170B40F8, *0018EAB8 = 1702FE24 ) = 0x00000000
    0x000019C0 39814 3  XPCOM C: ( (dsIBooleanProperty*)1702FE24 )->CurValue( false )
    0x000019C0 39814 3  XPCOM R: ( (dsIBooleanProperty*)1702FE24 )->CurValue( false ) = 0x00000000
    0x000019C0 39814 3  XPCOM C: ( (dsIDebugProperties*)125D0AF0 )->getRootMenuElements( 0018EB88 )
    0x000019C0 39814 3  XPCOM R: ( (dsIDebugProperties*)125D0AF0 )->getRootMenuElements( *0018EB88 = 1862CE08 ) = 0x00000000
    0x000019C0 39814 3  XPCOM C: ( (dsIProperties*)1862CE08 )->Count( 0018EB78 )
    0x000019C0 39814 3  XPCOM R: ( (dsIProperties*)1862CE08 )->Count( *0018EB78 = 0x00000005 ) = 0x00000000
    0x000019C0 39814 3  XPCOM C: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000000, 0018EB58 )
    0x000019C0 39814 3  XPCOM R: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000000, *0018EB58 = 170D7380 ) = 0x00000000
    0x000019C0 39814 3  XPCOM C: ( (dsIProperty*)170D7380 )->getPropertyType( 0018EAD8 )
    0x000019C0 39814 3  XPCOM R: ( (dsIProperty*)170D7380 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 39814 3  XPCOM C: ( (dsIProperty*)170D7380 )->queryInterface( 170B4530, 0018EAD8 )
    0x000019C0 39814 3  XPCOM R: ( (dsIProperty*)170D7380 )->queryInterface( 170B4530, *0018EAD8 = 170D73EC ) = 0x00000000
    0x000019C0 39814 3  XPCOM C: ( (dsINode*)170D73EC )->queryInterface( 170B4530, 0018EAD8 )
    0x000019C0 39814 3  XPCOM R: ( (dsINode*)170D73EC )->queryInterface( 170B4530, *0018EAD8 = 170D73EC ) = 0x00000000
    0x000019C0 39814 3  XPCOM C: ( (dsINode*)170D73EC )->Name( 0018EB48 )
    0x000019C0 39814 3  XPCOM R: ( (dsINode*)170D73EC )->Name( *0018EB48 = Program/Memory Load Options ) = 0x00000000
    0x000019C0 39814 3  XPCOM C: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000000, 0018EB58 )
    0x000019C0 39814 3  XPCOM R: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000000, *0018EB58 = 170D7380 ) = 0x00000000
    0x000019C0 39814 3  XPCOM C: ( (dsIProperty*)170D7380 )->getPropertyType( 0018EAD8 )
    0x000019C0 39814 3  XPCOM R: ( (dsIProperty*)170D7380 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 39814 3  XPCOM C: ( (dsIProperty*)170D7380 )->queryInterface( 170B4530, 0018EAD8 )
    0x000019C0 39814 3  XPCOM R: ( (dsIProperty*)170D7380 )->queryInterface( 170B4530, *0018EAD8 = 170D73EC ) = 0x00000000
    0x000019C0 39814 3  XPCOM C: ( (dsINode*)170D73EC )->queryInterface( 170B4530, 0018EAD8 )
    0x000019C0 39814 3  XPCOM R: ( (dsINode*)170D73EC )->queryInterface( 170B4530, *0018EAD8 = 170D73EC ) = 0x00000000
    0x000019C0 39814 3  XPCOM C: ( (dsINode*)170D73EC )->getChildren( 0018EB18 )
    0x000019C0 39814 3  XPCOM R: ( (dsINode*)170D73EC )->getChildren( *0018EB18 = 1862BD58 ) = 0x00000000
    0x000019C0 39814 3  XPCOM C: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000000, 0018EB58 )
    0x000019C0 39814 3  XPCOM R: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000000, *0018EB58 = 170D7380 ) = 0x00000000
    0x000019C0 39814 3  XPCOM C: ( (dsIProperty*)170D7380 )->getPropertyType( 0018EAD8 )
    0x000019C0 39814 3  XPCOM R: ( (dsIProperty*)170D7380 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 39814 3  XPCOM C: ( (dsIProperty*)170D7380 )->queryInterface( 170B40F8, 0018EAD8 )
    0x000019C0 39814 3  XPCOM R: ( (dsIProperty*)170D7380 )->queryInterface( 170B40F8, *0018EAD8 = 170D73EC ) = 0x00000000
    0x000019C0 39814 3  XPCOM C: ( (dsINode*)170D73EC )->queryInterface( 170B40F8, 0018EAD8 )
    0x000019C0 39814 3  XPCOM R: ( (dsINode*)170D73EC )->queryInterface( 170B40F8, *0018EAD8 = 170D73EC ) = 0x00000000
    0x000019C0 39814 3  XPCOM C: ( (dsINode*)170D73EC )->getChildren( 0018EB18 )
    0x000019C0 39814 3  XPCOM R: ( (dsINode*)170D73EC )->getChildren( *0018EB18 = 1862CC28 ) = 0x00000000
    0x000019C0 39814 3  XPCOM C: ( (dsIProperties*)1862CC28 )->Count( 0018EB78 )
    0x000019C0 39815 3  XPCOM R: ( (dsIProperties*)1862CC28 )->Count( *0018EB78 = 0x00000005 ) = 0x00000000
    0x000019C0 39815 3  XPCOM C: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000000, 0018EB58 )
    0x000019C0 39815 3  XPCOM R: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000000, *0018EB58 = 170D7380 ) = 0x00000000
    0x000019C0 39815 3  XPCOM C: ( (dsIProperty*)170D7380 )->getPropertyType( 0018EAD8 )
    0x000019C0 39815 3  XPCOM R: ( (dsIProperty*)170D7380 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 39815 3  XPCOM C: ( (dsIProperty*)170D7380 )->queryInterface( 170B4530, 0018EAD8 )
    0x000019C0 39815 3  XPCOM R: ( (dsIProperty*)170D7380 )->queryInterface( 170B4530, *0018EAD8 = 170D73EC ) = 0x00000000
    0x000019C0 39815 3  XPCOM C: ( (dsINode*)170D73EC )->queryInterface( 170B4530, 0018EAD8 )
    0x000019C0 39815 3  XPCOM R: ( (dsINode*)170D73EC )->queryInterface( 170B4530, *0018EAD8 = 170D73EC ) = 0x00000000
    0x000019C0 39815 3  XPCOM C: ( (dsINode*)170D73EC )->getChildren( 0018EB18 )
    0x000019C0 39815 3  XPCOM R: ( (dsINode*)170D73EC )->getChildren( *0018EB18 = 1862BCF8 ) = 0x00000000
    0x000019C0 39815 3  XPCOM C: ( (dsIProperties*)1862BCF8 )->Count( 0018EB38 )
    0x000019C0 39815 3  XPCOM R: ( (dsIProperties*)1862BCF8 )->Count( *0018EB38 = 0x00000005 ) = 0x00000000
    0x000019C0 39815 3  XPCOM C: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 39815 3  XPCOM R: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000000, *0018EB18 = 17132DC0 ) = 0x00000000
    0x000019C0 39815 3  XPCOM C: ( (dsIProperty*)17132DC0 )->getPropertyType( 0018EA98 )
    0x000019C0 39815 3  XPCOM R: ( (dsIProperty*)17132DC0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39815 3  XPCOM C: ( (dsIProperty*)17132DC0 )->queryInterface( 170B40F8, 0018EA98 )
    0x000019C0 39815 3  XPCOM R: ( (dsIProperty*)17132DC0 )->queryInterface( 170B40F8, *0018EA98 = 17132E2C ) = 0x00000000
    0x000019C0 39815 3  XPCOM C: ( (dsIGroup*)17132E2C )->queryInterface( 170B40F8, 0018EA98 )
    0x000019C0 39815 3  XPCOM R: ( (dsIGroup*)17132E2C )->queryInterface( 170B40F8, *0018EA98 = 17132E2C ) = 0x00000000
    0x000019C0 39815 3  XPCOM C: ( (dsIGroup*)17132E2C )->Name( 0018EB08 )
    0x000019C0 39815 3  XPCOM R: ( (dsIGroup*)17132E2C )->Name( *0018EB08 = Program/Memory Load Options ) = 0x00000000
    0x000019C0 39815 3  XPCOM C: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 39815 3  XPCOM R: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000000, *0018EB18 = 17132DC0 ) = 0x00000000
    0x000019C0 39815 3  XPCOM C: ( (dsIProperty*)17132DC0 )->getPropertyType( 0018EA98 )
    0x000019C0 39815 3  XPCOM R: ( (dsIProperty*)17132DC0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39815 3  XPCOM C: ( (dsIProperty*)17132DC0 )->queryInterface( 170B40F8, 0018EA98 )
    0x000019C0 39815 3  XPCOM R: ( (dsIProperty*)17132DC0 )->queryInterface( 170B40F8, *0018EA98 = 17132E2C ) = 0x00000000
    0x000019C0 39815 3  XPCOM C: ( (dsIGroup*)17132E2C )->queryInterface( 170B40F8, 0018EA98 )
    0x000019C0 39815 3  XPCOM R: ( (dsIGroup*)17132E2C )->queryInterface( 170B40F8, *0018EA98 = 17132E2C ) = 0x00000000
    0x000019C0 39815 3  XPCOM C: ( (dsIGroup*)17132E2C )->getChildren( 0018EAD8 )
    0x000019C0 39815 3  XPCOM R: ( (dsIGroup*)17132E2C )->getChildren( *0018EAD8 = 1862B668 ) = 0x00000000
    0x000019C0 39815 3  XPCOM C: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 39815 3  XPCOM R: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000000, *0018EB18 = 17132DC0 ) = 0x00000000
    0x000019C0 39817 3  XPCOM C: ( (dsIProperty*)17132DC0 )->getPropertyType( 0018EA98 )
    0x000019C0 39817 3  XPCOM R: ( (dsIProperty*)17132DC0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39817 3  XPCOM C: ( (dsIProperty*)17132DC0 )->queryInterface( 170B4530, 0018EA98 )
    0x000019C0 39817 3  XPCOM R: ( (dsIProperty*)17132DC0 )->queryInterface( 170B4530, *0018EA98 = 17132E2C ) = 0x00000000
    0x000019C0 39818 3  XPCOM C: ( (dsIGroup*)17132E2C )->queryInterface( 170B4530, 0018EA98 )
    0x000019C0 39818 3  XPCOM R: ( (dsIGroup*)17132E2C )->queryInterface( 170B4530, *0018EA98 = 17132E2C ) = 0x00000000
    0x000019C0 39818 3  XPCOM C: ( (dsIGroup*)17132E2C )->getChildren( 0018EAD8 )
    0x000019C0 39818 3  XPCOM R: ( (dsIGroup*)17132E2C )->getChildren( *0018EAD8 = 1862B788 ) = 0x00000000
    0x000019C0 39818 3  XPCOM C: ( (dsIProperties*)1862B788 )->Count( 0018EB38 )
    0x000019C0 39818 3  XPCOM R: ( (dsIProperties*)1862B788 )->Count( *0018EB38 = 0x00000005 ) = 0x00000000
    0x000019C0 39818 3  XPCOM C: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 39818 3  XPCOM R: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000000, *0018EB18 = 17132DC0 ) = 0x00000000
    0x000019C0 39818 3  XPCOM C: ( (dsIProperty*)17132DC0 )->getPropertyType( 0018EA98 )
    0x000019C0 39818 3  XPCOM R: ( (dsIProperty*)17132DC0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39818 3  XPCOM C: ( (dsIProperty*)17132DC0 )->queryInterface( 170B40F8, 0018EA98 )
    0x000019C0 39818 3  XPCOM R: ( (dsIProperty*)17132DC0 )->queryInterface( 170B40F8, *0018EA98 = 17132E2C ) = 0x00000000
    0x000019C0 39818 3  XPCOM C: ( (dsIGroup*)17132E2C )->queryInterface( 170B40F8, 0018EA98 )
    0x000019C0 39818 3  XPCOM R: ( (dsIGroup*)17132E2C )->queryInterface( 170B40F8, *0018EA98 = 17132E2C ) = 0x00000000
    0x000019C0 39818 3  XPCOM C: ( (dsIGroup*)17132E2C )->getChildren( 0018EAD8 )
    0x000019C0 39818 3  XPCOM R: ( (dsIGroup*)17132E2C )->getChildren( *0018EAD8 = 186941C8 ) = 0x00000000
    0x000019C0 39818 3  XPCOM C: ( (dsIProperties*)186941C8 )->Count( 0018EAF8 )
    0x000019C0 39818 3  XPCOM R: ( (dsIProperties*)186941C8 )->Count( *0018EAF8 = 0x00000005 ) = 0x00000000
    0x000019C0 39818 3  XPCOM C: ( (dsIProperties*)186941C8 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 39818 3  XPCOM R: ( (dsIProperties*)186941C8 )->getProperty( 0x00000000, *0018EAD8 = 170E7DF0 ) = 0x00000000
    0x00002198 39818 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17034514)
    0x00002198 39818 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17034064)
    0x000019C0 39818 3  XPCOM C: ( (dsIProperty*)170E7DF0 )->getPropertyType( 0018EA58 )
    0x00002198 39818 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033164)
    0x000019C0 39818 3  XPCOM R: ( (dsIProperty*)170E7DF0 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39818 3  XPCOM C: ( (dsIProperty*)170E7DF0 )->queryInterface( 170B3870, 0018EA58 )
    0x000019C0 39818 3  XPCOM R: ( (dsIProperty*)170E7DF0 )->queryInterface( 170B3870, *0018EA58 = 170E7E5C ) = 0x00000000
    0x000019C0 39818 3  XPCOM C: ( (dsIBooleanProperty*)170E7E5C )->queryInterface( 170B3870, 0018EA58 )
    0x000019C0 39818 3  XPCOM R: ( (dsIBooleanProperty*)170E7E5C )->queryInterface( 170B3870, *0018EA58 = 170E7E5C ) = 0x00000000
    0x00002198 39818 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862B6CC)
    0x000019C0 39818 3  XPCOM C: ( (dsIBooleanProperty*)170E7E5C )->Name( 0018EAC8 )
    0x000019C0 39818 3  XPCOM R: ( (dsIBooleanProperty*)170E7E5C )->Name( *0018EAC8 = Disable all breakpoints when loading a different program ) = 0x00000000
    0x000019C0 39818 3  XPCOM C: ( (dsIProperties*)186941C8 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 39818 3  XPCOM R: ( (dsIProperties*)186941C8 )->getProperty( 0x00000000, *0018EAD8 = 170E7DF0 ) = 0x00000000
    0x00002198 39818 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862CE6C)
    0x00002198 39818 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 170332E4)
    0x000019C0 39818 3  XPCOM C: ( (dsIProperty*)170E7DF0 )->getPropertyType( 0018EA58 )
    0x000019C0 39819 3  XPCOM R: ( (dsIProperty*)170E7DF0 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39819 3  XPCOM C: ( (dsIProperty*)170E7DF0 )->queryInterface( 125E6068, 0018EA58 )
    0x000019C0 39819 3  XPCOM R: ( (dsIProperty*)170E7DF0 )->queryInterface( 125E6068, *0018EA58 = 170E7E5C ) = 0x00000000
    0x00002198 39819 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862CF2C)
    0x000019C0 39819 3  XPCOM C: ( (dsIBooleanProperty*)170E7E5C )->queryInterface( 125E6068, 0018EA58 )
    0x000019C0 39819 3  XPCOM R: ( (dsIBooleanProperty*)170E7E5C )->queryInterface( 125E6068, *0018EA58 = 170E7E5C ) = 0x00000000
    0x000019C0 39819 3  XPCOM C: ( (dsIProperties*)186941C8 )->Count( 0018EAF8 )
    0x000019C0 39819 3  XPCOM R: ( (dsIProperties*)186941C8 )->Count( *0018EAF8 = 0x00000005 ) = 0x00000000
    0x000019C0 39819 3  XPCOM C: ( (dsIProperties*)186941C8 )->getProperty( 0x00000001, 0018EAD8 )
    0x00002198 39819 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862C44C)
    0x00002198 39819 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862B66C)
    0x00002198 39819 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17034544)
    0x000019C0 39819 3  XPCOM R: ( (dsIProperties*)186941C8 )->getProperty( 0x00000001, *0018EAD8 = 170E7E78 ) = 0x00000000
    0x00002198 39819 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 170336A4)
    0x00002198 39819 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862D01C)
    0x000019C0 39819 3  XPCOM C: ( (dsIProperty*)170E7E78 )->getPropertyType( 0018EA58 )
    0x000019C0 39819 3  XPCOM R: ( (dsIProperty*)170E7E78 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39819 3  XPCOM C: ( (dsIProperty*)170E7E78 )->queryInterface( 170B40C8, 0018EA58 )
    0x000019C0 39819 3  XPCOM R: ( (dsIProperty*)170E7E78 )->queryInterface( 170B40C8, *0018EA58 = 170E7EE4 ) = 0x00000000
    0x00002198 39819 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033EB4)
    0x00002198 39819 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862C32C)
    0x00002198 39819 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17034E14)
    0x00002198 39819 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17034094)
    0x00002198 39819 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033734)
    0x00002198 39819 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862CFEC)
    0x00002198 39819 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862C38C)
    0x00002198 39819 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862C2CC)
    0x00002198 39819 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 170343C4)
    0x00002198 39819 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862CEFC)
    0x00002198 39819 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17034A54)
    0x00002198 39819 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033AC4)
    0x000019C0 39819 3  XPCOM C: ( (dsIBooleanProperty*)170E7EE4 )->queryInterface( 170B40C8, 0018EA58 )
    0x000019C0 39819 3  XPCOM R: ( (dsIBooleanProperty*)170E7EE4 )->queryInterface( 170B40C8, *0018EA58 = 170E7EE4 ) = 0x00000000
    0x00002198 39819 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862CFBC)
    0x000019C0 39819 3  XPCOM C: ( (dsIBooleanProperty*)170E7EE4 )->Name( 0018EAC8 )
    0x000019C0 39819 3  XPCOM R: ( (dsIBooleanProperty*)170E7EE4 )->Name( *0018EAC8 = Halt at program termination (requires setting a breakpoint) ) = 0x00000000
    0x000019C0 39819 3  XPCOM C: ( (dsIProperties*)186941C8 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 39819 3  XPCOM R: ( (dsIProperties*)186941C8 )->getProperty( 0x00000001, *0018EAD8 = 170E7E78 ) = 0x00000000
    0x00002198 39819 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862CE9C)
    0x000019C0 39820 3  XPCOM C: ( (dsIProperty*)170E7E78 )->getPropertyType( 0018EA58 )
    0x000019C0 39820 3  XPCOM R: ( (dsIProperty*)170E7E78 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39820 3  XPCOM C: ( (dsIProperty*)170E7E78 )->queryInterface( 125E5DE0, 0018EA58 )
    0x000019C0 39820 3  XPCOM R: ( (dsIProperty*)170E7E78 )->queryInterface( 125E5DE0, *0018EA58 = 170E7EE4 ) = 0x00000000
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862C41C)
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862CF5C)
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 170340C4)
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862CC2C)
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862D0AC)
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862C3EC)
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862B4BC)
    0x000019C0 39820 3  XPCOM C: ( (dsIBooleanProperty*)170E7EE4 )->queryInterface( 125E5DE0, 0018EA58 )
    0x000019C0 39820 3  XPCOM R: ( (dsIBooleanProperty*)170E7EE4 )->queryInterface( 125E5DE0, *0018EA58 = 170E7EE4 ) = 0x00000000
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17034784)
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862B4EC)
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 170339A4)
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 170332B4)
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class CoDspValue (this = 170DE790)
    0x000019C0 39820 3  XPCOM C: ( (dsIProperties*)186941C8 )->Count( 0018EAF8 )
    0x000019C0 39820 3  XPCOM R: ( (dsIProperties*)186941C8 )->Count( *0018EAF8 = 0x00000005 ) = 0x00000000
    0x000019C0 39820 3  XPCOM C: ( (dsIProperties*)186941C8 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 39820 3  XPCOM R: ( (dsIProperties*)186941C8 )->getProperty( 0x00000002, *0018EAD8 = 1702F758 ) = 0x00000000
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862B5AC)
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 170347E4)
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862B63C)
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033494)
    0x000019C0 39820 3  XPCOM C: ( (dsIProperty*)1702F758 )->getPropertyType( 0018EA58 )
    0x000019C0 39820 3  XPCOM R: ( (dsIProperty*)1702F758 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39820 3  XPCOM C: ( (dsIProperty*)1702F758 )->queryInterface( 170B4038, 0018EA58 )
    0x000019C0 39820 3  XPCOM R: ( (dsIProperty*)1702F758 )->queryInterface( 170B4038, *0018EA58 = 1702F7C4 ) = 0x00000000
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033524)
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862D04C)
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862C3BC)
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033C14)
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033464)
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033B84)
    0x000019C0 39820 3  XPCOM C: ( (dsIBooleanProperty*)1702F7C4 )->queryInterface( 170B4038, 0018EA58 )
    0x000019C0 39820 3  XPCOM R: ( (dsIBooleanProperty*)1702F7C4 )->queryInterface( 170B4038, *0018EA58 = 1702F7C4 ) = 0x00000000
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862B18C)
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862B48C)
    0x00002198 39820 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033374)
    0x00002198 39821 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862C23C)
    0x000019C0 39821 3  XPCOM C: ( (dsIBooleanProperty*)1702F7C4 )->Name( 0018EAC8 )
    0x000019C0 39821 3  XPCOM R: ( (dsIBooleanProperty*)1702F7C4 )->Name( *0018EAC8 = Enable CIO function use (requires setting a breakpoint) ) = 0x00000000
    0x000019C0 39821 3  XPCOM C: ( (dsIProperties*)186941C8 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 39821 3  XPCOM R: ( (dsIProperties*)186941C8 )->getProperty( 0x00000002, *0018EAD8 = 1702F758 ) = 0x00000000
    0x00002198 39821 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033194)
    0x00002198 39821 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17034BD4)
    0x00002198 39821 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862CF8C)
    0x00002198 39821 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033794)
    0x00002198 39821 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862BD5C)
    0x00002198 39821 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033F14)
    0x000019C0 39821 3  XPCOM C: ( (dsIProperty*)1702F758 )->getPropertyType( 0018EA58 )
    0x000019C0 39821 3  XPCOM R: ( (dsIProperty*)1702F758 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39821 3  XPCOM C: ( (dsIProperty*)1702F758 )->queryInterface( 125E5648, 0018EA58 )
    0x000019C0 39821 3  XPCOM R: ( (dsIProperty*)1702F758 )->queryInterface( 125E5648, *0018EA58 = 1702F7C4 ) = 0x00000000
    0x00002198 39821 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 170346C4)
    0x00002198 39821 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1856F464)
    0x00002198 39821 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862CECC)
    0x00002198 39821 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862D07C)
    0x00002198 39821 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17034C04)
    0x00002198 39821 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862C26C)
    0x00002198 39821 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862B1BC)
    0x000019C0 39821 3  XPCOM C: ( (dsIBooleanProperty*)1702F7C4 )->queryInterface( 125E5648, 0018EA58 )
    0x000019C0 39821 3  XPCOM R: ( (dsIBooleanProperty*)1702F7C4 )->queryInterface( 125E5648, *0018EA58 = 1702F7C4 ) = 0x00000000
    0x00002198 39821 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 1862CE3C)
    0x00002198 39821 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17033974)
    0x00002198 39821 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17034D84)
    0x00002198 39821 5  COM_DBG_IF I: Final Release for class DbgProperties::Properties (this = 17034C64)
    0x000019C0 39821 3  XPCOM C: ( (dsIProperties*)186941C8 )->Count( 0018EAF8 )
    0x000019C0 39821 3  XPCOM R: ( (dsIProperties*)186941C8 )->Count( *0018EAF8 = 0x00000005 ) = 0x00000000
    0x000019C0 39821 3  XPCOM C: ( (dsIProperties*)186941C8 )->getProperty( 0x00000003, 0018EAD8 )
    0x000019C0 39821 3  XPCOM R: ( (dsIProperties*)186941C8 )->getProperty( 0x00000003, *0018EAD8 = 1702F7E0 ) = 0x00000000
    0x000019C0 39821 3  XPCOM C: ( (dsIProperty*)1702F7E0 )->getPropertyType( 0018EA58 )
    0x000019C0 39821 3  XPCOM R: ( (dsIProperty*)1702F7E0 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39821 3  XPCOM C: ( (dsIProperty*)1702F7E0 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39821 3  XPCOM R: ( (dsIProperty*)1702F7E0 )->queryInterface( 170B3F00, *0018EA58 = 1702F84C ) = 0x00000000
    0x000019C0 39821 3  XPCOM C: ( (dsIBooleanProperty*)1702F84C )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39821 3  XPCOM R: ( (dsIBooleanProperty*)1702F84C )->queryInterface( 170B3F00, *0018EA58 = 1702F84C ) = 0x00000000
    0x000019C0 39821 3  XPCOM C: ( (dsIBooleanProperty*)1702F84C )->Name( 0018EAC8 )
    0x000019C0 39821 3  XPCOM R: ( (dsIBooleanProperty*)1702F84C )->Name( *0018EAC8 = Enable Semihosting (requires setting a breakpoint at SVC_Handler ) ) = 0x00000000
    0x000019C0 39821 3  XPCOM C: ( (dsIProperties*)186941C8 )->getProperty( 0x00000003, 0018EAD8 )
    0x000019C0 39821 3  XPCOM R: ( (dsIProperties*)186941C8 )->getProperty( 0x00000003, *0018EAD8 = 1702F7E0 ) = 0x00000000
    0x000019C0 39821 3  XPCOM C: ( (dsIProperty*)1702F7E0 )->getPropertyType( 0018EA58 )
    0x000019C0 39822 3  XPCOM R: ( (dsIProperty*)1702F7E0 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39822 3  XPCOM C: ( (dsIProperty*)1702F7E0 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39822 3  XPCOM R: ( (dsIProperty*)1702F7E0 )->queryInterface( 170B3F00, *0018EA58 = 1702F84C ) = 0x00000000
    0x000019C0 39822 3  XPCOM C: ( (dsIBooleanProperty*)1702F84C )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39822 3  XPCOM R: ( (dsIBooleanProperty*)1702F84C )->queryInterface( 170B3F00, *0018EA58 = 1702F84C ) = 0x00000000
    0x000019C0 39822 3  XPCOM C: ( (dsIProperties*)186941C8 )->Count( 0018EAF8 )
    0x000019C0 39822 3  XPCOM R: ( (dsIProperties*)186941C8 )->Count( *0018EAF8 = 0x00000005 ) = 0x00000000
    0x000019C0 39822 3  XPCOM C: ( (dsIProperties*)186941C8 )->getProperty( 0x00000004, 0018EAD8 )
    0x000019C0 39822 3  XPCOM R: ( (dsIProperties*)186941C8 )->getProperty( 0x00000004, *0018EAD8 = 124124E0 ) = 0x00000000
    0x000019C0 39822 3  XPCOM C: ( (dsIProperty*)124124E0 )->getPropertyType( 0018EA58 )
    0x000019C0 39822 3  XPCOM R: ( (dsIProperty*)124124E0 )->getPropertyType( *0018EA58 = 0x00000003 ) = 0x00000000
    0x000019C0 39822 3  XPCOM C: ( (dsIProperty*)124124E0 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39822 3  XPCOM R: ( (dsIProperty*)124124E0 )->queryInterface( 170B3F00, *0018EA58 = 12412584 ) = 0x00000000
    0x000019C0 39822 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39822 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B3F00, *0018EA58 = 1241254C ) = 0x00000000
    0x000019C0 39822 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39822 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B3F00, *0018EA58 = 12412584 ) = 0x00000000
    0x000019C0 39822 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->Name( 0018EAC8 )
    0x000019C0 39822 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->Name( *0018EAC8 = Verification Options ) = 0x00000000
    0x000019C0 39822 3  XPCOM C: ( (dsIProperties*)186941C8 )->getProperty( 0x00000004, 0018EAD8 )
    0x000019C0 39822 3  XPCOM R: ( (dsIProperties*)186941C8 )->getProperty( 0x00000004, *0018EAD8 = 124124E0 ) = 0x00000000
    0x000019C0 39822 3  XPCOM C: ( (dsIProperty*)124124E0 )->getPropertyType( 0018EA58 )
    0x000019C0 39822 3  XPCOM R: ( (dsIProperty*)124124E0 )->getPropertyType( *0018EA58 = 0x00000003 ) = 0x00000000
    0x000019C0 39822 3  XPCOM C: ( (dsIProperty*)124124E0 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39822 3  XPCOM R: ( (dsIProperty*)124124E0 )->queryInterface( 170B3F00, *0018EA58 = 12412584 ) = 0x00000000
    0x000019C0 39822 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39822 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B3F00, *0018EA58 = 1241254C ) = 0x00000000
    0x000019C0 39822 3  XPCOM C: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39822 3  XPCOM R: ( (dsIChoiceListProperty*)12412584 )->queryInterface( 170B3F00, *0018EA58 = 12412584 ) = 0x00000000
    0x000019C0 39822 3  XPCOM C: ( (dsIProperties*)186941C8 )->Count( 0018EAF8 )
    0x000019C0 39822 3  XPCOM R: ( (dsIProperties*)186941C8 )->Count( *0018EAF8 = 0x00000005 ) = 0x00000000
    0x000019C0 39822 3  XPCOM C: ( (dsIProperties*)1862BCF8 )->Count( 0018EB38 )
    0x000019C0 39822 3  XPCOM R: ( (dsIProperties*)1862BCF8 )->Count( *0018EB38 = 0x00000005 ) = 0x00000000
    0x000019C0 39822 3  XPCOM C: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 39822 3  XPCOM R: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000001, *0018EB18 = 17133068 ) = 0x00000000
    0x000019C0 39822 3  XPCOM C: ( (dsIProperty*)17133068 )->getPropertyType( 0018EA98 )
    0x000019C0 39822 3  XPCOM R: ( (dsIProperty*)17133068 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39822 3  XPCOM C: ( (dsIProperty*)17133068 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39822 3  XPCOM R: ( (dsIProperty*)17133068 )->queryInterface( 170B3F00, *0018EA98 = 171330D4 ) = 0x00000000
    0x000019C0 39822 3  XPCOM C: ( (dsIGroup*)171330D4 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39822 3  XPCOM R: ( (dsIGroup*)171330D4 )->queryInterface( 170B3F00, *0018EA98 = 171330D4 ) = 0x00000000
    0x000019C0 39822 3  XPCOM C: ( (dsIGroup*)171330D4 )->Name( 0018EB08 )
    0x000019C0 39822 3  XPCOM R: ( (dsIGroup*)171330D4 )->Name( *0018EB08 = Connection Options ) = 0x00000000
    0x000019C0 39822 3  XPCOM C: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 39823 3  XPCOM R: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000001, *0018EB18 = 17133068 ) = 0x00000000
    0x000019C0 39823 3  XPCOM C: ( (dsIProperty*)17133068 )->getPropertyType( 0018EA98 )
    0x000019C0 39823 3  XPCOM R: ( (dsIProperty*)17133068 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39823 3  XPCOM C: ( (dsIProperty*)17133068 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39823 3  XPCOM R: ( (dsIProperty*)17133068 )->queryInterface( 170B3F00, *0018EA98 = 171330D4 ) = 0x00000000
    0x000019C0 39823 3  XPCOM C: ( (dsIGroup*)171330D4 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39823 3  XPCOM R: ( (dsIGroup*)171330D4 )->queryInterface( 170B3F00, *0018EA98 = 171330D4 ) = 0x00000000
    0x000019C0 39823 3  XPCOM C: ( (dsIGroup*)171330D4 )->getChildren( 0018EAD8 )
    0x000019C0 39823 3  XPCOM R: ( (dsIGroup*)171330D4 )->getChildren( *0018EAD8 = 17034C60 ) = 0x00000000
    0x000019C0 39823 3  XPCOM C: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 39823 3  XPCOM R: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000001, *0018EB18 = 17133068 ) = 0x00000000
    0x000019C0 39823 3  XPCOM C: ( (dsIProperty*)17133068 )->getPropertyType( 0018EA98 )
    0x000019C0 39823 3  XPCOM R: ( (dsIProperty*)17133068 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39823 3  XPCOM C: ( (dsIProperty*)17133068 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39823 3  XPCOM R: ( (dsIProperty*)17133068 )->queryInterface( 170B3F00, *0018EA98 = 171330D4 ) = 0x00000000
    0x000019C0 39823 3  XPCOM C: ( (dsIGroup*)171330D4 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39823 3  XPCOM R: ( (dsIGroup*)171330D4 )->queryInterface( 170B3F00, *0018EA98 = 171330D4 ) = 0x00000000
    0x000019C0 39823 3  XPCOM C: ( (dsIGroup*)171330D4 )->getChildren( 0018EAD8 )
    0x000019C0 39823 3  XPCOM R: ( (dsIGroup*)171330D4 )->getChildren( *0018EAD8 = 17034D80 ) = 0x00000000
    0x000019C0 39823 3  XPCOM C: ( (dsIProperties*)17034D80 )->Count( 0018EB38 )
    0x000019C0 39823 3  XPCOM R: ( (dsIProperties*)17034D80 )->Count( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 39823 3  XPCOM C: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 39823 3  XPCOM R: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000001, *0018EB18 = 17133068 ) = 0x00000000
    0x000019C0 39823 3  XPCOM C: ( (dsIProperty*)17133068 )->getPropertyType( 0018EA98 )
    0x000019C0 39823 3  XPCOM R: ( (dsIProperty*)17133068 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39823 3  XPCOM C: ( (dsIProperty*)17133068 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39823 3  XPCOM R: ( (dsIProperty*)17133068 )->queryInterface( 170B3F00, *0018EA98 = 171330D4 ) = 0x00000000
    0x000019C0 39823 3  XPCOM C: ( (dsIGroup*)171330D4 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39823 3  XPCOM R: ( (dsIGroup*)171330D4 )->queryInterface( 170B3F00, *0018EA98 = 171330D4 ) = 0x00000000
    0x000019C0 39823 3  XPCOM C: ( (dsIGroup*)171330D4 )->getChildren( 0018EAD8 )
    0x000019C0 39823 3  XPCOM R: ( (dsIGroup*)171330D4 )->getChildren( *0018EAD8 = 17033970 ) = 0x00000000
    0x000019C0 39823 3  XPCOM C: ( (dsIProperties*)17033970 )->Count( 0018EAF8 )
    0x000019C0 39823 3  XPCOM R: ( (dsIProperties*)17033970 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39823 3  XPCOM C: ( (dsIProperties*)17033970 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 39823 3  XPCOM R: ( (dsIProperties*)17033970 )->getProperty( 0x00000000, *0018EAD8 = 16F52030 ) = 0x00000000
    0x000019C0 39823 3  XPCOM C: ( (dsIProperty*)16F52030 )->getPropertyType( 0018EA58 )
    0x000019C0 39823 3  XPCOM R: ( (dsIProperty*)16F52030 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39823 3  XPCOM C: ( (dsIProperty*)16F52030 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39823 3  XPCOM R: ( (dsIProperty*)16F52030 )->queryInterface( 170B3F00, *0018EA58 = 16F5209C ) = 0x00000000
    0x000019C0 39823 3  XPCOM C: ( (dsIBooleanProperty*)16F5209C )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39823 3  XPCOM R: ( (dsIBooleanProperty*)16F5209C )->queryInterface( 170B3F00, *0018EA58 = 16F5209C ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIBooleanProperty*)16F5209C )->Name( 0018EAC8 )
    0x000019C0 39824 3  XPCOM R: ( (dsIBooleanProperty*)16F5209C )->Name( *0018EAC8 = Halt the target on a connect ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIProperties*)17033970 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 39824 3  XPCOM R: ( (dsIProperties*)17033970 )->getProperty( 0x00000000, *0018EAD8 = 16F52030 ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIProperty*)16F52030 )->getPropertyType( 0018EA58 )
    0x000019C0 39824 3  XPCOM R: ( (dsIProperty*)16F52030 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIProperty*)16F52030 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39824 3  XPCOM R: ( (dsIProperty*)16F52030 )->queryInterface( 170B3F00, *0018EA58 = 16F5209C ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIBooleanProperty*)16F5209C )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39824 3  XPCOM R: ( (dsIBooleanProperty*)16F5209C )->queryInterface( 170B3F00, *0018EA58 = 16F5209C ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIProperties*)17033970 )->Count( 0018EAF8 )
    0x000019C0 39824 3  XPCOM R: ( (dsIProperties*)17033970 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIProperties*)17033970 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 39824 3  XPCOM R: ( (dsIProperties*)17033970 )->getProperty( 0x00000001, *0018EAD8 = 16F520B8 ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIProperty*)16F520B8 )->getPropertyType( 0018EA58 )
    0x000019C0 39824 3  XPCOM R: ( (dsIProperty*)16F520B8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIProperty*)16F520B8 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39824 3  XPCOM R: ( (dsIProperty*)16F520B8 )->queryInterface( 170B3F00, *0018EA58 = 16F52124 ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIBooleanProperty*)16F52124 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39824 3  XPCOM R: ( (dsIBooleanProperty*)16F52124 )->queryInterface( 170B3F00, *0018EA58 = 16F52124 ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIBooleanProperty*)16F52124 )->Name( 0018EAC8 )
    0x000019C0 39824 3  XPCOM R: ( (dsIBooleanProperty*)16F52124 )->Name( *0018EAC8 = Reset the target on a connect ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIProperties*)17033970 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 39824 3  XPCOM R: ( (dsIProperties*)17033970 )->getProperty( 0x00000001, *0018EAD8 = 16F520B8 ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIProperty*)16F520B8 )->getPropertyType( 0018EA58 )
    0x000019C0 39824 3  XPCOM R: ( (dsIProperty*)16F520B8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIProperty*)16F520B8 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39824 3  XPCOM R: ( (dsIProperty*)16F520B8 )->queryInterface( 170B3F00, *0018EA58 = 16F52124 ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIBooleanProperty*)16F52124 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39824 3  XPCOM R: ( (dsIBooleanProperty*)16F52124 )->queryInterface( 170B3F00, *0018EA58 = 16F52124 ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIProperties*)17033970 )->Count( 0018EAF8 )
    0x000019C0 39824 3  XPCOM R: ( (dsIProperties*)17033970 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIProperties*)17033970 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 39824 3  XPCOM R: ( (dsIProperties*)17033970 )->getProperty( 0x00000002, *0018EAD8 = 16F52250 ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIProperty*)16F52250 )->getPropertyType( 0018EA58 )
    0x000019C0 39824 3  XPCOM R: ( (dsIProperty*)16F52250 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIProperty*)16F52250 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39824 3  XPCOM R: ( (dsIProperty*)16F52250 )->queryInterface( 170B3F00, *0018EA58 = 16F522BC ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIBooleanProperty*)16F522BC )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39824 3  XPCOM R: ( (dsIBooleanProperty*)16F522BC )->queryInterface( 170B3F00, *0018EA58 = 16F522BC ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIBooleanProperty*)16F522BC )->Name( 0018EAC8 )
    0x000019C0 39824 3  XPCOM R: ( (dsIBooleanProperty*)16F522BC )->Name( *0018EAC8 = Auto connect if a child connects ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIProperties*)17033970 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 39824 3  XPCOM R: ( (dsIProperties*)17033970 )->getProperty( 0x00000002, *0018EAD8 = 16F52250 ) = 0x00000000
    0x000019C0 39824 3  XPCOM C: ( (dsIProperty*)16F52250 )->getPropertyType( 0018EA58 )
    0x000019C0 39825 3  XPCOM R: ( (dsIProperty*)16F52250 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39825 3  XPCOM C: ( (dsIProperty*)16F52250 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39825 3  XPCOM R: ( (dsIProperty*)16F52250 )->queryInterface( 170B3F00, *0018EA58 = 16F522BC ) = 0x00000000
    0x000019C0 39825 3  XPCOM C: ( (dsIBooleanProperty*)16F522BC )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39825 3  XPCOM R: ( (dsIBooleanProperty*)16F522BC )->queryInterface( 170B3F00, *0018EA58 = 16F522BC ) = 0x00000000
    0x000019C0 39825 3  XPCOM C: ( (dsIProperties*)17033970 )->Count( 0018EAF8 )
    0x000019C0 39825 3  XPCOM R: ( (dsIProperties*)17033970 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39825 3  XPCOM C: ( (dsIProperties*)1862BCF8 )->Count( 0018EB38 )
    0x000019C0 39825 3  XPCOM R: ( (dsIProperties*)1862BCF8 )->Count( *0018EB38 = 0x00000005 ) = 0x00000000
    0x000019C0 39825 3  XPCOM C: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 39825 3  XPCOM R: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000002, *0018EB18 = 170E7D68 ) = 0x00000000
    0x000019C0 39825 3  XPCOM C: ( (dsIProperty*)170E7D68 )->getPropertyType( 0018EA98 )
    0x000019C0 39825 3  XPCOM R: ( (dsIProperty*)170E7D68 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39825 3  XPCOM C: ( (dsIProperty*)170E7D68 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39825 3  XPCOM R: ( (dsIProperty*)170E7D68 )->queryInterface( 170B3F00, *0018EA98 = 170E7DD4 ) = 0x00000000
    0x000019C0 39825 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39825 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B3F00, *0018EA98 = 170E7DD4 ) = 0x00000000
    0x000019C0 39825 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->Name( 0018EB08 )
    0x000019C0 39825 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->Name( *0018EB08 = Disable interrupts ) = 0x00000000
    0x000019C0 39825 3  XPCOM C: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 39825 3  XPCOM R: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000002, *0018EB18 = 170E7D68 ) = 0x00000000
    0x000019C0 39825 3  XPCOM C: ( (dsIProperty*)170E7D68 )->getPropertyType( 0018EA98 )
    0x000019C0 39825 3  XPCOM R: ( (dsIProperty*)170E7D68 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39825 3  XPCOM C: ( (dsIProperty*)170E7D68 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39825 3  XPCOM R: ( (dsIProperty*)170E7D68 )->queryInterface( 170B3F00, *0018EA98 = 170E7DD4 ) = 0x00000000
    0x000019C0 39825 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39825 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B3F00, *0018EA98 = 170E7DD4 ) = 0x00000000
    0x000019C0 39825 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->getChildren( 0018EAD8 )
    0x000019C0 39825 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->getChildren( *0018EAD8 = 17034C00 ) = 0x00000000
    0x000019C0 39825 3  XPCOM C: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 39825 3  XPCOM R: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000002, *0018EB18 = 170E7D68 ) = 0x00000000
    0x000019C0 39825 3  XPCOM C: ( (dsIProperty*)170E7D68 )->getPropertyType( 0018EA98 )
    0x000019C0 39825 3  XPCOM R: ( (dsIProperty*)170E7D68 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39825 3  XPCOM C: ( (dsIProperty*)170E7D68 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39825 3  XPCOM R: ( (dsIProperty*)170E7D68 )->queryInterface( 170B3F00, *0018EA98 = 170E7DD4 ) = 0x00000000
    0x000019C0 39825 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39825 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B3F00, *0018EA98 = 170E7DD4 ) = 0x00000000
    0x000019C0 39825 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->getChildren( 0018EAD8 )
    0x000019C0 39825 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->getChildren( *0018EAD8 = 170346C0 ) = 0x00000000
    0x000019C0 39825 3  XPCOM C: ( (dsIProperties*)170346C0 )->Count( 0018EB38 )
    0x000019C0 39825 3  XPCOM R: ( (dsIProperties*)170346C0 )->Count( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 39826 3  XPCOM C: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 39826 3  XPCOM R: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000002, *0018EB18 = 170E7D68 ) = 0x00000000
    0x000019C0 39826 3  XPCOM C: ( (dsIProperty*)170E7D68 )->getPropertyType( 0018EA98 )
    0x000019C0 39826 3  XPCOM R: ( (dsIProperty*)170E7D68 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39826 3  XPCOM C: ( (dsIProperty*)170E7D68 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39826 3  XPCOM R: ( (dsIProperty*)170E7D68 )->queryInterface( 170B3F00, *0018EA98 = 170E7DD4 ) = 0x00000000
    0x000019C0 39826 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39826 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->queryInterface( 170B3F00, *0018EA98 = 170E7DD4 ) = 0x00000000
    0x000019C0 39826 3  XPCOM C: ( (dsIGroup*)170E7DD4 )->getChildren( 0018EAD8 )
    0x000019C0 39826 3  XPCOM R: ( (dsIGroup*)170E7DD4 )->getChildren( *0018EAD8 = 17033F10 ) = 0x00000000
    0x000019C0 39826 3  XPCOM C: ( (dsIProperties*)17033F10 )->Count( 0018EAF8 )
    0x000019C0 39826 3  XPCOM R: ( (dsIProperties*)17033F10 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39826 3  XPCOM C: ( (dsIProperties*)17033F10 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 39826 3  XPCOM R: ( (dsIProperties*)17033F10 )->getProperty( 0x00000000, *0018EAD8 = 16F522D8 ) = 0x00000000
    0x000019C0 39826 3  XPCOM C: ( (dsIProperty*)16F522D8 )->getPropertyType( 0018EA58 )
    0x000019C0 39826 3  XPCOM R: ( (dsIProperty*)16F522D8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39826 3  XPCOM C: ( (dsIProperty*)16F522D8 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39826 3  XPCOM R: ( (dsIProperty*)16F522D8 )->queryInterface( 170B3F00, *0018EA58 = 16F52344 ) = 0x00000000
    0x000019C0 39826 3  XPCOM C: ( (dsIBooleanProperty*)16F52344 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39826 3  XPCOM R: ( (dsIBooleanProperty*)16F52344 )->queryInterface( 170B3F00, *0018EA58 = 16F52344 ) = 0x00000000
    0x000019C0 39826 3  XPCOM C: ( (dsIBooleanProperty*)16F52344 )->Name( 0018EAC8 )
    0x000019C0 39826 3  XPCOM R: ( (dsIBooleanProperty*)16F52344 )->Name( *0018EAC8 = When assembly stepping ) = 0x00000000
    0x000019C0 39826 3  XPCOM C: ( (dsIProperties*)17033F10 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 39826 3  XPCOM R: ( (dsIProperties*)17033F10 )->getProperty( 0x00000000, *0018EAD8 = 16F522D8 ) = 0x00000000
    0x000019C0 39826 3  XPCOM C: ( (dsIProperty*)16F522D8 )->getPropertyType( 0018EA58 )
    0x000019C0 39826 3  XPCOM R: ( (dsIProperty*)16F522D8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39826 3  XPCOM C: ( (dsIProperty*)16F522D8 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39826 3  XPCOM R: ( (dsIProperty*)16F522D8 )->queryInterface( 170B3F00, *0018EA58 = 16F52344 ) = 0x00000000
    0x000019C0 39826 3  XPCOM C: ( (dsIBooleanProperty*)16F52344 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39826 3  XPCOM R: ( (dsIBooleanProperty*)16F52344 )->queryInterface( 170B3F00, *0018EA58 = 16F52344 ) = 0x00000000
    0x000019C0 39826 3  XPCOM C: ( (dsIProperties*)17033F10 )->Count( 0018EAF8 )
    0x000019C0 39826 3  XPCOM R: ( (dsIProperties*)17033F10 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39826 3  XPCOM C: ( (dsIProperties*)17033F10 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 39826 3  XPCOM R: ( (dsIProperties*)17033F10 )->getProperty( 0x00000001, *0018EAD8 = 16F52360 ) = 0x00000000
    0x000019C0 39826 3  XPCOM C: ( (dsIProperty*)16F52360 )->getPropertyType( 0018EA58 )
    0x000019C0 39826 3  XPCOM R: ( (dsIProperty*)16F52360 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39826 3  XPCOM C: ( (dsIProperty*)16F52360 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39826 3  XPCOM R: ( (dsIProperty*)16F52360 )->queryInterface( 170B3F00, *0018EA58 = 16F523CC ) = 0x00000000
    0x000019C0 39826 3  XPCOM C: ( (dsIBooleanProperty*)16F523CC )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39826 3  XPCOM R: ( (dsIBooleanProperty*)16F523CC )->queryInterface( 170B3F00, *0018EA58 = 16F523CC ) = 0x00000000
    0x000019C0 39826 3  XPCOM C: ( (dsIBooleanProperty*)16F523CC )->Name( 0018EAC8 )
    0x000019C0 39826 3  XPCOM R: ( (dsIBooleanProperty*)16F523CC )->Name( *0018EAC8 = When source stepping ) = 0x00000000
    0x000019C0 39826 3  XPCOM C: ( (dsIProperties*)17033F10 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 39826 3  XPCOM R: ( (dsIProperties*)17033F10 )->getProperty( 0x00000001, *0018EAD8 = 16F52360 ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIProperty*)16F52360 )->getPropertyType( 0018EA58 )
    0x000019C0 39827 3  XPCOM R: ( (dsIProperty*)16F52360 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIProperty*)16F52360 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39827 3  XPCOM R: ( (dsIProperty*)16F52360 )->queryInterface( 170B3F00, *0018EA58 = 16F523CC ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIBooleanProperty*)16F523CC )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39827 3  XPCOM R: ( (dsIBooleanProperty*)16F523CC )->queryInterface( 170B3F00, *0018EA58 = 16F523CC ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIProperties*)17033F10 )->Count( 0018EAF8 )
    0x000019C0 39827 3  XPCOM R: ( (dsIProperties*)17033F10 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIProperties*)17033F10 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 39827 3  XPCOM R: ( (dsIProperties*)17033F10 )->getProperty( 0x00000002, *0018EAD8 = 16F523E8 ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIProperty*)16F523E8 )->getPropertyType( 0018EA58 )
    0x000019C0 39827 3  XPCOM R: ( (dsIProperty*)16F523E8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIProperty*)16F523E8 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39827 3  XPCOM R: ( (dsIProperty*)16F523E8 )->queryInterface( 170B3F00, *0018EA58 = 16F52454 ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIBooleanProperty*)16F52454 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39827 3  XPCOM R: ( (dsIBooleanProperty*)16F52454 )->queryInterface( 170B3F00, *0018EA58 = 16F52454 ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIBooleanProperty*)16F52454 )->Name( 0018EAC8 )
    0x000019C0 39827 3  XPCOM R: ( (dsIBooleanProperty*)16F52454 )->Name( *0018EAC8 = When running ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIProperties*)17033F10 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 39827 3  XPCOM R: ( (dsIProperties*)17033F10 )->getProperty( 0x00000002, *0018EAD8 = 16F523E8 ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIProperty*)16F523E8 )->getPropertyType( 0018EA58 )
    0x000019C0 39827 3  XPCOM R: ( (dsIProperty*)16F523E8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIProperty*)16F523E8 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39827 3  XPCOM R: ( (dsIProperty*)16F523E8 )->queryInterface( 170B3F00, *0018EA58 = 16F52454 ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIBooleanProperty*)16F52454 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39827 3  XPCOM R: ( (dsIBooleanProperty*)16F52454 )->queryInterface( 170B3F00, *0018EA58 = 16F52454 ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIProperties*)17033F10 )->Count( 0018EAF8 )
    0x000019C0 39827 3  XPCOM R: ( (dsIProperties*)17033F10 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIProperties*)1862BCF8 )->Count( 0018EB38 )
    0x000019C0 39827 3  XPCOM R: ( (dsIProperties*)1862BCF8 )->Count( *0018EB38 = 0x00000005 ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000003, 0018EB18 )
    0x000019C0 39827 3  XPCOM R: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000003, *0018EB18 = 1702F978 ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIProperty*)1702F978 )->getPropertyType( 0018EA98 )
    0x000019C0 39827 3  XPCOM R: ( (dsIProperty*)1702F978 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIProperty*)1702F978 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39827 3  XPCOM R: ( (dsIProperty*)1702F978 )->queryInterface( 170B3F00, *0018EA98 = 1702F9E4 ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIBooleanProperty*)1702F9E4 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39827 3  XPCOM R: ( (dsIBooleanProperty*)1702F9E4 )->queryInterface( 170B3F00, *0018EA98 = 1702F9E4 ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIBooleanProperty*)1702F9E4 )->Name( 0018EB08 )
    0x000019C0 39827 3  XPCOM R: ( (dsIBooleanProperty*)1702F9E4 )->Name( *0018EB08 = Reset the target on a program load or restart ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000003, 0018EB18 )
    0x000019C0 39827 3  XPCOM R: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000003, *0018EB18 = 1702F978 ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIProperty*)1702F978 )->getPropertyType( 0018EA98 )
    0x000019C0 39827 3  XPCOM R: ( (dsIProperty*)1702F978 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 39827 3  XPCOM C: ( (dsIProperty*)1702F978 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39828 3  XPCOM R: ( (dsIProperty*)1702F978 )->queryInterface( 170B3F00, *0018EA98 = 1702F9E4 ) = 0x00000000
    0x000019C0 39828 3  XPCOM C: ( (dsIBooleanProperty*)1702F9E4 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39828 3  XPCOM R: ( (dsIBooleanProperty*)1702F9E4 )->queryInterface( 170B3F00, *0018EA98 = 1702F9E4 ) = 0x00000000
    0x000019C0 39828 3  XPCOM C: ( (dsIProperties*)1862BCF8 )->Count( 0018EB38 )
    0x000019C0 39828 3  XPCOM R: ( (dsIProperties*)1862BCF8 )->Count( *0018EB38 = 0x00000005 ) = 0x00000000
    0x000019C0 39828 3  XPCOM C: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000004, 0018EB18 )
    0x000019C0 39828 3  XPCOM R: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000004, *0018EB18 = 1702FA00 ) = 0x00000000
    0x000019C0 39828 3  XPCOM C: ( (dsIProperty*)1702FA00 )->getPropertyType( 0018EA98 )
    0x000019C0 39828 3  XPCOM R: ( (dsIProperty*)1702FA00 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 39828 3  XPCOM C: ( (dsIProperty*)1702FA00 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39828 3  XPCOM R: ( (dsIProperty*)1702FA00 )->queryInterface( 170B3F00, *0018EA98 = 1702FA6C ) = 0x00000000
    0x000019C0 39828 3  XPCOM C: ( (dsIBooleanProperty*)1702FA6C )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39828 3  XPCOM R: ( (dsIBooleanProperty*)1702FA6C )->queryInterface( 170B3F00, *0018EA98 = 1702FA6C ) = 0x00000000
    0x000019C0 39828 3  XPCOM C: ( (dsIBooleanProperty*)1702FA6C )->Name( 0018EB08 )
    0x000019C0 39828 3  XPCOM R: ( (dsIBooleanProperty*)1702FA6C )->Name( *0018EB08 = Restart the target on a symbol load as well as a program load ) = 0x00000000
    0x000019C0 39828 3  XPCOM C: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000004, 0018EB18 )
    0x000019C0 39828 3  XPCOM R: ( (dsIProperties*)1862BCF8 )->getProperty( 0x00000004, *0018EB18 = 1702FA00 ) = 0x00000000
    0x000019C0 39828 3  XPCOM C: ( (dsIProperty*)1702FA00 )->getPropertyType( 0018EA98 )
    0x000019C0 39828 3  XPCOM R: ( (dsIProperty*)1702FA00 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 39828 3  XPCOM C: ( (dsIProperty*)1702FA00 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39828 3  XPCOM R: ( (dsIProperty*)1702FA00 )->queryInterface( 170B3F00, *0018EA98 = 1702FA6C ) = 0x00000000
    0x000019C0 39828 3  XPCOM C: ( (dsIBooleanProperty*)1702FA6C )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39828 3  XPCOM R: ( (dsIBooleanProperty*)1702FA6C )->queryInterface( 170B3F00, *0018EA98 = 1702FA6C ) = 0x00000000
    0x000019C0 39828 3  XPCOM C: ( (dsIProperties*)1862BCF8 )->Count( 0018EB38 )
    0x000019C0 39828 3  XPCOM R: ( (dsIProperties*)1862BCF8 )->Count( *0018EB38 = 0x00000005 ) = 0x00000000
    0x000019C0 39828 3  XPCOM C: ( (dsIProperties*)1862CE08 )->Count( 0018EB78 )
    0x000019C0 39828 3  XPCOM R: ( (dsIProperties*)1862CE08 )->Count( *0018EB78 = 0x00000005 ) = 0x00000000
    0x000019C0 39828 3  XPCOM C: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000001, 0018EB58 )
    0x000019C0 39828 3  XPCOM R: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000001, *0018EB58 = 17020EA0 ) = 0x00000000
    0x000019C0 39828 3  XPCOM C: ( (dsIProperty*)17020EA0 )->getPropertyType( 0018EAD8 )
    0x000019C0 39828 3  XPCOM R: ( (dsIProperty*)17020EA0 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 39828 3  XPCOM C: ( (dsIProperty*)17020EA0 )->queryInterface( 170B3F00, 0018EAD8 )
    0x000019C0 39828 3  XPCOM R: ( (dsIProperty*)17020EA0 )->queryInterface( 170B3F00, *0018EAD8 = 17020F0C ) = 0x00000000
    0x000019C0 39828 3  XPCOM C: ( (dsINode*)17020F0C )->queryInterface( 170B3F00, 0018EAD8 )
    0x000019C0 39828 3  XPCOM R: ( (dsINode*)17020F0C )->queryInterface( 170B3F00, *0018EAD8 = 17020F0C ) = 0x00000000
    0x000019C0 39828 3  XPCOM C: ( (dsINode*)17020F0C )->Name( 0018EB48 )
    0x000019C0 39828 3  XPCOM R: ( (dsINode*)17020F0C )->Name( *0018EB48 = Auto Run and Launch Options ) = 0x00000000
    0x000019C0 39828 3  XPCOM C: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000001, 0018EB58 )
    0x000019C0 39828 3  XPCOM R: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000001, *0018EB58 = 17020EA0 ) = 0x00000000
    0x000019C0 39828 3  XPCOM C: ( (dsIProperty*)17020EA0 )->getPropertyType( 0018EAD8 )
    0x000019C0 39828 3  XPCOM R: ( (dsIProperty*)17020EA0 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 39828 3  XPCOM C: ( (dsIProperty*)17020EA0 )->queryInterface( 170B3F00, 0018EAD8 )
    0x000019C0 39828 3  XPCOM R: ( (dsIProperty*)17020EA0 )->queryInterface( 170B3F00, *0018EAD8 = 17020F0C ) = 0x00000000
    0x000019C0 39828 3  XPCOM C: ( (dsINode*)17020F0C )->queryInterface( 170B3F00, 0018EAD8 )
    0x000019C0 39829 3  XPCOM R: ( (dsINode*)17020F0C )->queryInterface( 170B3F00, *0018EAD8 = 17020F0C ) = 0x00000000
    0x000019C0 39829 3  XPCOM C: ( (dsINode*)17020F0C )->getChildren( 0018EB18 )
    0x000019C0 39829 3  XPCOM R: ( (dsINode*)17020F0C )->getChildren( *0018EB18 = 17033790 ) = 0x00000000
    0x000019C0 39829 3  XPCOM C: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000001, 0018EB58 )
    0x000019C0 39829 3  XPCOM R: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000001, *0018EB58 = 17020EA0 ) = 0x00000000
    0x000019C0 39829 3  XPCOM C: ( (dsIProperty*)17020EA0 )->getPropertyType( 0018EAD8 )
    0x000019C0 39829 3  XPCOM R: ( (dsIProperty*)17020EA0 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 39829 3  XPCOM C: ( (dsIProperty*)17020EA0 )->queryInterface( 170B3F00, 0018EAD8 )
    0x000019C0 39829 3  XPCOM R: ( (dsIProperty*)17020EA0 )->queryInterface( 170B3F00, *0018EAD8 = 17020F0C ) = 0x00000000
    0x000019C0 39829 3  XPCOM C: ( (dsINode*)17020F0C )->queryInterface( 170B3F00, 0018EAD8 )
    0x000019C0 39829 3  XPCOM R: ( (dsINode*)17020F0C )->queryInterface( 170B3F00, *0018EAD8 = 17020F0C ) = 0x00000000
    0x000019C0 39829 3  XPCOM C: ( (dsINode*)17020F0C )->getChildren( 0018EB18 )
    0x000019C0 39829 3  XPCOM R: ( (dsINode*)17020F0C )->getChildren( *0018EB18 = 17034BD0 ) = 0x00000000
    0x000019C0 39829 3  XPCOM C: ( (dsIProperties*)17034BD0 )->Count( 0018EB78 )
    0x000019C0 39829 3  XPCOM R: ( (dsIProperties*)17034BD0 )->Count( *0018EB78 = 0x00000003 ) = 0x00000000
    0x000019C0 39829 3  XPCOM C: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000001, 0018EB58 )
    0x000019C0 39829 3  XPCOM R: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000001, *0018EB58 = 17020EA0 ) = 0x00000000
    0x000019C0 39829 3  XPCOM C: ( (dsIProperty*)17020EA0 )->getPropertyType( 0018EAD8 )
    0x000019C0 39829 3  XPCOM R: ( (dsIProperty*)17020EA0 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 39829 3  XPCOM C: ( (dsIProperty*)17020EA0 )->queryInterface( 170B3F00, 0018EAD8 )
    0x000019C0 39829 3  XPCOM R: ( (dsIProperty*)17020EA0 )->queryInterface( 170B3F00, *0018EAD8 = 17020F0C ) = 0x00000000
    0x000019C0 39829 3  XPCOM C: ( (dsINode*)17020F0C )->queryInterface( 170B3F00, 0018EAD8 )
    0x000019C0 39829 3  XPCOM R: ( (dsINode*)17020F0C )->queryInterface( 170B3F00, *0018EAD8 = 17020F0C ) = 0x00000000
    0x000019C0 39829 3  XPCOM C: ( (dsINode*)17020F0C )->getChildren( 0018EB18 )
    0x000019C0 39829 3  XPCOM R: ( (dsINode*)17020F0C )->getChildren( *0018EB18 = 17033190 ) = 0x00000000
    0x000019C0 39829 3  XPCOM C: ( (dsIProperties*)17033190 )->Count( 0018EB38 )
    0x000019C0 39829 3  XPCOM R: ( (dsIProperties*)17033190 )->Count( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 39829 3  XPCOM C: ( (dsIProperties*)17033190 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 39829 3  XPCOM R: ( (dsIProperties*)17033190 )->getProperty( 0x00000000, *0018EB18 = 17132E48 ) = 0x00000000
    0x000019C0 39829 3  XPCOM C: ( (dsIProperty*)17132E48 )->getPropertyType( 0018EA98 )
    0x000019C0 39829 3  XPCOM R: ( (dsIProperty*)17132E48 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39829 3  XPCOM C: ( (dsIProperty*)17132E48 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39829 3  XPCOM R: ( (dsIProperty*)17132E48 )->queryInterface( 170B3F00, *0018EA98 = 17132EB4 ) = 0x00000000
    0x000019C0 39829 3  XPCOM C: ( (dsIGroup*)17132EB4 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39829 3  XPCOM R: ( (dsIGroup*)17132EB4 )->queryInterface( 170B3F00, *0018EA98 = 17132EB4 ) = 0x00000000
    0x000019C0 39829 3  XPCOM C: ( (dsIGroup*)17132EB4 )->Name( 0018EB08 )
    0x000019C0 39829 3  XPCOM R: ( (dsIGroup*)17132EB4 )->Name( *0018EB08 = Realtime Options ) = 0x00000000
    0x000019C0 39829 3  XPCOM C: ( (dsIProperties*)17033190 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 39829 3  XPCOM R: ( (dsIProperties*)17033190 )->getProperty( 0x00000000, *0018EB18 = 17132E48 ) = 0x00000000
    0x000019C0 39829 3  XPCOM C: ( (dsIProperty*)17132E48 )->getPropertyType( 0018EA98 )
    0x000019C0 39829 3  XPCOM R: ( (dsIProperty*)17132E48 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39830 3  XPCOM C: ( (dsIProperty*)17132E48 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39830 3  XPCOM R: ( (dsIProperty*)17132E48 )->queryInterface( 170B3F00, *0018EA98 = 17132EB4 ) = 0x00000000
    0x000019C0 39830 3  XPCOM C: ( (dsIGroup*)17132EB4 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39830 3  XPCOM R: ( (dsIGroup*)17132EB4 )->queryInterface( 170B3F00, *0018EA98 = 17132EB4 ) = 0x00000000
    0x000019C0 39830 3  XPCOM C: ( (dsIGroup*)17132EB4 )->getChildren( 0018EAD8 )
    0x000019C0 39830 3  XPCOM R: ( (dsIGroup*)17132EB4 )->getChildren( *0018EAD8 = 17033370 ) = 0x00000000
    0x000019C0 39830 3  XPCOM C: ( (dsIProperties*)17033190 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 39830 3  XPCOM R: ( (dsIProperties*)17033190 )->getProperty( 0x00000000, *0018EB18 = 17132E48 ) = 0x00000000
    0x000019C0 39830 3  XPCOM C: ( (dsIProperty*)17132E48 )->getPropertyType( 0018EA98 )
    0x000019C0 39830 3  XPCOM R: ( (dsIProperty*)17132E48 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39830 3  XPCOM C: ( (dsIProperty*)17132E48 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39830 3  XPCOM R: ( (dsIProperty*)17132E48 )->queryInterface( 170B3F00, *0018EA98 = 17132EB4 ) = 0x00000000
    0x000019C0 39830 3  XPCOM C: ( (dsIGroup*)17132EB4 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39830 3  XPCOM R: ( (dsIGroup*)17132EB4 )->queryInterface( 170B3F00, *0018EA98 = 17132EB4 ) = 0x00000000
    0x000019C0 39830 3  XPCOM C: ( (dsIGroup*)17132EB4 )->getChildren( 0018EAD8 )
    0x000019C0 39830 3  XPCOM R: ( (dsIGroup*)17132EB4 )->getChildren( *0018EAD8 = 17033B80 ) = 0x00000000
    0x000019C0 39830 3  XPCOM C: ( (dsIProperties*)17033B80 )->Count( 0018EB38 )
    0x000019C0 39830 3  XPCOM R: ( (dsIProperties*)17033B80 )->Count( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 39830 3  XPCOM C: ( (dsIProperties*)17033190 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 39830 3  XPCOM R: ( (dsIProperties*)17033190 )->getProperty( 0x00000000, *0018EB18 = 17132E48 ) = 0x00000000
    0x000019C0 39830 3  XPCOM C: ( (dsIProperty*)17132E48 )->getPropertyType( 0018EA98 )
    0x000019C0 39830 3  XPCOM R: ( (dsIProperty*)17132E48 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39830 3  XPCOM C: ( (dsIProperty*)17132E48 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39830 3  XPCOM R: ( (dsIProperty*)17132E48 )->queryInterface( 170B3F00, *0018EA98 = 17132EB4 ) = 0x00000000
    0x000019C0 39830 3  XPCOM C: ( (dsIGroup*)17132EB4 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39830 3  XPCOM R: ( (dsIGroup*)17132EB4 )->queryInterface( 170B3F00, *0018EA98 = 17132EB4 ) = 0x00000000
    0x000019C0 39830 3  XPCOM C: ( (dsIGroup*)17132EB4 )->getChildren( 0018EAD8 )
    0x000019C0 39830 3  XPCOM R: ( (dsIGroup*)17132EB4 )->getChildren( *0018EAD8 = 17033460 ) = 0x00000000
    0x000019C0 39830 3  XPCOM C: ( (dsIProperties*)17033460 )->Count( 0018EAF8 )
    0x000019C0 39830 3  XPCOM R: ( (dsIProperties*)17033460 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39830 3  XPCOM C: ( (dsIProperties*)17033460 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 39830 3  XPCOM R: ( (dsIProperties*)17033460 )->getProperty( 0x00000000, *0018EAD8 = 1702FC20 ) = 0x00000000
    0x000019C0 39830 3  XPCOM C: ( (dsIProperty*)1702FC20 )->getPropertyType( 0018EA58 )
    0x000019C0 39830 3  XPCOM R: ( (dsIProperty*)1702FC20 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39830 3  XPCOM C: ( (dsIProperty*)1702FC20 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39830 3  XPCOM R: ( (dsIProperty*)1702FC20 )->queryInterface( 170B3F00, *0018EA58 = 1702FC8C ) = 0x00000000
    0x000019C0 39830 3  XPCOM C: ( (dsIBooleanProperty*)1702FC8C )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39830 3  XPCOM R: ( (dsIBooleanProperty*)1702FC8C )->queryInterface( 170B3F00, *0018EA58 = 1702FC8C ) = 0x00000000
    0x000019C0 39830 3  XPCOM C: ( (dsIBooleanProperty*)1702FC8C )->Name( 0018EAC8 )
    0x000019C0 39830 3  XPCOM R: ( (dsIBooleanProperty*)1702FC8C )->Name( *0018EAC8 = Halt the target before any debugger access (will impact servicing of interrupts) ) = 0x00000000
    0x000019C0 39830 3  XPCOM C: ( (dsIProperties*)17033460 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 39830 3  XPCOM R: ( (dsIProperties*)17033460 )->getProperty( 0x00000000, *0018EAD8 = 1702FC20 ) = 0x00000000
    0x000019C0 39830 3  XPCOM C: ( (dsIProperty*)1702FC20 )->getPropertyType( 0018EA58 )
    0x000019C0 39831 3  XPCOM R: ( (dsIProperty*)1702FC20 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39831 3  XPCOM C: ( (dsIProperty*)1702FC20 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39831 3  XPCOM R: ( (dsIProperty*)1702FC20 )->queryInterface( 170B3F00, *0018EA58 = 1702FC8C ) = 0x00000000
    0x000019C0 39831 3  XPCOM C: ( (dsIBooleanProperty*)1702FC8C )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39831 3  XPCOM R: ( (dsIBooleanProperty*)1702FC8C )->queryInterface( 170B3F00, *0018EA58 = 1702FC8C ) = 0x00000000
    0x000019C0 39831 3  XPCOM C: ( (dsIProperties*)17033460 )->Count( 0018EAF8 )
    0x000019C0 39831 3  XPCOM R: ( (dsIProperties*)17033460 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39831 3  XPCOM C: ( (dsIProperties*)17033460 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 39831 3  XPCOM R: ( (dsIProperties*)17033460 )->getProperty( 0x00000001, *0018EAD8 = 1702FCA8 ) = 0x00000000
    0x000019C0 39831 3  XPCOM C: ( (dsIProperty*)1702FCA8 )->getPropertyType( 0018EA58 )
    0x000019C0 39831 3  XPCOM R: ( (dsIProperty*)1702FCA8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39831 3  XPCOM C: ( (dsIProperty*)1702FCA8 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39831 3  XPCOM R: ( (dsIProperty*)1702FCA8 )->queryInterface( 170B3F00, *0018EA58 = 1702FD14 ) = 0x00000000
    0x000019C0 39831 3  XPCOM C: ( (dsIBooleanProperty*)1702FD14 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39831 3  XPCOM R: ( (dsIBooleanProperty*)1702FD14 )->queryInterface( 170B3F00, *0018EA58 = 1702FD14 ) = 0x00000000
    0x000019C0 39831 3  XPCOM C: ( (dsIBooleanProperty*)1702FD14 )->Name( 0018EAC8 )
    0x000019C0 39831 3  XPCOM R: ( (dsIBooleanProperty*)1702FD14 )->Name( *0018EAC8 = Enable realtime mode (critical interrupts serviced when halted, rude/polite mode...) ) = 0x00000000
    0x000019C0 39831 3  XPCOM C: ( (dsIProperties*)17033460 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 39831 3  XPCOM R: ( (dsIProperties*)17033460 )->getProperty( 0x00000001, *0018EAD8 = 1702FCA8 ) = 0x00000000
    0x000019C0 39831 3  XPCOM C: ( (dsIProperty*)1702FCA8 )->getPropertyType( 0018EA58 )
    0x000019C0 39831 3  XPCOM R: ( (dsIProperty*)1702FCA8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39831 3  XPCOM C: ( (dsIProperty*)1702FCA8 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39831 3  XPCOM R: ( (dsIProperty*)1702FCA8 )->queryInterface( 170B3F00, *0018EA58 = 1702FD14 ) = 0x00000000
    0x000019C0 39831 3  XPCOM C: ( (dsIBooleanProperty*)1702FD14 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39831 3  XPCOM R: ( (dsIBooleanProperty*)1702FD14 )->queryInterface( 170B3F00, *0018EA58 = 1702FD14 ) = 0x00000000
    0x000019C0 39831 3  XPCOM C: ( (dsIProperties*)17033460 )->Count( 0018EAF8 )
    0x000019C0 39831 3  XPCOM R: ( (dsIProperties*)17033460 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39831 3  XPCOM C: ( (dsIProperties*)17033460 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 39831 3  XPCOM R: ( (dsIProperties*)17033460 )->getProperty( 0x00000002, *0018EAD8 = 1702FD30 ) = 0x00000000
    0x000019C0 39831 3  XPCOM C: ( (dsIProperty*)1702FD30 )->getPropertyType( 0018EA58 )
    0x000019C0 39831 3  XPCOM R: ( (dsIProperty*)1702FD30 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39831 3  XPCOM C: ( (dsIProperty*)1702FD30 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39831 3  XPCOM R: ( (dsIProperty*)1702FD30 )->queryInterface( 170B3F00, *0018EA58 = 1702FD9C ) = 0x00000000
    0x000019C0 39831 3  XPCOM C: ( (dsIBooleanProperty*)1702FD9C )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39831 3  XPCOM R: ( (dsIBooleanProperty*)1702FD9C )->queryInterface( 170B3F00, *0018EA58 = 1702FD9C ) = 0x00000000
    0x000019C0 39831 3  XPCOM C: ( (dsIBooleanProperty*)1702FD9C )->Name( 0018EAC8 )
    0x000019C0 39831 3  XPCOM R: ( (dsIBooleanProperty*)1702FD9C )->Name( *0018EAC8 = Enable polite mode (respect HPI, DBGM and FRAMEID) ) = 0x00000000
    0x000019C0 39831 3  XPCOM C: ( (dsIProperties*)17033460 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 39831 3  XPCOM R: ( (dsIProperties*)17033460 )->getProperty( 0x00000002, *0018EAD8 = 1702FD30 ) = 0x00000000
    0x000019C0 39831 3  XPCOM C: ( (dsIProperty*)1702FD30 )->getPropertyType( 0018EA58 )
    0x000019C0 39831 3  XPCOM R: ( (dsIProperty*)1702FD30 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39831 3  XPCOM C: ( (dsIProperty*)1702FD30 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39832 3  XPCOM R: ( (dsIProperty*)1702FD30 )->queryInterface( 170B3F00, *0018EA58 = 1702FD9C ) = 0x00000000
    0x000019C0 39832 3  XPCOM C: ( (dsIBooleanProperty*)1702FD9C )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39832 3  XPCOM R: ( (dsIBooleanProperty*)1702FD9C )->queryInterface( 170B3F00, *0018EA58 = 1702FD9C ) = 0x00000000
    0x000019C0 39832 3  XPCOM C: ( (dsIProperties*)17033460 )->Count( 0018EAF8 )
    0x000019C0 39832 3  XPCOM R: ( (dsIProperties*)17033460 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39832 3  XPCOM C: ( (dsIProperties*)17033190 )->Count( 0018EB38 )
    0x000019C0 39832 3  XPCOM R: ( (dsIProperties*)17033190 )->Count( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 39832 3  XPCOM C: ( (dsIProperties*)17033190 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 39832 3  XPCOM R: ( (dsIProperties*)17033190 )->getProperty( 0x00000001, *0018EB18 = 17132F58 ) = 0x00000000
    0x000019C0 39832 3  XPCOM C: ( (dsIProperty*)17132F58 )->getPropertyType( 0018EA98 )
    0x000019C0 39832 3  XPCOM R: ( (dsIProperty*)17132F58 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39832 3  XPCOM C: ( (dsIProperty*)17132F58 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39832 3  XPCOM R: ( (dsIProperty*)17132F58 )->queryInterface( 170B3F00, *0018EA98 = 17132FC4 ) = 0x00000000
    0x000019C0 39832 3  XPCOM C: ( (dsIGroup*)17132FC4 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39832 3  XPCOM R: ( (dsIGroup*)17132FC4 )->queryInterface( 170B3F00, *0018EA98 = 17132FC4 ) = 0x00000000
    0x000019C0 39832 3  XPCOM C: ( (dsIGroup*)17132FC4 )->Name( 0018EB08 )
    0x000019C0 39832 3  XPCOM R: ( (dsIGroup*)17132FC4 )->Name( *0018EB08 = Auto Run Options ) = 0x00000000
    0x000019C0 39832 3  XPCOM C: ( (dsIProperties*)17033190 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 39832 3  XPCOM R: ( (dsIProperties*)17033190 )->getProperty( 0x00000001, *0018EB18 = 17132F58 ) = 0x00000000
    0x000019C0 39832 3  XPCOM C: ( (dsIProperty*)17132F58 )->getPropertyType( 0018EA98 )
    0x000019C0 39832 3  XPCOM R: ( (dsIProperty*)17132F58 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39832 3  XPCOM C: ( (dsIProperty*)17132F58 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39832 3  XPCOM R: ( (dsIProperty*)17132F58 )->queryInterface( 170B3F00, *0018EA98 = 17132FC4 ) = 0x00000000
    0x000019C0 39832 3  XPCOM C: ( (dsIGroup*)17132FC4 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39832 3  XPCOM R: ( (dsIGroup*)17132FC4 )->queryInterface( 170B3F00, *0018EA98 = 17132FC4 ) = 0x00000000
    0x000019C0 39832 3  XPCOM C: ( (dsIGroup*)17132FC4 )->getChildren( 0018EAD8 )
    0x000019C0 39832 3  XPCOM R: ( (dsIGroup*)17132FC4 )->getChildren( *0018EAD8 = 17033C10 ) = 0x00000000
    0x000019C0 39832 3  XPCOM C: ( (dsIProperties*)17033190 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 39832 3  XPCOM R: ( (dsIProperties*)17033190 )->getProperty( 0x00000001, *0018EB18 = 17132F58 ) = 0x00000000
    0x000019C0 39832 3  XPCOM C: ( (dsIProperty*)17132F58 )->getPropertyType( 0018EA98 )
    0x000019C0 39832 3  XPCOM R: ( (dsIProperty*)17132F58 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39832 3  XPCOM C: ( (dsIProperty*)17132F58 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39832 3  XPCOM R: ( (dsIProperty*)17132F58 )->queryInterface( 170B3F00, *0018EA98 = 17132FC4 ) = 0x00000000
    0x000019C0 39832 3  XPCOM C: ( (dsIGroup*)17132FC4 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39832 3  XPCOM R: ( (dsIGroup*)17132FC4 )->queryInterface( 170B3F00, *0018EA98 = 17132FC4 ) = 0x00000000
    0x000019C0 39832 3  XPCOM C: ( (dsIGroup*)17132FC4 )->getChildren( 0018EAD8 )
    0x000019C0 39832 3  XPCOM R: ( (dsIGroup*)17132FC4 )->getChildren( *0018EAD8 = 17033520 ) = 0x00000000
    0x000019C0 39832 3  XPCOM C: ( (dsIProperties*)17033520 )->Count( 0018EB38 )
    0x000019C0 39832 3  XPCOM R: ( (dsIProperties*)17033520 )->Count( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 39832 3  XPCOM C: ( (dsIProperties*)17033190 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 39832 3  XPCOM R: ( (dsIProperties*)17033190 )->getProperty( 0x00000001, *0018EB18 = 17132F58 ) = 0x00000000
    0x000019C0 39832 3  XPCOM C: ( (dsIProperty*)17132F58 )->getPropertyType( 0018EA98 )
    0x000019C0 39833 3  XPCOM R: ( (dsIProperty*)17132F58 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39833 3  XPCOM C: ( (dsIProperty*)17132F58 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39833 3  XPCOM R: ( (dsIProperty*)17132F58 )->queryInterface( 170B3F00, *0018EA98 = 17132FC4 ) = 0x00000000
    0x000019C0 39833 3  XPCOM C: ( (dsIGroup*)17132FC4 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39833 3  XPCOM R: ( (dsIGroup*)17132FC4 )->queryInterface( 170B3F00, *0018EA98 = 17132FC4 ) = 0x00000000
    0x000019C0 39833 3  XPCOM C: ( (dsIGroup*)17132FC4 )->getChildren( 0018EAD8 )
    0x000019C0 39833 3  XPCOM R: ( (dsIGroup*)17132FC4 )->getChildren( *0018EAD8 = 17033490 ) = 0x00000000
    0x000019C0 39833 3  XPCOM C: ( (dsIProperties*)17033490 )->Count( 0018EAF8 )
    0x000019C0 39833 3  XPCOM R: ( (dsIProperties*)17033490 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39833 3  XPCOM C: ( (dsIProperties*)17033490 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 39833 3  XPCOM R: ( (dsIProperties*)17033490 )->getProperty( 0x00000000, *0018EAD8 = 12296818 ) = 0x00000000
    0x000019C0 39833 3  XPCOM C: ( (dsIProperty*)12296818 )->getPropertyType( 0018EA58 )
    0x000019C0 39833 3  XPCOM R: ( (dsIProperty*)12296818 )->getPropertyType( *0018EA58 = 0x00000004 ) = 0x00000000
    0x000019C0 39833 3  XPCOM C: ( (dsIProperty*)12296818 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39833 3  XPCOM R: ( (dsIProperty*)12296818 )->queryInterface( 170B3F00, *0018EA58 = 12296884 ) = 0x00000000
    0x000019C0 39833 3  XPCOM C: ( (dsIStringProperty*)12296884 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39833 3  XPCOM R: ( (dsIStringProperty*)12296884 )->queryInterface( 170B3F00, *0018EA58 = 12296884 ) = 0x00000000
    0x000019C0 39833 3  XPCOM C: ( (dsIStringProperty*)12296884 )->Name( 0018EAC8 )
    0x000019C0 39833 3  XPCOM R: ( (dsIStringProperty*)12296884 )->Name( *0018EAC8 = Run to symbol ) = 0x00000000
    0x000019C0 39833 3  XPCOM C: ( (dsIProperties*)17033490 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 39833 3  XPCOM R: ( (dsIProperties*)17033490 )->getProperty( 0x00000000, *0018EAD8 = 12296818 ) = 0x00000000
    0x000019C0 39833 3  XPCOM C: ( (dsIProperty*)12296818 )->getPropertyType( 0018EA58 )
    0x000019C0 39833 3  XPCOM R: ( (dsIProperty*)12296818 )->getPropertyType( *0018EA58 = 0x00000004 ) = 0x00000000
    0x000019C0 39833 3  XPCOM C: ( (dsIProperty*)12296818 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39833 3  XPCOM R: ( (dsIProperty*)12296818 )->queryInterface( 170B3F00, *0018EA58 = 12296884 ) = 0x00000000
    0x000019C0 39833 3  XPCOM C: ( (dsIStringProperty*)12296884 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39833 3  XPCOM R: ( (dsIStringProperty*)12296884 )->queryInterface( 170B3F00, *0018EA58 = 12296884 ) = 0x00000000
    0x000019C0 39833 3  XPCOM C: ( (dsIProperties*)17033490 )->Count( 0018EAF8 )
    0x000019C0 39833 3  XPCOM R: ( (dsIProperties*)17033490 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39833 3  XPCOM C: ( (dsIProperties*)17033490 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 39833 3  XPCOM R: ( (dsIProperties*)17033490 )->getProperty( 0x00000001, *0018EAD8 = 1702FDB8 ) = 0x00000000
    0x000019C0 39833 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->getPropertyType( 0018EA58 )
    0x000019C0 39833 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39833 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39833 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->queryInterface( 170B3F00, *0018EA58 = 1702FE24 ) = 0x00000000
    0x000019C0 39833 3  XPCOM C: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39833 3  XPCOM R: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 170B3F00, *0018EA58 = 1702FE24 ) = 0x00000000
    0x000019C0 39833 3  XPCOM C: ( (dsIBooleanProperty*)1702FE24 )->Name( 0018EAC8 )
    0x000019C0 39833 3  XPCOM R: ( (dsIBooleanProperty*)1702FE24 )->Name( *0018EAC8 = On a program load or restart ) = 0x00000000
    0x000019C0 39833 3  XPCOM C: ( (dsIProperties*)17033490 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 39834 3  XPCOM R: ( (dsIProperties*)17033490 )->getProperty( 0x00000001, *0018EAD8 = 1702FDB8 ) = 0x00000000
    0x000019C0 39834 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->getPropertyType( 0018EA58 )
    0x000019C0 39834 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39834 3  XPCOM C: ( (dsIProperty*)1702FDB8 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39834 3  XPCOM R: ( (dsIProperty*)1702FDB8 )->queryInterface( 170B3F00, *0018EA58 = 1702FE24 ) = 0x00000000
    0x000019C0 39834 3  XPCOM C: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39834 3  XPCOM R: ( (dsIBooleanProperty*)1702FE24 )->queryInterface( 170B3F00, *0018EA58 = 1702FE24 ) = 0x00000000
    0x000019C0 39834 3  XPCOM C: ( (dsIProperties*)17033490 )->Count( 0018EAF8 )
    0x000019C0 39834 3  XPCOM R: ( (dsIProperties*)17033490 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39834 3  XPCOM C: ( (dsIProperties*)17033490 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 39834 3  XPCOM R: ( (dsIProperties*)17033490 )->getProperty( 0x00000002, *0018EAD8 = 1702FE40 ) = 0x00000000
    0x000019C0 39834 3  XPCOM C: ( (dsIProperty*)1702FE40 )->getPropertyType( 0018EA58 )
    0x000019C0 39834 3  XPCOM R: ( (dsIProperty*)1702FE40 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39834 3  XPCOM C: ( (dsIProperty*)1702FE40 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39834 3  XPCOM R: ( (dsIProperty*)1702FE40 )->queryInterface( 170B3F00, *0018EA58 = 1702FEAC ) = 0x00000000
    0x000019C0 39834 3  XPCOM C: ( (dsIBooleanProperty*)1702FEAC )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39834 3  XPCOM R: ( (dsIBooleanProperty*)1702FEAC )->queryInterface( 170B3F00, *0018EA58 = 1702FEAC ) = 0x00000000
    0x000019C0 39834 3  XPCOM C: ( (dsIBooleanProperty*)1702FEAC )->Name( 0018EAC8 )
    0x000019C0 39834 3  XPCOM R: ( (dsIBooleanProperty*)1702FEAC )->Name( *0018EAC8 = On a reset ) = 0x00000000
    0x000019C0 39834 3  XPCOM C: ( (dsIProperties*)17033490 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 39834 3  XPCOM R: ( (dsIProperties*)17033490 )->getProperty( 0x00000002, *0018EAD8 = 1702FE40 ) = 0x00000000
    0x000019C0 39834 3  XPCOM C: ( (dsIProperty*)1702FE40 )->getPropertyType( 0018EA58 )
    0x000019C0 39834 3  XPCOM R: ( (dsIProperty*)1702FE40 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39834 3  XPCOM C: ( (dsIProperty*)1702FE40 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39834 3  XPCOM R: ( (dsIProperty*)1702FE40 )->queryInterface( 170B3F00, *0018EA58 = 1702FEAC ) = 0x00000000
    0x000019C0 39834 3  XPCOM C: ( (dsIBooleanProperty*)1702FEAC )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39834 3  XPCOM R: ( (dsIBooleanProperty*)1702FEAC )->queryInterface( 170B3F00, *0018EA58 = 1702FEAC ) = 0x00000000
    0x000019C0 39834 3  XPCOM C: ( (dsIProperties*)17033490 )->Count( 0018EAF8 )
    0x000019C0 39834 3  XPCOM R: ( (dsIProperties*)17033490 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39834 3  XPCOM C: ( (dsIProperties*)17033190 )->Count( 0018EB38 )
    0x000019C0 39834 3  XPCOM R: ( (dsIProperties*)17033190 )->Count( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 39834 3  XPCOM C: ( (dsIProperties*)17033190 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 39834 3  XPCOM R: ( (dsIProperties*)17033190 )->getProperty( 0x00000002, *0018EB18 = 17132FE0 ) = 0x00000000
    0x000019C0 39834 3  XPCOM C: ( (dsIProperty*)17132FE0 )->getPropertyType( 0018EA98 )
    0x000019C0 39834 3  XPCOM R: ( (dsIProperty*)17132FE0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39834 3  XPCOM C: ( (dsIProperty*)17132FE0 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39834 3  XPCOM R: ( (dsIProperty*)17132FE0 )->queryInterface( 170B3F00, *0018EA98 = 1713304C ) = 0x00000000
    0x000019C0 39835 3  XPCOM C: ( (dsIGroup*)1713304C )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39835 3  XPCOM R: ( (dsIGroup*)1713304C )->queryInterface( 170B3F00, *0018EA98 = 1713304C ) = 0x00000000
    0x000019C0 39835 3  XPCOM C: ( (dsIGroup*)1713304C )->Name( 0018EB08 )
    0x000019C0 39835 3  XPCOM R: ( (dsIGroup*)1713304C )->Name( *0018EB08 = Launch Options ) = 0x00000000
    0x000019C0 39835 3  XPCOM C: ( (dsIProperties*)17033190 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 39835 3  XPCOM R: ( (dsIProperties*)17033190 )->getProperty( 0x00000002, *0018EB18 = 17132FE0 ) = 0x00000000
    0x000019C0 39835 3  XPCOM C: ( (dsIProperty*)17132FE0 )->getPropertyType( 0018EA98 )
    0x000019C0 39835 3  XPCOM R: ( (dsIProperty*)17132FE0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39835 3  XPCOM C: ( (dsIProperty*)17132FE0 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39835 3  XPCOM R: ( (dsIProperty*)17132FE0 )->queryInterface( 170B3F00, *0018EA98 = 1713304C ) = 0x00000000
    0x000019C0 39835 3  XPCOM C: ( (dsIGroup*)1713304C )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39835 3  XPCOM R: ( (dsIGroup*)1713304C )->queryInterface( 170B3F00, *0018EA98 = 1713304C ) = 0x00000000
    0x000019C0 39835 3  XPCOM C: ( (dsIGroup*)1713304C )->getChildren( 0018EAD8 )
    0x000019C0 39835 3  XPCOM R: ( (dsIGroup*)1713304C )->getChildren( *0018EAD8 = 170347E0 ) = 0x00000000
    0x000019C0 39835 3  XPCOM C: ( (dsIProperties*)17033190 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 39835 3  XPCOM R: ( (dsIProperties*)17033190 )->getProperty( 0x00000002, *0018EB18 = 17132FE0 ) = 0x00000000
    0x000019C0 39835 3  XPCOM C: ( (dsIProperty*)17132FE0 )->getPropertyType( 0018EA98 )
    0x000019C0 39835 3  XPCOM R: ( (dsIProperty*)17132FE0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39835 3  XPCOM C: ( (dsIProperty*)17132FE0 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39835 3  XPCOM R: ( (dsIProperty*)17132FE0 )->queryInterface( 170B3F00, *0018EA98 = 1713304C ) = 0x00000000
    0x000019C0 39835 3  XPCOM C: ( (dsIGroup*)1713304C )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39835 3  XPCOM R: ( (dsIGroup*)1713304C )->queryInterface( 170B3F00, *0018EA98 = 1713304C ) = 0x00000000
    0x000019C0 39835 3  XPCOM C: ( (dsIGroup*)1713304C )->getChildren( 0018EAD8 )
    0x000019C0 39835 3  XPCOM R: ( (dsIGroup*)1713304C )->getChildren( *0018EAD8 = 170332B0 ) = 0x00000000
    0x000019C0 39835 3  XPCOM C: ( (dsIProperties*)170332B0 )->Count( 0018EB38 )
    0x000019C0 39835 3  XPCOM R: ( (dsIProperties*)170332B0 )->Count( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 39835 3  XPCOM C: ( (dsIProperties*)17033190 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 39835 3  XPCOM R: ( (dsIProperties*)17033190 )->getProperty( 0x00000002, *0018EB18 = 17132FE0 ) = 0x00000000
    0x000019C0 39835 3  XPCOM C: ( (dsIProperty*)17132FE0 )->getPropertyType( 0018EA98 )
    0x000019C0 39835 3  XPCOM R: ( (dsIProperty*)17132FE0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39835 3  XPCOM C: ( (dsIProperty*)17132FE0 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39835 3  XPCOM R: ( (dsIProperty*)17132FE0 )->queryInterface( 170B3F00, *0018EA98 = 1713304C ) = 0x00000000
    0x000019C0 39835 3  XPCOM C: ( (dsIGroup*)1713304C )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39835 3  XPCOM R: ( (dsIGroup*)1713304C )->queryInterface( 170B3F00, *0018EA98 = 1713304C ) = 0x00000000
    0x000019C0 39835 3  XPCOM C: ( (dsIGroup*)1713304C )->getChildren( 0018EAD8 )
    0x000019C0 39835 3  XPCOM R: ( (dsIGroup*)1713304C )->getChildren( *0018EAD8 = 170339A0 ) = 0x00000000
    0x000019C0 39835 3  XPCOM C: ( (dsIProperties*)170339A0 )->Count( 0018EAF8 )
    0x000019C0 39835 3  XPCOM R: ( (dsIProperties*)170339A0 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39835 3  XPCOM C: ( (dsIProperties*)170339A0 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 39835 3  XPCOM R: ( (dsIProperties*)170339A0 )->getProperty( 0x00000000, *0018EAD8 = 16F51FA8 ) = 0x00000000
    0x000019C0 39835 3  XPCOM C: ( (dsIProperty*)16F51FA8 )->getPropertyType( 0018EA58 )
    0x000019C0 39836 3  XPCOM R: ( (dsIProperty*)16F51FA8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39836 3  XPCOM C: ( (dsIProperty*)16F51FA8 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39836 3  XPCOM R: ( (dsIProperty*)16F51FA8 )->queryInterface( 170B3F00, *0018EA58 = 16F52014 ) = 0x00000000
    0x000019C0 39836 3  XPCOM C: ( (dsIBooleanProperty*)16F52014 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39836 3  XPCOM R: ( (dsIBooleanProperty*)16F52014 )->queryInterface( 170B3F00, *0018EA58 = 16F52014 ) = 0x00000000
    0x000019C0 39836 3  XPCOM C: ( (dsIBooleanProperty*)16F52014 )->Name( 0018EAC8 )
    0x000019C0 39836 3  XPCOM R: ( (dsIBooleanProperty*)16F52014 )->Name( *0018EAC8 = Connect to the target on debugger startup ) = 0x00000000
    0x000019C0 39836 3  XPCOM C: ( (dsIProperties*)170339A0 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 39836 3  XPCOM R: ( (dsIProperties*)170339A0 )->getProperty( 0x00000000, *0018EAD8 = 16F51FA8 ) = 0x00000000
    0x000019C0 39836 3  XPCOM C: ( (dsIProperty*)16F51FA8 )->getPropertyType( 0018EA58 )
    0x000019C0 39836 3  XPCOM R: ( (dsIProperty*)16F51FA8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39836 3  XPCOM C: ( (dsIProperty*)16F51FA8 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39836 3  XPCOM R: ( (dsIProperty*)16F51FA8 )->queryInterface( 170B3F00, *0018EA58 = 16F52014 ) = 0x00000000
    0x000019C0 39836 3  XPCOM C: ( (dsIBooleanProperty*)16F52014 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39836 3  XPCOM R: ( (dsIBooleanProperty*)16F52014 )->queryInterface( 170B3F00, *0018EA58 = 16F52014 ) = 0x00000000
    0x000019C0 39836 3  XPCOM C: ( (dsIProperties*)170339A0 )->Count( 0018EAF8 )
    0x000019C0 39836 3  XPCOM R: ( (dsIProperties*)170339A0 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39836 3  XPCOM C: ( (dsIProperties*)170339A0 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 39836 3  XPCOM R: ( (dsIProperties*)170339A0 )->getProperty( 0x00000001, *0018EAD8 = 16F52140 ) = 0x00000000
    0x000019C0 39836 3  XPCOM C: ( (dsIProperty*)16F52140 )->getPropertyType( 0018EA58 )
    0x000019C0 39836 3  XPCOM R: ( (dsIProperty*)16F52140 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39836 3  XPCOM C: ( (dsIProperty*)16F52140 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39836 3  XPCOM R: ( (dsIProperty*)16F52140 )->queryInterface( 170B3F00, *0018EA58 = 16F521AC ) = 0x00000000
    0x000019C0 39836 3  XPCOM C: ( (dsIBooleanProperty*)16F521AC )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39836 3  XPCOM R: ( (dsIBooleanProperty*)16F521AC )->queryInterface( 170B3F00, *0018EA58 = 16F521AC ) = 0x00000000
    0x000019C0 39836 3  XPCOM C: ( (dsIBooleanProperty*)16F521AC )->Name( 0018EAC8 )
    0x000019C0 39836 3  XPCOM R: ( (dsIBooleanProperty*)16F521AC )->Name( *0018EAC8 = Restore breakpoints from previous session ) = 0x00000000
    0x000019C0 39836 3  XPCOM C: ( (dsIProperties*)170339A0 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 39836 3  XPCOM R: ( (dsIProperties*)170339A0 )->getProperty( 0x00000001, *0018EAD8 = 16F52140 ) = 0x00000000
    0x000019C0 39836 3  XPCOM C: ( (dsIProperty*)16F52140 )->getPropertyType( 0018EA58 )
    0x000019C0 39836 3  XPCOM R: ( (dsIProperty*)16F52140 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39836 3  XPCOM C: ( (dsIProperty*)16F52140 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39836 3  XPCOM R: ( (dsIProperty*)16F52140 )->queryInterface( 170B3F00, *0018EA58 = 16F521AC ) = 0x00000000
    0x000019C0 39836 3  XPCOM C: ( (dsIBooleanProperty*)16F521AC )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39836 3  XPCOM R: ( (dsIBooleanProperty*)16F521AC )->queryInterface( 170B3F00, *0018EA58 = 16F521AC ) = 0x00000000
    0x000019C0 39836 3  XPCOM C: ( (dsIProperties*)170339A0 )->Count( 0018EAF8 )
    0x000019C0 39836 3  XPCOM R: ( (dsIProperties*)170339A0 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39836 3  XPCOM C: ( (dsIProperties*)170339A0 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 39836 3  XPCOM R: ( (dsIProperties*)170339A0 )->getProperty( 0x00000002, *0018EAD8 = 16F521C8 ) = 0x00000000
    0x000019C0 39836 3  XPCOM C: ( (dsIProperty*)16F521C8 )->getPropertyType( 0018EA58 )
    0x000019C0 39836 3  XPCOM R: ( (dsIProperty*)16F521C8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39836 3  XPCOM C: ( (dsIProperty*)16F521C8 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39836 3  XPCOM R: ( (dsIProperty*)16F521C8 )->queryInterface( 170B3F00, *0018EA58 = 16F52234 ) = 0x00000000
    0x000019C0 39837 3  XPCOM C: ( (dsIBooleanProperty*)16F52234 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39837 3  XPCOM R: ( (dsIBooleanProperty*)16F52234 )->queryInterface( 170B3F00, *0018EA58 = 16F52234 ) = 0x00000000
    0x000019C0 39837 3  XPCOM C: ( (dsIBooleanProperty*)16F52234 )->Name( 0018EAC8 )
    0x000019C0 39837 3  XPCOM R: ( (dsIBooleanProperty*)16F52234 )->Name( *0018EAC8 = Continue debug launch if target connection or program load fails ) = 0x00000000
    0x000019C0 39837 3  XPCOM C: ( (dsIProperties*)170339A0 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 39837 3  XPCOM R: ( (dsIProperties*)170339A0 )->getProperty( 0x00000002, *0018EAD8 = 16F521C8 ) = 0x00000000
    0x000019C0 39837 3  XPCOM C: ( (dsIProperty*)16F521C8 )->getPropertyType( 0018EA58 )
    0x000019C0 39837 3  XPCOM R: ( (dsIProperty*)16F521C8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39837 3  XPCOM C: ( (dsIProperty*)16F521C8 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39837 3  XPCOM R: ( (dsIProperty*)16F521C8 )->queryInterface( 170B3F00, *0018EA58 = 16F52234 ) = 0x00000000
    0x000019C0 39837 3  XPCOM C: ( (dsIBooleanProperty*)16F52234 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39837 3  XPCOM R: ( (dsIBooleanProperty*)16F52234 )->queryInterface( 170B3F00, *0018EA58 = 16F52234 ) = 0x00000000
    0x000019C0 39837 3  XPCOM C: ( (dsIProperties*)170339A0 )->Count( 0018EAF8 )
    0x000019C0 39837 3  XPCOM R: ( (dsIProperties*)170339A0 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39837 3  XPCOM C: ( (dsIProperties*)17033190 )->Count( 0018EB38 )
    0x000019C0 39837 3  XPCOM R: ( (dsIProperties*)17033190 )->Count( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 39837 3  XPCOM C: ( (dsIProperties*)1862CE08 )->Count( 0018EB78 )
    0x000019C0 39837 3  XPCOM R: ( (dsIProperties*)1862CE08 )->Count( *0018EB78 = 0x00000005 ) = 0x00000000
    0x000019C0 39837 3  XPCOM C: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000002, 0018EB58 )
    0x000019C0 39837 3  XPCOM R: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000002, *0018EB58 = 17020F28 ) = 0x00000000
    0x000019C0 39837 3  XPCOM C: ( (dsIProperty*)17020F28 )->getPropertyType( 0018EAD8 )
    0x000019C0 39837 3  XPCOM R: ( (dsIProperty*)17020F28 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 39837 3  XPCOM C: ( (dsIProperty*)17020F28 )->queryInterface( 170B3F00, 0018EAD8 )
    0x000019C0 39837 3  XPCOM R: ( (dsIProperty*)17020F28 )->queryInterface( 170B3F00, *0018EAD8 = 17020F94 ) = 0x00000000
    0x000019C0 39837 3  XPCOM C: ( (dsINode*)17020F94 )->queryInterface( 170B3F00, 0018EAD8 )
    0x000019C0 39837 3  XPCOM R: ( (dsINode*)17020F94 )->queryInterface( 170B3F00, *0018EAD8 = 17020F94 ) = 0x00000000
    0x000019C0 39837 3  XPCOM C: ( (dsINode*)17020F94 )->Name( 0018EB48 )
    0x000019C0 39837 3  XPCOM R: ( (dsINode*)17020F94 )->Name( *0018EB48 = Misc/Other Options ) = 0x00000000
    0x000019C0 39837 3  XPCOM C: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000002, 0018EB58 )
    0x000019C0 39837 3  XPCOM R: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000002, *0018EB58 = 17020F28 ) = 0x00000000
    0x000019C0 39837 3  XPCOM C: ( (dsIProperty*)17020F28 )->getPropertyType( 0018EAD8 )
    0x000019C0 39837 3  XPCOM R: ( (dsIProperty*)17020F28 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 39837 3  XPCOM C: ( (dsIProperty*)17020F28 )->queryInterface( 170B3F00, 0018EAD8 )
    0x000019C0 39837 3  XPCOM R: ( (dsIProperty*)17020F28 )->queryInterface( 170B3F00, *0018EAD8 = 17020F94 ) = 0x00000000
    0x000019C0 39837 3  XPCOM C: ( (dsINode*)17020F94 )->queryInterface( 170B3F00, 0018EAD8 )
    0x000019C0 39837 3  XPCOM R: ( (dsINode*)17020F94 )->queryInterface( 170B3F00, *0018EAD8 = 17020F94 ) = 0x00000000
    0x000019C0 39837 3  XPCOM C: ( (dsINode*)17020F94 )->getChildren( 0018EB18 )
    0x000019C0 39837 3  XPCOM R: ( (dsINode*)17020F94 )->getChildren( *0018EB18 = 170340C0 ) = 0x00000000
    0x000019C0 39837 3  XPCOM C: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000002, 0018EB58 )
    0x000019C0 39837 3  XPCOM R: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000002, *0018EB58 = 17020F28 ) = 0x00000000
    0x000019C0 39837 3  XPCOM C: ( (dsIProperty*)17020F28 )->getPropertyType( 0018EAD8 )
    0x000019C0 39838 3  XPCOM R: ( (dsIProperty*)17020F28 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 39838 3  XPCOM C: ( (dsIProperty*)17020F28 )->queryInterface( 170B3BE8, 0018EAD8 )
    0x000019C0 39838 3  XPCOM R: ( (dsIProperty*)17020F28 )->queryInterface( 170B3BE8, *0018EAD8 = 17020F94 ) = 0x00000000
    0x000019C0 39838 3  XPCOM C: ( (dsINode*)17020F94 )->queryInterface( 170B3BE8, 0018EAD8 )
    0x000019C0 39838 3  XPCOM R: ( (dsINode*)17020F94 )->queryInterface( 170B3BE8, *0018EAD8 = 17020F94 ) = 0x00000000
    0x000019C0 39838 3  XPCOM C: ( (dsINode*)17020F94 )->getChildren( 0018EB18 )
    0x000019C0 39838 3  XPCOM R: ( (dsINode*)17020F94 )->getChildren( *0018EB18 = 17033AC0 ) = 0x00000000
    0x000019C0 39838 3  XPCOM C: ( (dsIProperties*)17033AC0 )->Count( 0018EB78 )
    0x000019C0 39838 3  XPCOM R: ( (dsIProperties*)17033AC0 )->Count( *0018EB78 = 0x00000008 ) = 0x00000000
    0x000019C0 39838 3  XPCOM C: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000002, 0018EB58 )
    0x000019C0 39838 3  XPCOM R: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000002, *0018EB58 = 17020F28 ) = 0x00000000
    0x000019C0 39838 3  XPCOM C: ( (dsIProperty*)17020F28 )->getPropertyType( 0018EAD8 )
    0x000019C0 39838 3  XPCOM R: ( (dsIProperty*)17020F28 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 39838 3  XPCOM C: ( (dsIProperty*)17020F28 )->queryInterface( 170B3F00, 0018EAD8 )
    0x000019C0 39838 3  XPCOM R: ( (dsIProperty*)17020F28 )->queryInterface( 170B3F00, *0018EAD8 = 17020F94 ) = 0x00000000
    0x000019C0 39838 3  XPCOM C: ( (dsINode*)17020F94 )->queryInterface( 170B3F00, 0018EAD8 )
    0x000019C0 39838 3  XPCOM R: ( (dsINode*)17020F94 )->queryInterface( 170B3F00, *0018EAD8 = 17020F94 ) = 0x00000000
    0x000019C0 39838 3  XPCOM C: ( (dsINode*)17020F94 )->getChildren( 0018EB18 )
    0x000019C0 39838 3  XPCOM R: ( (dsINode*)17020F94 )->getChildren( *0018EB18 = 17033340 ) = 0x00000000
    0x000019C0 39838 3  XPCOM C: ( (dsIProperties*)17033340 )->Count( 0018EB38 )
    0x000019C0 39838 3  XPCOM R: ( (dsIProperties*)17033340 )->Count( *0018EB38 = 0x00000008 ) = 0x00000000
    0x000019C0 39838 3  XPCOM C: ( (dsIProperties*)17033340 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 39838 3  XPCOM R: ( (dsIProperties*)17033340 )->getProperty( 0x00000000, *0018EB18 = 17132ED0 ) = 0x00000000
    0x000019C0 39838 3  XPCOM C: ( (dsIProperty*)17132ED0 )->getPropertyType( 0018EA98 )
    0x000019C0 39838 3  XPCOM R: ( (dsIProperty*)17132ED0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39838 3  XPCOM C: ( (dsIProperty*)17132ED0 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39838 3  XPCOM R: ( (dsIProperty*)17132ED0 )->queryInterface( 170B3BE8, *0018EA98 = 17132F3C ) = 0x00000000
    0x000019C0 39838 3  XPCOM C: ( (dsIGroup*)17132F3C )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39838 3  XPCOM R: ( (dsIGroup*)17132F3C )->queryInterface( 170B3BE8, *0018EA98 = 17132F3C ) = 0x00000000
    0x000019C0 39838 3  XPCOM C: ( (dsIGroup*)17132F3C )->Name( 0018EB08 )
    0x000019C0 39838 3  XPCOM R: ( (dsIGroup*)17132F3C )->Name( *0018EB08 = OS Aware Debug Options ) = 0x00000000
    0x000019C0 39838 3  XPCOM C: ( (dsIProperties*)17033340 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 39838 3  XPCOM R: ( (dsIProperties*)17033340 )->getProperty( 0x00000000, *0018EB18 = 17132ED0 ) = 0x00000000
    0x000019C0 39838 3  XPCOM C: ( (dsIProperty*)17132ED0 )->getPropertyType( 0018EA98 )
    0x000019C0 39838 3  XPCOM R: ( (dsIProperty*)17132ED0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39838 3  XPCOM C: ( (dsIProperty*)17132ED0 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39838 3  XPCOM R: ( (dsIProperty*)17132ED0 )->queryInterface( 170B3BE8, *0018EA98 = 17132F3C ) = 0x00000000
    0x000019C0 39838 3  XPCOM C: ( (dsIGroup*)17132F3C )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39838 3  XPCOM R: ( (dsIGroup*)17132F3C )->queryInterface( 170B3BE8, *0018EA98 = 17132F3C ) = 0x00000000
    0x000019C0 39838 3  XPCOM C: ( (dsIGroup*)17132F3C )->getChildren( 0018EAD8 )
    0x000019C0 39838 3  XPCOM R: ( (dsIGroup*)17132F3C )->getChildren( *0018EAD8 = 17034780 ) = 0x00000000
    0x000019C0 39839 3  XPCOM C: ( (dsIProperties*)17033340 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 39839 3  XPCOM R: ( (dsIProperties*)17033340 )->getProperty( 0x00000000, *0018EB18 = 17132ED0 ) = 0x00000000
    0x000019C0 39839 3  XPCOM C: ( (dsIProperty*)17132ED0 )->getPropertyType( 0018EA98 )
    0x000019C0 39839 3  XPCOM R: ( (dsIProperty*)17132ED0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39839 3  XPCOM C: ( (dsIProperty*)17132ED0 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39839 3  XPCOM R: ( (dsIProperty*)17132ED0 )->queryInterface( 170B3BE8, *0018EA98 = 17132F3C ) = 0x00000000
    0x000019C0 39839 3  XPCOM C: ( (dsIGroup*)17132F3C )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39839 3  XPCOM R: ( (dsIGroup*)17132F3C )->queryInterface( 170B3BE8, *0018EA98 = 17132F3C ) = 0x00000000
    0x000019C0 39839 3  XPCOM C: ( (dsIGroup*)17132F3C )->getChildren( 0018EAD8 )
    0x000019C0 39839 3  XPCOM R: ( (dsIGroup*)17132F3C )->getChildren( *0018EAD8 = 17034A50 ) = 0x00000000
    0x000019C0 39839 3  XPCOM C: ( (dsIProperties*)17034A50 )->Count( 0018EB38 )
    0x000019C0 39839 3  XPCOM R: ( (dsIProperties*)17034A50 )->Count( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 39839 3  XPCOM C: ( (dsIProperties*)17033340 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 39839 3  XPCOM R: ( (dsIProperties*)17033340 )->getProperty( 0x00000000, *0018EB18 = 17132ED0 ) = 0x00000000
    0x000019C0 39839 3  XPCOM C: ( (dsIProperty*)17132ED0 )->getPropertyType( 0018EA98 )
    0x000019C0 39839 3  XPCOM R: ( (dsIProperty*)17132ED0 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39839 3  XPCOM C: ( (dsIProperty*)17132ED0 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39839 3  XPCOM R: ( (dsIProperty*)17132ED0 )->queryInterface( 170B3BE8, *0018EA98 = 17132F3C ) = 0x00000000
    0x000019C0 39839 3  XPCOM C: ( (dsIGroup*)17132F3C )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39839 3  XPCOM R: ( (dsIGroup*)17132F3C )->queryInterface( 170B3BE8, *0018EA98 = 17132F3C ) = 0x00000000
    0x000019C0 39839 3  XPCOM C: ( (dsIGroup*)17132F3C )->getChildren( 0018EAD8 )
    0x000019C0 39839 3  XPCOM R: ( (dsIGroup*)17132F3C )->getChildren( *0018EAD8 = 170343C0 ) = 0x00000000
    0x000019C0 39839 3  XPCOM C: ( (dsIProperties*)170343C0 )->Count( 0018EAF8 )
    0x000019C0 39839 3  XPCOM R: ( (dsIProperties*)170343C0 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39839 3  XPCOM C: ( (dsIProperties*)170343C0 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 39839 3  XPCOM R: ( (dsIProperties*)170343C0 )->getProperty( 0x00000000, *0018EAD8 = 12412EA0 ) = 0x00000000
    0x000019C0 39839 3  XPCOM C: ( (dsIProperty*)12412EA0 )->getPropertyType( 0018EA58 )
    0x000019C0 39839 3  XPCOM R: ( (dsIProperty*)12412EA0 )->getPropertyType( *0018EA58 = 0x00000003 ) = 0x00000000
    0x000019C0 39839 3  XPCOM C: ( (dsIProperty*)12412EA0 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39839 3  XPCOM R: ( (dsIProperty*)12412EA0 )->queryInterface( 170B3BE8, *0018EA58 = 12412F44 ) = 0x00000000
    0x000019C0 39839 3  XPCOM C: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39839 3  XPCOM R: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 170B3BE8, *0018EA58 = 12412F0C ) = 0x00000000
    0x000019C0 39839 3  XPCOM C: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39839 3  XPCOM R: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 170B3BE8, *0018EA58 = 12412F44 ) = 0x00000000
    0x000019C0 39839 3  XPCOM C: ( (dsIChoiceListProperty*)12412F44 )->Name( 0018EAC8 )
    0x000019C0 39839 3  XPCOM R: ( (dsIChoiceListProperty*)12412F44 )->Name( *0018EAC8 = Automatically load module symbols ) = 0x00000000
    0x000019C0 39839 3  XPCOM C: ( (dsIProperties*)170343C0 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 39839 3  XPCOM R: ( (dsIProperties*)170343C0 )->getProperty( 0x00000000, *0018EAD8 = 12412EA0 ) = 0x00000000
    0x000019C0 39839 3  XPCOM C: ( (dsIProperty*)12412EA0 )->getPropertyType( 0018EA58 )
    0x000019C0 39839 3  XPCOM R: ( (dsIProperty*)12412EA0 )->getPropertyType( *0018EA58 = 0x00000003 ) = 0x00000000
    0x000019C0 39840 3  XPCOM C: ( (dsIProperty*)12412EA0 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39840 3  XPCOM R: ( (dsIProperty*)12412EA0 )->queryInterface( 170B3BE8, *0018EA58 = 12412F44 ) = 0x00000000
    0x000019C0 39840 3  XPCOM C: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39840 3  XPCOM R: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 170B3BE8, *0018EA58 = 12412F0C ) = 0x00000000
    0x000019C0 39840 3  XPCOM C: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39840 3  XPCOM R: ( (dsIChoiceListProperty*)12412F44 )->queryInterface( 170B3BE8, *0018EA58 = 12412F44 ) = 0x00000000
    0x000019C0 39840 3  XPCOM C: ( (dsIProperties*)170343C0 )->Count( 0018EAF8 )
    0x000019C0 39840 3  XPCOM R: ( (dsIProperties*)170343C0 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39840 3  XPCOM C: ( (dsIProperties*)170343C0 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 39840 3  XPCOM R: ( (dsIProperties*)170343C0 )->getProperty( 0x00000001, *0018EAD8 = 12296138 ) = 0x00000000
    0x000019C0 39840 3  XPCOM C: ( (dsIProperty*)12296138 )->getPropertyType( 0018EA58 )
    0x000019C0 39840 3  XPCOM R: ( (dsIProperty*)12296138 )->getPropertyType( *0018EA58 = 0x00000004 ) = 0x00000000
    0x000019C0 39840 3  XPCOM C: ( (dsIProperty*)12296138 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39840 3  XPCOM R: ( (dsIProperty*)12296138 )->queryInterface( 170B3BE8, *0018EA58 = 122961A4 ) = 0x00000000
    0x000019C0 39840 3  XPCOM C: ( (dsIStringProperty*)122961A4 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39840 3  XPCOM R: ( (dsIStringProperty*)122961A4 )->queryInterface( 170B3BE8, *0018EA58 = 122961A4 ) = 0x00000000
    0x000019C0 39840 3  XPCOM C: ( (dsIStringProperty*)122961A4 )->Name( 0018EAC8 )
    0x000019C0 39840 3  XPCOM R: ( (dsIStringProperty*)122961A4 )->Name( *0018EAC8 = Module name list ) = 0x00000000
    0x000019C0 39840 3  XPCOM C: ( (dsIProperties*)170343C0 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 39840 3  XPCOM R: ( (dsIProperties*)170343C0 )->getProperty( 0x00000001, *0018EAD8 = 12296138 ) = 0x00000000
    0x000019C0 39840 3  XPCOM C: ( (dsIProperty*)12296138 )->getPropertyType( 0018EA58 )
    0x000019C0 39840 3  XPCOM R: ( (dsIProperty*)12296138 )->getPropertyType( *0018EA58 = 0x00000004 ) = 0x00000000
    0x000019C0 39840 3  XPCOM C: ( (dsIProperty*)12296138 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39840 3  XPCOM R: ( (dsIProperty*)12296138 )->queryInterface( 170B3BE8, *0018EA58 = 122961A4 ) = 0x00000000
    0x000019C0 39840 3  XPCOM C: ( (dsIStringProperty*)122961A4 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39840 3  XPCOM R: ( (dsIStringProperty*)122961A4 )->queryInterface( 170B3BE8, *0018EA58 = 122961A4 ) = 0x00000000
    0x000019C0 39840 3  XPCOM C: ( (dsIProperties*)170343C0 )->Count( 0018EAF8 )
    0x000019C0 39840 3  XPCOM R: ( (dsIProperties*)170343C0 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39840 3  XPCOM C: ( (dsIProperties*)170343C0 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 39840 3  XPCOM R: ( (dsIProperties*)170343C0 )->getProperty( 0x00000002, *0018EAD8 = 122964A8 ) = 0x00000000
    0x000019C0 39840 3  XPCOM C: ( (dsIProperty*)122964A8 )->getPropertyType( 0018EA58 )
    0x000019C0 39840 3  XPCOM R: ( (dsIProperty*)122964A8 )->getPropertyType( *0018EA58 = 0x00000004 ) = 0x00000000
    0x000019C0 39840 3  XPCOM C: ( (dsIProperty*)122964A8 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39840 3  XPCOM R: ( (dsIProperty*)122964A8 )->queryInterface( 170B3BE8, *0018EA58 = 12296514 ) = 0x00000000
    0x000019C0 39840 3  XPCOM C: ( (dsIStringProperty*)12296514 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39840 3  XPCOM R: ( (dsIStringProperty*)12296514 )->queryInterface( 170B3BE8, *0018EA58 = 12296514 ) = 0x00000000
    0x000019C0 39840 3  XPCOM C: ( (dsIStringProperty*)12296514 )->Name( 0018EAC8 )
    0x000019C0 39840 3  XPCOM R: ( (dsIStringProperty*)12296514 )->Name( *0018EAC8 = Module symbol search path ) = 0x00000000
    0x000019C0 39840 3  XPCOM C: ( (dsIProperties*)170343C0 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 39840 3  XPCOM R: ( (dsIProperties*)170343C0 )->getProperty( 0x00000002, *0018EAD8 = 122964A8 ) = 0x00000000
    0x000019C0 39841 3  XPCOM C: ( (dsIProperty*)122964A8 )->getPropertyType( 0018EA58 )
    0x000019C0 39841 3  XPCOM R: ( (dsIProperty*)122964A8 )->getPropertyType( *0018EA58 = 0x00000004 ) = 0x00000000
    0x000019C0 39841 3  XPCOM C: ( (dsIProperty*)122964A8 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39841 3  XPCOM R: ( (dsIProperty*)122964A8 )->queryInterface( 170B3BE8, *0018EA58 = 12296514 ) = 0x00000000
    0x000019C0 39841 3  XPCOM C: ( (dsIStringProperty*)12296514 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39841 3  XPCOM R: ( (dsIStringProperty*)12296514 )->queryInterface( 170B3BE8, *0018EA58 = 12296514 ) = 0x00000000
    0x000019C0 39841 3  XPCOM C: ( (dsIProperties*)170343C0 )->Count( 0018EAF8 )
    0x000019C0 39841 3  XPCOM R: ( (dsIProperties*)170343C0 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39841 3  XPCOM C: ( (dsIProperties*)17033340 )->Count( 0018EB38 )
    0x000019C0 39841 3  XPCOM R: ( (dsIProperties*)17033340 )->Count( *0018EB38 = 0x00000008 ) = 0x00000000
    0x000019C0 39841 3  XPCOM C: ( (dsIProperties*)17033340 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 39841 3  XPCOM R: ( (dsIProperties*)17033340 )->getProperty( 0x00000001, *0018EB18 = 1702F868 ) = 0x00000000
    0x000019C0 39841 3  XPCOM C: ( (dsIProperty*)1702F868 )->getPropertyType( 0018EA98 )
    0x000019C0 39841 3  XPCOM R: ( (dsIProperty*)1702F868 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 39841 3  XPCOM C: ( (dsIProperty*)1702F868 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39841 3  XPCOM R: ( (dsIProperty*)1702F868 )->queryInterface( 170B3BE8, *0018EA98 = 1702F8D4 ) = 0x00000000
    0x000019C0 39841 3  XPCOM C: ( (dsIBooleanProperty*)1702F8D4 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39841 3  XPCOM R: ( (dsIBooleanProperty*)1702F8D4 )->queryInterface( 170B3BE8, *0018EA98 = 1702F8D4 ) = 0x00000000
    0x000019C0 39841 3  XPCOM C: ( (dsIBooleanProperty*)1702F8D4 )->Name( 0018EB08 )
    0x000019C0 39841 3  XPCOM R: ( (dsIBooleanProperty*)1702F8D4 )->Name( *0018EB08 = Simulators will flush the pipeline on a halt ) = 0x00000000
    0x000019C0 39841 3  XPCOM C: ( (dsIProperties*)17033340 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 39841 3  XPCOM R: ( (dsIProperties*)17033340 )->getProperty( 0x00000001, *0018EB18 = 1702F868 ) = 0x00000000
    0x000019C0 39841 3  XPCOM C: ( (dsIProperty*)1702F868 )->getPropertyType( 0018EA98 )
    0x000019C0 39841 3  XPCOM R: ( (dsIProperty*)1702F868 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 39841 3  XPCOM C: ( (dsIProperty*)1702F868 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39841 3  XPCOM R: ( (dsIProperty*)1702F868 )->queryInterface( 170B3BE8, *0018EA98 = 1702F8D4 ) = 0x00000000
    0x000019C0 39841 3  XPCOM C: ( (dsIBooleanProperty*)1702F8D4 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39841 3  XPCOM R: ( (dsIBooleanProperty*)1702F8D4 )->queryInterface( 170B3BE8, *0018EA98 = 1702F8D4 ) = 0x00000000
    0x000019C0 39841 3  XPCOM C: ( (dsIProperties*)17033340 )->Count( 0018EB38 )
    0x000019C0 39841 3  XPCOM R: ( (dsIProperties*)17033340 )->Count( *0018EB38 = 0x00000008 ) = 0x00000000
    0x000019C0 39841 3  XPCOM C: ( (dsIProperties*)17033340 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 39841 3  XPCOM R: ( (dsIProperties*)17033340 )->getProperty( 0x00000002, *0018EB18 = 1702F8F0 ) = 0x00000000
    0x000019C0 39841 3  XPCOM C: ( (dsIProperty*)1702F8F0 )->getPropertyType( 0018EA98 )
    0x000019C0 39841 3  XPCOM R: ( (dsIProperty*)1702F8F0 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 39842 3  XPCOM C: ( (dsIProperty*)1702F8F0 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39842 3  XPCOM R: ( (dsIProperty*)1702F8F0 )->queryInterface( 170B3BE8, *0018EA98 = 1702F95C ) = 0x00000000
    0x000019C0 39842 3  XPCOM C: ( (dsIBooleanProperty*)1702F95C )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39842 3  XPCOM R: ( (dsIBooleanProperty*)1702F95C )->queryInterface( 170B3BE8, *0018EA98 = 1702F95C ) = 0x00000000
    0x000019C0 39842 3  XPCOM C: ( (dsIBooleanProperty*)1702F95C )->Name( 0018EB08 )
    0x000019C0 39842 3  XPCOM R: ( (dsIBooleanProperty*)1702F95C )->Name( *0018EB08 = Automatically step over functions without debug information when source stepping ) = 0x00000000
    0x000019C0 39842 3  XPCOM C: ( (dsIProperties*)17033340 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 39842 3  XPCOM R: ( (dsIProperties*)17033340 )->getProperty( 0x00000002, *0018EB18 = 1702F8F0 ) = 0x00000000
    0x000019C0 39842 3  XPCOM C: ( (dsIProperty*)1702F8F0 )->getPropertyType( 0018EA98 )
    0x000019C0 39842 3  XPCOM R: ( (dsIProperty*)1702F8F0 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 39842 3  XPCOM C: ( (dsIProperty*)1702F8F0 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39842 3  XPCOM R: ( (dsIProperty*)1702F8F0 )->queryInterface( 170B3BE8, *0018EA98 = 1702F95C ) = 0x00000000
    0x000019C0 39842 3  XPCOM C: ( (dsIBooleanProperty*)1702F95C )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39842 3  XPCOM R: ( (dsIBooleanProperty*)1702F95C )->queryInterface( 170B3BE8, *0018EA98 = 1702F95C ) = 0x00000000
    0x000019C0 39842 3  XPCOM C: ( (dsIProperties*)17033340 )->Count( 0018EB38 )
    0x000019C0 39842 3  XPCOM R: ( (dsIProperties*)17033340 )->Count( *0018EB38 = 0x00000008 ) = 0x00000000
    0x000019C0 39842 3  XPCOM C: ( (dsIProperties*)17033340 )->getProperty( 0x00000003, 0018EB18 )
    0x000019C0 39842 3  XPCOM R: ( (dsIProperties*)17033340 )->getProperty( 0x00000003, *0018EB18 = 1702FA88 ) = 0x00000000
    0x000019C0 39842 3  XPCOM C: ( (dsIProperty*)1702FA88 )->getPropertyType( 0018EA98 )
    0x000019C0 39842 3  XPCOM R: ( (dsIProperty*)1702FA88 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 39842 3  XPCOM C: ( (dsIProperty*)1702FA88 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39842 3  XPCOM R: ( (dsIProperty*)1702FA88 )->queryInterface( 170B3BE8, *0018EA98 = 1702FAF4 ) = 0x00000000
    0x000019C0 39842 3  XPCOM C: ( (dsIBooleanProperty*)1702FAF4 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39842 3  XPCOM R: ( (dsIBooleanProperty*)1702FAF4 )->queryInterface( 170B3BE8, *0018EA98 = 1702FAF4 ) = 0x00000000
    0x000019C0 39842 3  XPCOM C: ( (dsIBooleanProperty*)1702FAF4 )->Name( 0018EB08 )
    0x000019C0 39842 3  XPCOM R: ( (dsIBooleanProperty*)1702FAF4 )->Name( *0018EB08 = Allow power transitions while running if supported (low power running) ) = 0x00000000
    0x000019C0 39842 3  XPCOM C: ( (dsIProperties*)17033340 )->getProperty( 0x00000003, 0018EB18 )
    0x000019C0 39842 3  XPCOM R: ( (dsIProperties*)17033340 )->getProperty( 0x00000003, *0018EB18 = 1702FA88 ) = 0x00000000
    0x000019C0 39842 3  XPCOM C: ( (dsIProperty*)1702FA88 )->getPropertyType( 0018EA98 )
    0x000019C0 39842 3  XPCOM R: ( (dsIProperty*)1702FA88 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 39842 3  XPCOM C: ( (dsIProperty*)1702FA88 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39842 3  XPCOM R: ( (dsIProperty*)1702FA88 )->queryInterface( 170B3BE8, *0018EA98 = 1702FAF4 ) = 0x00000000
    0x000019C0 39842 3  XPCOM C: ( (dsIBooleanProperty*)1702FAF4 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39842 3  XPCOM R: ( (dsIBooleanProperty*)1702FAF4 )->queryInterface( 170B3BE8, *0018EA98 = 1702FAF4 ) = 0x00000000
    0x000019C0 39842 3  XPCOM C: ( (dsIProperties*)17033340 )->Count( 0018EB38 )
    0x000019C0 39842 3  XPCOM R: ( (dsIProperties*)17033340 )->Count( *0018EB38 = 0x00000008 ) = 0x00000000
    0x000019C0 39842 3  XPCOM C: ( (dsIProperties*)17033340 )->getProperty( 0x00000004, 0018EB18 )
    0x000019C0 39842 3  XPCOM R: ( (dsIProperties*)17033340 )->getProperty( 0x00000004, *0018EB18 = 1702FB10 ) = 0x00000000
    0x000019C0 39842 3  XPCOM C: ( (dsIProperty*)1702FB10 )->getPropertyType( 0018EA98 )
    0x000019C0 39842 3  XPCOM R: ( (dsIProperty*)1702FB10 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 39842 3  XPCOM C: ( (dsIProperty*)1702FB10 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39842 3  XPCOM R: ( (dsIProperty*)1702FB10 )->queryInterface( 170B3BE8, *0018EA98 = 1702FB7C ) = 0x00000000
    0x000019C0 39843 3  XPCOM C: ( (dsIBooleanProperty*)1702FB7C )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39843 3  XPCOM R: ( (dsIBooleanProperty*)1702FB7C )->queryInterface( 170B3BE8, *0018EA98 = 1702FB7C ) = 0x00000000
    0x000019C0 39843 3  XPCOM C: ( (dsIBooleanProperty*)1702FB7C )->Name( 0018EB08 )
    0x000019C0 39843 3  XPCOM R: ( (dsIBooleanProperty*)1702FB7C )->Name( *0018EB08 = Add timestamp information to target output ) = 0x00000000
    0x000019C0 39843 3  XPCOM C: ( (dsIProperties*)17033340 )->getProperty( 0x00000004, 0018EB18 )
    0x000019C0 39843 3  XPCOM R: ( (dsIProperties*)17033340 )->getProperty( 0x00000004, *0018EB18 = 1702FB10 ) = 0x00000000
    0x000019C0 39843 3  XPCOM C: ( (dsIProperty*)1702FB10 )->getPropertyType( 0018EA98 )
    0x000019C0 39843 3  XPCOM R: ( (dsIProperty*)1702FB10 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 39843 3  XPCOM C: ( (dsIProperty*)1702FB10 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39843 3  XPCOM R: ( (dsIProperty*)1702FB10 )->queryInterface( 170B3BE8, *0018EA98 = 1702FB7C ) = 0x00000000
    0x000019C0 39843 3  XPCOM C: ( (dsIBooleanProperty*)1702FB7C )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39843 3  XPCOM R: ( (dsIBooleanProperty*)1702FB7C )->queryInterface( 170B3BE8, *0018EA98 = 1702FB7C ) = 0x00000000
    0x000019C0 39843 3  XPCOM C: ( (dsIProperties*)17033340 )->Count( 0018EB38 )
    0x000019C0 39843 3  XPCOM R: ( (dsIProperties*)17033340 )->Count( *0018EB38 = 0x00000008 ) = 0x00000000
    0x000019C0 39843 3  XPCOM C: ( (dsIProperties*)17033340 )->getProperty( 0x00000005, 0018EB18 )
    0x000019C0 39843 3  XPCOM R: ( (dsIProperties*)17033340 )->getProperty( 0x00000005, *0018EB18 = 1702FB98 ) = 0x00000000
    0x000019C0 39843 3  XPCOM C: ( (dsIProperty*)1702FB98 )->getPropertyType( 0018EA98 )
    0x000019C0 39843 3  XPCOM R: ( (dsIProperty*)1702FB98 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 39843 3  XPCOM C: ( (dsIProperty*)1702FB98 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39843 3  XPCOM R: ( (dsIProperty*)1702FB98 )->queryInterface( 170B3BE8, *0018EA98 = 1702FC04 ) = 0x00000000
    0x000019C0 39843 3  XPCOM C: ( (dsIBooleanProperty*)1702FC04 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39843 3  XPCOM R: ( (dsIBooleanProperty*)1702FC04 )->queryInterface( 170B3BE8, *0018EA98 = 1702FC04 ) = 0x00000000
    0x000019C0 39843 3  XPCOM C: ( (dsIBooleanProperty*)1702FC04 )->Name( 0018EB08 )
    0x000019C0 39843 3  XPCOM R: ( (dsIBooleanProperty*)1702FC04 )->Name( *0018EB08 = Allow software breakpoints to be used ) = 0x00000000
    0x000019C0 39843 3  XPCOM C: ( (dsIProperties*)17033340 )->getProperty( 0x00000005, 0018EB18 )
    0x000019C0 39843 3  XPCOM R: ( (dsIProperties*)17033340 )->getProperty( 0x00000005, *0018EB18 = 1702FB98 ) = 0x00000000
    0x000019C0 39843 3  XPCOM C: ( (dsIProperty*)1702FB98 )->getPropertyType( 0018EA98 )
    0x000019C0 39843 3  XPCOM R: ( (dsIProperty*)1702FB98 )->getPropertyType( *0018EA98 = 0x00000000 ) = 0x00000000
    0x000019C0 39843 3  XPCOM C: ( (dsIProperty*)1702FB98 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39843 3  XPCOM R: ( (dsIProperty*)1702FB98 )->queryInterface( 170B3BE8, *0018EA98 = 1702FC04 ) = 0x00000000
    0x000019C0 39843 3  XPCOM C: ( (dsIBooleanProperty*)1702FC04 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39843 3  XPCOM R: ( (dsIBooleanProperty*)1702FC04 )->queryInterface( 170B3BE8, *0018EA98 = 1702FC04 ) = 0x00000000
    0x000019C0 39843 3  XPCOM C: ( (dsIProperties*)17033340 )->Count( 0018EB38 )
    0x000019C0 39843 3  XPCOM R: ( (dsIProperties*)17033340 )->Count( *0018EB38 = 0x00000008 ) = 0x00000000
    0x000019C0 39843 3  XPCOM C: ( (dsIProperties*)17033340 )->getProperty( 0x00000006, 0018EB18 )
    0x000019C0 39843 3  XPCOM R: ( (dsIProperties*)17033340 )->getProperty( 0x00000006, *0018EB18 = 122971B8 ) = 0x00000000
    0x000019C0 39843 3  XPCOM C: ( (dsIProperty*)122971B8 )->getPropertyType( 0018EA98 )
    0x000019C0 39843 3  XPCOM R: ( (dsIProperty*)122971B8 )->getPropertyType( *0018EA98 = 0x00000004 ) = 0x00000000
    0x000019C0 39843 3  XPCOM C: ( (dsIProperty*)122971B8 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39843 3  XPCOM R: ( (dsIProperty*)122971B8 )->queryInterface( 170B3BE8, *0018EA98 = 12297224 ) = 0x00000000
    0x000019C0 39843 3  XPCOM C: ( (dsIStringProperty*)12297224 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39843 3  XPCOM R: ( (dsIStringProperty*)12297224 )->queryInterface( 170B3BE8, *0018EA98 = 12297224 ) = 0x00000000
    0x000019C0 39844 3  XPCOM C: ( (dsIStringProperty*)12297224 )->Name( 0018EB08 )
    0x000019C0 39844 3  XPCOM R: ( (dsIStringProperty*)12297224 )->Name( *0018EB08 = Default directory for File IO:  ) = 0x00000000
    0x000019C0 39844 3  XPCOM C: ( (dsIProperties*)17033340 )->getProperty( 0x00000006, 0018EB18 )
    0x000019C0 39844 3  XPCOM R: ( (dsIProperties*)17033340 )->getProperty( 0x00000006, *0018EB18 = 122971B8 ) = 0x00000000
    0x000019C0 39844 3  XPCOM C: ( (dsIProperty*)122971B8 )->getPropertyType( 0018EA98 )
    0x000019C0 39844 3  XPCOM R: ( (dsIProperty*)122971B8 )->getPropertyType( *0018EA98 = 0x00000004 ) = 0x00000000
    0x000019C0 39844 3  XPCOM C: ( (dsIProperty*)122971B8 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39844 3  XPCOM R: ( (dsIProperty*)122971B8 )->queryInterface( 170B3BE8, *0018EA98 = 12297224 ) = 0x00000000
    0x000019C0 39844 3  XPCOM C: ( (dsIStringProperty*)12297224 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39844 3  XPCOM R: ( (dsIStringProperty*)12297224 )->queryInterface( 170B3BE8, *0018EA98 = 12297224 ) = 0x00000000
    0x000019C0 39844 3  XPCOM C: ( (dsIProperties*)17033340 )->Count( 0018EB38 )
    0x000019C0 39844 3  XPCOM R: ( (dsIProperties*)17033340 )->Count( *0018EB38 = 0x00000008 ) = 0x00000000
    0x000019C0 39844 3  XPCOM C: ( (dsIProperties*)17033340 )->getProperty( 0x00000007, 0018EB18 )
    0x000019C0 39844 3  XPCOM R: ( (dsIProperties*)17033340 )->getProperty( 0x00000007, *0018EB18 = 12412420 ) = 0x00000000
    0x000019C0 39844 3  XPCOM C: ( (dsIProperty*)12412420 )->getPropertyType( 0018EA98 )
    0x000019C0 39844 3  XPCOM R: ( (dsIProperty*)12412420 )->getPropertyType( *0018EA98 = 0x00000003 ) = 0x00000000
    0x000019C0 39844 3  XPCOM C: ( (dsIProperty*)12412420 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39844 3  XPCOM R: ( (dsIProperty*)12412420 )->queryInterface( 170B3BE8, *0018EA98 = 124124C4 ) = 0x00000000
    0x000019C0 39844 3  XPCOM C: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39844 3  XPCOM R: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 170B3BE8, *0018EA98 = 1241248C ) = 0x00000000
    0x000019C0 39844 3  XPCOM C: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39844 3  XPCOM R: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 170B3BE8, *0018EA98 = 124124C4 ) = 0x00000000
    0x000019C0 39844 3  XPCOM C: ( (dsIChoiceListProperty*)124124C4 )->Name( 0018EB08 )
    0x000019C0 39844 3  XPCOM R: ( (dsIChoiceListProperty*)124124C4 )->Name( *0018EB08 = When added to a sync group: ) = 0x00000000
    0x000019C0 39844 3  XPCOM C: ( (dsIProperties*)17033340 )->getProperty( 0x00000007, 0018EB18 )
    0x000019C0 39844 3  XPCOM R: ( (dsIProperties*)17033340 )->getProperty( 0x00000007, *0018EB18 = 12412420 ) = 0x00000000
    0x000019C0 39844 3  XPCOM C: ( (dsIProperty*)12412420 )->getPropertyType( 0018EA98 )
    0x000019C0 39844 3  XPCOM R: ( (dsIProperty*)12412420 )->getPropertyType( *0018EA98 = 0x00000003 ) = 0x00000000
    0x000019C0 39844 3  XPCOM C: ( (dsIProperty*)12412420 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39844 3  XPCOM R: ( (dsIProperty*)12412420 )->queryInterface( 170B3BE8, *0018EA98 = 124124C4 ) = 0x00000000
    0x000019C0 39844 3  XPCOM C: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39844 3  XPCOM R: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 170B3BE8, *0018EA98 = 1241248C ) = 0x00000000
    0x000019C0 39844 3  XPCOM C: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39844 3  XPCOM R: ( (dsIChoiceListProperty*)124124C4 )->queryInterface( 170B3BE8, *0018EA98 = 124124C4 ) = 0x00000000
    0x000019C0 39844 3  XPCOM C: ( (dsIProperties*)17033340 )->Count( 0018EB38 )
    0x000019C0 39844 3  XPCOM R: ( (dsIProperties*)17033340 )->Count( *0018EB38 = 0x00000008 ) = 0x00000000
    0x000019C0 39844 3  XPCOM C: ( (dsIProperties*)1862CE08 )->Count( 0018EB78 )
    0x000019C0 39844 3  XPCOM R: ( (dsIProperties*)1862CE08 )->Count( *0018EB78 = 0x00000005 ) = 0x00000000
    0x000019C0 39844 3  XPCOM C: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000003, 0018EB58 )
    0x000019C0 39844 3  XPCOM R: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000003, *0018EB58 = 17132CB0 ) = 0x00000000
    0x000019C0 39844 3  XPCOM C: ( (dsIProperty*)17132CB0 )->getPropertyType( 0018EAD8 )
    0x000019C0 39845 3  XPCOM R: ( (dsIProperty*)17132CB0 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 39845 3  XPCOM C: ( (dsIProperty*)17132CB0 )->queryInterface( 170B3BE8, 0018EAD8 )
    0x000019C0 39845 3  XPCOM R: ( (dsIProperty*)17132CB0 )->queryInterface( 170B3BE8, *0018EAD8 = 17132D1C ) = 0x00000000
    0x000019C0 39845 3  XPCOM C: ( (dsINode*)17132D1C )->queryInterface( 170B3BE8, 0018EAD8 )
    0x000019C0 39845 3  XPCOM R: ( (dsINode*)17132D1C )->queryInterface( 170B3BE8, *0018EAD8 = 17132D1C ) = 0x00000000
    0x000019C0 39845 3  XPCOM C: ( (dsINode*)17132D1C )->Name( 0018EB48 )
    0x000019C0 39845 3  XPCOM R: ( (dsINode*)17132D1C )->Name( *0018EB48 = Cortex M Disassembly Style Options ) = 0x00000000
    0x000019C0 39845 3  XPCOM C: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000003, 0018EB58 )
    0x000019C0 39845 3  XPCOM R: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000003, *0018EB58 = 17132CB0 ) = 0x00000000
    0x000019C0 39845 3  XPCOM C: ( (dsIProperty*)17132CB0 )->getPropertyType( 0018EAD8 )
    0x000019C0 39845 3  XPCOM R: ( (dsIProperty*)17132CB0 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 39845 3  XPCOM C: ( (dsIProperty*)17132CB0 )->queryInterface( 170B3BE8, 0018EAD8 )
    0x000019C0 39845 3  XPCOM R: ( (dsIProperty*)17132CB0 )->queryInterface( 170B3BE8, *0018EAD8 = 17132D1C ) = 0x00000000
    0x000019C0 39845 3  XPCOM C: ( (dsINode*)17132D1C )->queryInterface( 170B3BE8, 0018EAD8 )
    0x000019C0 39845 3  XPCOM R: ( (dsINode*)17132D1C )->queryInterface( 170B3BE8, *0018EAD8 = 17132D1C ) = 0x00000000
    0x000019C0 39845 3  XPCOM C: ( (dsINode*)17132D1C )->getChildren( 0018EB18 )
    0x000019C0 39845 3  XPCOM R: ( (dsINode*)17132D1C )->getChildren( *0018EB18 = 17033730 ) = 0x00000000
    0x000019C0 39845 3  XPCOM C: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000003, 0018EB58 )
    0x000019C0 39845 3  XPCOM R: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000003, *0018EB58 = 17132CB0 ) = 0x00000000
    0x000019C0 39845 3  XPCOM C: ( (dsIProperty*)17132CB0 )->getPropertyType( 0018EAD8 )
    0x000019C0 39845 3  XPCOM R: ( (dsIProperty*)17132CB0 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 39845 3  XPCOM C: ( (dsIProperty*)17132CB0 )->queryInterface( 170B3BE8, 0018EAD8 )
    0x000019C0 39845 3  XPCOM R: ( (dsIProperty*)17132CB0 )->queryInterface( 170B3BE8, *0018EAD8 = 17132D1C ) = 0x00000000
    0x000019C0 39845 3  XPCOM C: ( (dsINode*)17132D1C )->queryInterface( 170B3BE8, 0018EAD8 )
    0x000019C0 39845 3  XPCOM R: ( (dsINode*)17132D1C )->queryInterface( 170B3BE8, *0018EAD8 = 17132D1C ) = 0x00000000
    0x000019C0 39845 3  XPCOM C: ( (dsINode*)17132D1C )->getChildren( 0018EB18 )
    0x000019C0 39845 3  XPCOM R: ( (dsINode*)17132D1C )->getChildren( *0018EB18 = 17034D20 ) = 0x00000000
    0x000019C0 39845 3  XPCOM C: ( (dsIProperties*)17034D20 )->Count( 0018EB78 )
    0x000019C0 39845 3  XPCOM R: ( (dsIProperties*)17034D20 )->Count( *0018EB78 = 0x00000001 ) = 0x00000000
    0x000019C0 39845 3  XPCOM C: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000003, 0018EB58 )
    0x000019C0 39845 3  XPCOM R: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000003, *0018EB58 = 17132CB0 ) = 0x00000000
    0x000019C0 39845 3  XPCOM C: ( (dsIProperty*)17132CB0 )->getPropertyType( 0018EAD8 )
    0x000019C0 39845 3  XPCOM R: ( (dsIProperty*)17132CB0 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 39845 3  XPCOM C: ( (dsIProperty*)17132CB0 )->queryInterface( 170B3BE8, 0018EAD8 )
    0x000019C0 39845 3  XPCOM R: ( (dsIProperty*)17132CB0 )->queryInterface( 170B3BE8, *0018EAD8 = 17132D1C ) = 0x00000000
    0x000019C0 39845 3  XPCOM C: ( (dsINode*)17132D1C )->queryInterface( 170B3BE8, 0018EAD8 )
    0x000019C0 39845 3  XPCOM R: ( (dsINode*)17132D1C )->queryInterface( 170B3BE8, *0018EAD8 = 17132D1C ) = 0x00000000
    0x000019C0 39845 3  XPCOM C: ( (dsINode*)17132D1C )->getChildren( 0018EB18 )
    0x000019C0 39845 3  XPCOM R: ( (dsINode*)17132D1C )->getChildren( *0018EB18 = 17034090 ) = 0x00000000
    0x000019C0 39845 3  XPCOM C: ( (dsIProperties*)17034090 )->Count( 0018EB38 )
    0x000019C0 39846 3  XPCOM R: ( (dsIProperties*)17034090 )->Count( *0018EB38 = 0x00000001 ) = 0x00000000
    0x000019C0 39846 3  XPCOM C: ( (dsIProperties*)17034090 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 39846 3  XPCOM R: ( (dsIProperties*)17034090 )->getProperty( 0x00000000, *0018EB18 = 122DD968 ) = 0x00000000
    0x000019C0 39846 3  XPCOM C: ( (dsIProperty*)122DD968 )->getPropertyType( 0018EA98 )
    0x000019C0 39846 3  XPCOM R: ( (dsIProperty*)122DD968 )->getPropertyType( *0018EA98 = 0x00000003 ) = 0x00000000
    0x000019C0 39846 3  XPCOM C: ( (dsIProperty*)122DD968 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39846 3  XPCOM R: ( (dsIProperty*)122DD968 )->queryInterface( 170B3BE8, *0018EA98 = 122DDA0C ) = 0x00000000
    0x000019C0 39846 3  XPCOM C: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39846 3  XPCOM R: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 170B3BE8, *0018EA98 = 122DD9D4 ) = 0x00000000
    0x000019C0 39846 3  XPCOM C: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39846 3  XPCOM R: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 170B3BE8, *0018EA98 = 122DDA0C ) = 0x00000000
    0x000019C0 39846 3  XPCOM C: ( (dsIChoiceListProperty*)122DDA0C )->Name( 0018EB08 )
    0x000019C0 39846 3  XPCOM R: ( (dsIChoiceListProperty*)122DDA0C )->Name( *0018EB08 = Disassembly Mode ) = 0x00000000
    0x000019C0 39846 3  XPCOM C: ( (dsIProperties*)17034090 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 39846 3  XPCOM R: ( (dsIProperties*)17034090 )->getProperty( 0x00000000, *0018EB18 = 122DD968 ) = 0x00000000
    0x000019C0 39846 3  XPCOM C: ( (dsIProperty*)122DD968 )->getPropertyType( 0018EA98 )
    0x000019C0 39846 3  XPCOM R: ( (dsIProperty*)122DD968 )->getPropertyType( *0018EA98 = 0x00000003 ) = 0x00000000
    0x000019C0 39846 3  XPCOM C: ( (dsIProperty*)122DD968 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39846 3  XPCOM R: ( (dsIProperty*)122DD968 )->queryInterface( 170B3BE8, *0018EA98 = 122DDA0C ) = 0x00000000
    0x000019C0 39846 3  XPCOM C: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39846 3  XPCOM R: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 170B3BE8, *0018EA98 = 122DD9D4 ) = 0x00000000
    0x000019C0 39846 3  XPCOM C: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39846 3  XPCOM R: ( (dsIChoiceListProperty*)122DDA0C )->queryInterface( 170B3BE8, *0018EA98 = 122DDA0C ) = 0x00000000
    0x000019C0 39846 3  XPCOM C: ( (dsIProperties*)17034090 )->Count( 0018EB38 )
    0x000019C0 39846 3  XPCOM R: ( (dsIProperties*)17034090 )->Count( *0018EB38 = 0x00000001 ) = 0x00000000
    0x000019C0 39846 3  XPCOM C: ( (dsIProperties*)1862CE08 )->Count( 0018EB78 )
    0x000019C0 39846 3  XPCOM R: ( (dsIProperties*)1862CE08 )->Count( *0018EB78 = 0x00000005 ) = 0x00000000
    0x000019C0 39846 3  XPCOM C: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000004, 0018EB58 )
    0x000019C0 39846 3  XPCOM R: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000004, *0018EB58 = 16F52690 ) = 0x00000000
    0x000019C0 39846 3  XPCOM C: ( (dsIProperty*)16F52690 )->getPropertyType( 0018EAD8 )
    0x000019C0 39846 3  XPCOM R: ( (dsIProperty*)16F52690 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 39846 3  XPCOM C: ( (dsIProperty*)16F52690 )->queryInterface( 170B3BE8, 0018EAD8 )
    0x000019C0 39846 3  XPCOM R: ( (dsIProperty*)16F52690 )->queryInterface( 170B3BE8, *0018EAD8 = 16F526FC ) = 0x00000000
    0x000019C0 39846 3  XPCOM C: ( (dsINode*)16F526FC )->queryInterface( 170B3BE8, 0018EAD8 )
    0x000019C0 39846 3  XPCOM R: ( (dsINode*)16F526FC )->queryInterface( 170B3BE8, *0018EAD8 = 16F526FC ) = 0x00000000
    0x000019C0 39846 3  XPCOM C: ( (dsINode*)16F526FC )->Name( 0018EB48 )
    0x000019C0 39846 3  XPCOM R: ( (dsINode*)16F526FC )->Name( *0018EB48 = Flash Settings ) = 0x00000000
    0x000019C0 39846 3  XPCOM C: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000004, 0018EB58 )
    0x000019C0 39846 3  XPCOM R: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000004, *0018EB58 = 16F52690 ) = 0x00000000
    0x000019C0 39846 3  XPCOM C: ( (dsIProperty*)16F52690 )->getPropertyType( 0018EAD8 )
    0x000019C0 39846 3  XPCOM R: ( (dsIProperty*)16F52690 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 39846 3  XPCOM C: ( (dsIProperty*)16F52690 )->queryInterface( 170B3BE8, 0018EAD8 )
    0x000019C0 39846 3  XPCOM R: ( (dsIProperty*)16F52690 )->queryInterface( 170B3BE8, *0018EAD8 = 16F526FC ) = 0x00000000
    0x000019C0 39847 3  XPCOM C: ( (dsINode*)16F526FC )->queryInterface( 170B3BE8, 0018EAD8 )
    0x000019C0 39847 3  XPCOM R: ( (dsINode*)16F526FC )->queryInterface( 170B3BE8, *0018EAD8 = 16F526FC ) = 0x00000000
    0x000019C0 39847 3  XPCOM C: ( (dsINode*)16F526FC )->getChildren( 0018EB18 )
    0x000019C0 39847 3  XPCOM R: ( (dsINode*)16F526FC )->getChildren( *0018EB18 = 17033EB0 ) = 0x00000000
    0x000019C0 39847 3  XPCOM C: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000004, 0018EB58 )
    0x000019C0 39847 3  XPCOM R: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000004, *0018EB58 = 16F52690 ) = 0x00000000
    0x000019C0 39847 3  XPCOM C: ( (dsIProperty*)16F52690 )->getPropertyType( 0018EAD8 )
    0x000019C0 39847 3  XPCOM R: ( (dsIProperty*)16F52690 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 39847 3  XPCOM C: ( (dsIProperty*)16F52690 )->queryInterface( 170B3F00, 0018EAD8 )
    0x000019C0 39847 3  XPCOM R: ( (dsIProperty*)16F52690 )->queryInterface( 170B3F00, *0018EAD8 = 16F526FC ) = 0x00000000
    0x000019C0 39847 3  XPCOM C: ( (dsINode*)16F526FC )->queryInterface( 170B3F00, 0018EAD8 )
    0x000019C0 39847 3  XPCOM R: ( (dsINode*)16F526FC )->queryInterface( 170B3F00, *0018EAD8 = 16F526FC ) = 0x00000000
    0x000019C0 39847 3  XPCOM C: ( (dsINode*)16F526FC )->getChildren( 0018EB18 )
    0x000019C0 39847 3  XPCOM R: ( (dsINode*)16F526FC )->getChildren( *0018EB18 = 170336A0 ) = 0x00000000
    0x000019C0 39847 3  XPCOM C: ( (dsIProperties*)170336A0 )->Count( 0018EB78 )
    0x000019C0 39847 3  XPCOM R: ( (dsIProperties*)170336A0 )->Count( *0018EB78 = 0x00000009 ) = 0x00000000
    0x000019C0 39847 3  XPCOM C: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000004, 0018EB58 )
    0x000019C0 39847 3  XPCOM R: ( (dsIProperties*)1862CE08 )->getProperty( 0x00000004, *0018EB58 = 16F52690 ) = 0x00000000
    0x000019C0 39847 3  XPCOM C: ( (dsIProperty*)16F52690 )->getPropertyType( 0018EAD8 )
    0x000019C0 39847 3  XPCOM R: ( (dsIProperty*)16F52690 )->getPropertyType( *0018EAD8 = 0x00000005 ) = 0x00000000
    0x000019C0 39847 3  XPCOM C: ( (dsIProperty*)16F52690 )->queryInterface( 170B3BE8, 0018EAD8 )
    0x000019C0 39847 3  XPCOM R: ( (dsIProperty*)16F52690 )->queryInterface( 170B3BE8, *0018EAD8 = 16F526FC ) = 0x00000000
    0x000019C0 39847 3  XPCOM C: ( (dsINode*)16F526FC )->queryInterface( 170B3BE8, 0018EAD8 )
    0x000019C0 39847 3  XPCOM R: ( (dsINode*)16F526FC )->queryInterface( 170B3BE8, *0018EAD8 = 16F526FC ) = 0x00000000
    0x000019C0 39847 3  XPCOM C: ( (dsINode*)16F526FC )->getChildren( 0018EB18 )
    0x000019C0 39847 3  XPCOM R: ( (dsINode*)16F526FC )->getChildren( *0018EB18 = 170332E0 ) = 0x00000000
    0x000019C0 39847 3  XPCOM C: ( (dsIProperties*)170332E0 )->Count( 0018EB38 )
    0x000019C0 39847 3  XPCOM R: ( (dsIProperties*)170332E0 )->Count( *0018EB38 = 0x00000009 ) = 0x00000000
    0x000019C0 39847 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 39847 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000000, *0018EB18 = 185E9200 ) = 0x00000000
    0x000019C0 39847 3  XPCOM C: ( (dsIProperty*)185E9200 )->getPropertyType( 0018EA98 )
    0x000019C0 39847 3  XPCOM R: ( (dsIProperty*)185E9200 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39847 3  XPCOM C: ( (dsIProperty*)185E9200 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39847 3  XPCOM R: ( (dsIProperty*)185E9200 )->queryInterface( 170B3F00, *0018EA98 = 185E926C ) = 0x00000000
    0x000019C0 39847 3  XPCOM C: ( (dsIGroup*)185E926C )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39847 3  XPCOM R: ( (dsIGroup*)185E926C )->queryInterface( 170B3F00, *0018EA98 = 185E926C ) = 0x00000000
    0x000019C0 39847 3  XPCOM C: ( (dsIGroup*)185E926C )->Name( 0018EB08 )
    0x000019C0 39847 3  XPCOM R: ( (dsIGroup*)185E926C )->Name( *0018EB08 = Flash Settings ) = 0x00000000
    0x000019C0 39847 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 39847 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000000, *0018EB18 = 185E9200 ) = 0x00000000
    0x000019C0 39848 3  XPCOM C: ( (dsIProperty*)185E9200 )->getPropertyType( 0018EA98 )
    0x000019C0 39848 3  XPCOM R: ( (dsIProperty*)185E9200 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39848 3  XPCOM C: ( (dsIProperty*)185E9200 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39848 3  XPCOM R: ( (dsIProperty*)185E9200 )->queryInterface( 170B3F00, *0018EA98 = 185E926C ) = 0x00000000
    0x000019C0 39848 3  XPCOM C: ( (dsIGroup*)185E926C )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39848 3  XPCOM R: ( (dsIGroup*)185E926C )->queryInterface( 170B3F00, *0018EA98 = 185E926C ) = 0x00000000
    0x000019C0 39848 3  XPCOM C: ( (dsIGroup*)185E926C )->getChildren( 0018EAD8 )
    0x000019C0 39848 3  XPCOM R: ( (dsIGroup*)185E926C )->getChildren( *0018EAD8 = 17034E10 ) = 0x00000000
    0x000019C0 39848 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 39848 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000000, *0018EB18 = 185E9200 ) = 0x00000000
    0x000019C0 39848 3  XPCOM C: ( (dsIProperty*)185E9200 )->getPropertyType( 0018EA98 )
    0x000019C0 39848 3  XPCOM R: ( (dsIProperty*)185E9200 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39848 3  XPCOM C: ( (dsIProperty*)185E9200 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39848 3  XPCOM R: ( (dsIProperty*)185E9200 )->queryInterface( 170B3F00, *0018EA98 = 185E926C ) = 0x00000000
    0x000019C0 39848 3  XPCOM C: ( (dsIGroup*)185E926C )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39848 3  XPCOM R: ( (dsIGroup*)185E926C )->queryInterface( 170B3F00, *0018EA98 = 185E926C ) = 0x00000000
    0x000019C0 39848 3  XPCOM C: ( (dsIGroup*)185E926C )->getChildren( 0018EAD8 )
    0x000019C0 39848 3  XPCOM R: ( (dsIGroup*)185E926C )->getChildren( *0018EAD8 = 17033160 ) = 0x00000000
    0x000019C0 39848 3  XPCOM C: ( (dsIProperties*)17033160 )->Count( 0018EB38 )
    0x000019C0 39848 3  XPCOM R: ( (dsIProperties*)17033160 )->Count( *0018EB38 = 0x00000002 ) = 0x00000000
    0x000019C0 39848 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000000, 0018EB18 )
    0x000019C0 39848 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000000, *0018EB18 = 185E9200 ) = 0x00000000
    0x000019C0 39848 3  XPCOM C: ( (dsIProperty*)185E9200 )->getPropertyType( 0018EA98 )
    0x000019C0 39848 3  XPCOM R: ( (dsIProperty*)185E9200 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39848 3  XPCOM C: ( (dsIProperty*)185E9200 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39848 3  XPCOM R: ( (dsIProperty*)185E9200 )->queryInterface( 170B3F00, *0018EA98 = 185E926C ) = 0x00000000
    0x000019C0 39848 3  XPCOM C: ( (dsIGroup*)185E926C )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39848 3  XPCOM R: ( (dsIGroup*)185E926C )->queryInterface( 170B3F00, *0018EA98 = 185E926C ) = 0x00000000
    0x000019C0 39848 3  XPCOM C: ( (dsIGroup*)185E926C )->getChildren( 0018EAD8 )
    0x000019C0 39848 3  XPCOM R: ( (dsIGroup*)185E926C )->getChildren( *0018EAD8 = 17034510 ) = 0x00000000
    0x000019C0 39848 3  XPCOM C: ( (dsIProperties*)17034510 )->Count( 0018EAF8 )
    0x000019C0 39848 3  XPCOM R: ( (dsIProperties*)17034510 )->Count( *0018EAF8 = 0x00000002 ) = 0x00000000
    0x000019C0 39848 3  XPCOM C: ( (dsIProperties*)17034510 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 39848 3  XPCOM R: ( (dsIProperties*)17034510 )->getProperty( 0x00000000, *0018EAD8 = 005AFD50 ) = 0x00000000
    0x000019C0 39848 3  XPCOM C: ( (dsIProperty*)005AFD50 )->getPropertyType( 0018EA58 )
    0x000019C0 39848 3  XPCOM R: ( (dsIProperty*)005AFD50 )->getPropertyType( *0018EA58 = 0x00000001 ) = 0x00000000
    0x000019C0 39848 3  XPCOM C: ( (dsIProperty*)005AFD50 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39848 3  XPCOM R: ( (dsIProperty*)005AFD50 )->queryInterface( 170B3F00, *0018EA58 = 005AFDBC ) = 0x00000000
    0x000019C0 39848 3  XPCOM C: ( (dsINumericProperty*)005AFDBC )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39848 3  XPCOM R: ( (dsINumericProperty*)005AFDBC )->queryInterface( 170B3F00, *0018EA58 = 005AFDBC ) = 0x00000000
    0x000019C0 39848 3  XPCOM C: ( (dsINumericProperty*)005AFDBC )->Name( 0018EAC8 )
    0x000019C0 39848 3  XPCOM R: ( (dsINumericProperty*)005AFDBC )->Name( *0018EAC8 = Crystal Frequency: (MHz) ) = 0x00000000
    0x000019C0 39849 3  XPCOM C: ( (dsIProperties*)17034510 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 39849 3  XPCOM R: ( (dsIProperties*)17034510 )->getProperty( 0x00000000, *0018EAD8 = 005AFD50 ) = 0x00000000
    0x000019C0 39849 3  XPCOM C: ( (dsIProperty*)005AFD50 )->getPropertyType( 0018EA58 )
    0x000019C0 39849 3  XPCOM R: ( (dsIProperty*)005AFD50 )->getPropertyType( *0018EA58 = 0x00000001 ) = 0x00000000
    0x000019C0 39849 3  XPCOM C: ( (dsIProperty*)005AFD50 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39849 3  XPCOM R: ( (dsIProperty*)005AFD50 )->queryInterface( 170B3F00, *0018EA58 = 005AFDBC ) = 0x00000000
    0x000019C0 39849 3  XPCOM C: ( (dsINumericProperty*)005AFDBC )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39849 3  XPCOM R: ( (dsINumericProperty*)005AFDBC )->queryInterface( 170B3F00, *0018EA58 = 005AFDBC ) = 0x00000000
    0x000019C0 39849 3  XPCOM C: ( (dsIProperties*)17034510 )->Count( 0018EAF8 )
    0x000019C0 39849 3  XPCOM R: ( (dsIProperties*)17034510 )->Count( *0018EAF8 = 0x00000002 ) = 0x00000000
    0x000019C0 39849 3  XPCOM C: ( (dsIProperties*)17034510 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 39849 3  XPCOM R: ( (dsIProperties*)17034510 )->getProperty( 0x00000001, *0018EAD8 = 185E9860 ) = 0x00000000
    0x000019C0 39849 3  XPCOM C: ( (dsIProperty*)185E9860 )->getPropertyType( 0018EA58 )
    0x000019C0 39849 3  XPCOM R: ( (dsIProperty*)185E9860 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39849 3  XPCOM C: ( (dsIProperty*)185E9860 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39849 3  XPCOM R: ( (dsIProperty*)185E9860 )->queryInterface( 170B3F00, *0018EA58 = 185E98CC ) = 0x00000000
    0x000019C0 39849 3  XPCOM C: ( (dsIBooleanProperty*)185E98CC )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39849 3  XPCOM R: ( (dsIBooleanProperty*)185E98CC )->queryInterface( 170B3F00, *0018EA58 = 185E98CC ) = 0x00000000
    0x000019C0 39849 3  XPCOM C: ( (dsIBooleanProperty*)185E98CC )->Name( 0018EAC8 )
    0x000019C0 39849 3  XPCOM R: ( (dsIBooleanProperty*)185E98CC )->Name( *0018EAC8 = Reset target during program load to Flash memory ) = 0x00000000
    0x000019C0 39849 3  XPCOM C: ( (dsIProperties*)17034510 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 39849 3  XPCOM R: ( (dsIProperties*)17034510 )->getProperty( 0x00000001, *0018EAD8 = 185E9860 ) = 0x00000000
    0x000019C0 39849 3  XPCOM C: ( (dsIProperty*)185E9860 )->getPropertyType( 0018EA58 )
    0x000019C0 39849 3  XPCOM R: ( (dsIProperty*)185E9860 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39849 3  XPCOM C: ( (dsIProperty*)185E9860 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39849 3  XPCOM R: ( (dsIProperty*)185E9860 )->queryInterface( 170B3F00, *0018EA58 = 185E98CC ) = 0x00000000
    0x000019C0 39849 3  XPCOM C: ( (dsIBooleanProperty*)185E98CC )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39849 3  XPCOM R: ( (dsIBooleanProperty*)185E98CC )->queryInterface( 170B3F00, *0018EA58 = 185E98CC ) = 0x00000000
    0x000019C0 39849 3  XPCOM C: ( (dsIProperties*)17034510 )->Count( 0018EAF8 )
    0x000019C0 39849 3  XPCOM R: ( (dsIProperties*)17034510 )->Count( *0018EAF8 = 0x00000002 ) = 0x00000000
    0x000019C0 39849 3  XPCOM C: ( (dsIProperties*)170332E0 )->Count( 0018EB38 )
    0x000019C0 39849 3  XPCOM R: ( (dsIProperties*)170332E0 )->Count( *0018EB38 = 0x00000009 ) = 0x00000000
    0x000019C0 39849 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 39849 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000001, *0018EB18 = 185E9288 ) = 0x00000000
    0x000019C0 39849 3  XPCOM C: ( (dsIProperty*)185E9288 )->getPropertyType( 0018EA98 )
    0x000019C0 39849 3  XPCOM R: ( (dsIProperty*)185E9288 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39850 3  XPCOM C: ( (dsIProperty*)185E9288 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39850 3  XPCOM R: ( (dsIProperty*)185E9288 )->queryInterface( 170B3F00, *0018EA98 = 185E92F4 ) = 0x00000000
    0x000019C0 39850 3  XPCOM C: ( (dsIGroup*)185E92F4 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39850 3  XPCOM R: ( (dsIGroup*)185E92F4 )->queryInterface( 170B3F00, *0018EA98 = 185E92F4 ) = 0x00000000
    0x000019C0 39850 3  XPCOM C: ( (dsIGroup*)185E92F4 )->Name( 0018EB08 )
    0x000019C0 39850 3  XPCOM R: ( (dsIGroup*)185E92F4 )->Name( *0018EB08 = Program Load Settings ) = 0x00000000
    0x000019C0 39850 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 39850 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000001, *0018EB18 = 185E9288 ) = 0x00000000
    0x000019C0 39850 3  XPCOM C: ( (dsIProperty*)185E9288 )->getPropertyType( 0018EA98 )
    0x000019C0 39850 3  XPCOM R: ( (dsIProperty*)185E9288 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39850 3  XPCOM C: ( (dsIProperty*)185E9288 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39850 3  XPCOM R: ( (dsIProperty*)185E9288 )->queryInterface( 170B3F00, *0018EA98 = 185E92F4 ) = 0x00000000
    0x000019C0 39850 3  XPCOM C: ( (dsIGroup*)185E92F4 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39850 3  XPCOM R: ( (dsIGroup*)185E92F4 )->queryInterface( 170B3F00, *0018EA98 = 185E92F4 ) = 0x00000000
    0x000019C0 39850 3  XPCOM C: ( (dsIGroup*)185E92F4 )->getChildren( 0018EAD8 )
    0x000019C0 39850 3  XPCOM R: ( (dsIGroup*)185E92F4 )->getChildren( *0018EAD8 = 17033D60 ) = 0x00000000
    0x000019C0 39850 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 39850 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000001, *0018EB18 = 185E9288 ) = 0x00000000
    0x000019C0 39850 3  XPCOM C: ( (dsIProperty*)185E9288 )->getPropertyType( 0018EA98 )
    0x000019C0 39850 3  XPCOM R: ( (dsIProperty*)185E9288 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39850 3  XPCOM C: ( (dsIProperty*)185E9288 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39850 3  XPCOM R: ( (dsIProperty*)185E9288 )->queryInterface( 170B3F00, *0018EA98 = 185E92F4 ) = 0x00000000
    0x000019C0 39850 3  XPCOM C: ( (dsIGroup*)185E92F4 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39850 3  XPCOM R: ( (dsIGroup*)185E92F4 )->queryInterface( 170B3F00, *0018EA98 = 185E92F4 ) = 0x00000000
    0x000019C0 39850 3  XPCOM C: ( (dsIGroup*)185E92F4 )->getChildren( 0018EAD8 )
    0x000019C0 39850 3  XPCOM R: ( (dsIGroup*)185E92F4 )->getChildren( *0018EAD8 = 17034450 ) = 0x00000000
    0x000019C0 39850 3  XPCOM C: ( (dsIProperties*)17034450 )->Count( 0018EB38 )
    0x000019C0 39850 3  XPCOM R: ( (dsIProperties*)17034450 )->Count( *0018EB38 = 0x00000003 ) = 0x00000000
    0x000019C0 39850 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000001, 0018EB18 )
    0x000019C0 39850 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000001, *0018EB18 = 185E9288 ) = 0x00000000
    0x000019C0 39850 3  XPCOM C: ( (dsIProperty*)185E9288 )->getPropertyType( 0018EA98 )
    0x000019C0 39850 3  XPCOM R: ( (dsIProperty*)185E9288 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39850 3  XPCOM C: ( (dsIProperty*)185E9288 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39850 3  XPCOM R: ( (dsIProperty*)185E9288 )->queryInterface( 170B3F00, *0018EA98 = 185E92F4 ) = 0x00000000
    0x000019C0 39850 3  XPCOM C: ( (dsIGroup*)185E92F4 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39850 3  XPCOM R: ( (dsIGroup*)185E92F4 )->queryInterface( 170B3F00, *0018EA98 = 185E92F4 ) = 0x00000000
    0x000019C0 39851 3  XPCOM C: ( (dsIGroup*)185E92F4 )->getChildren( 0018EAD8 )
    0x000019C0 39851 3  XPCOM R: ( (dsIGroup*)185E92F4 )->getChildren( *0018EAD8 = 17033A60 ) = 0x00000000
    0x000019C0 39851 3  XPCOM C: ( (dsIProperties*)17033A60 )->Count( 0018EAF8 )
    0x000019C0 39851 3  XPCOM R: ( (dsIProperties*)17033A60 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39851 3  XPCOM C: ( (dsIProperties*)17033A60 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 39851 3  XPCOM R: ( (dsIProperties*)17033A60 )->getProperty( 0x00000000, *0018EAD8 = 12412060 ) = 0x00000000
    0x000019C0 39851 3  XPCOM C: ( (dsIProperty*)12412060 )->getPropertyType( 0018EA58 )
    0x000019C0 39851 3  XPCOM R: ( (dsIProperty*)12412060 )->getPropertyType( *0018EA58 = 0x00000003 ) = 0x00000000
    0x000019C0 39851 3  XPCOM C: ( (dsIProperty*)12412060 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39851 3  XPCOM R: ( (dsIProperty*)12412060 )->queryInterface( 170B3F00, *0018EA58 = 12412104 ) = 0x00000000
    0x000019C0 39851 3  XPCOM C: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39851 3  XPCOM R: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 170B3F00, *0018EA58 = 124120CC ) = 0x00000000
    0x000019C0 39851 3  XPCOM C: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39851 3  XPCOM R: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 170B3F00, *0018EA58 = 12412104 ) = 0x00000000
    0x000019C0 39851 3  XPCOM C: ( (dsIChoiceListProperty*)12412104 )->Name( 0018EAC8 )
    0x000019C0 39851 3  XPCOM R: ( (dsIChoiceListProperty*)12412104 )->Name( *0018EAC8 = Erase Method ) = 0x00000000
    0x000019C0 39851 3  XPCOM C: ( (dsIProperties*)17033A60 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 39851 3  XPCOM R: ( (dsIProperties*)17033A60 )->getProperty( 0x00000000, *0018EAD8 = 12412060 ) = 0x00000000
    0x000019C0 39851 3  XPCOM C: ( (dsIProperty*)12412060 )->getPropertyType( 0018EA58 )
    0x000019C0 39851 3  XPCOM R: ( (dsIProperty*)12412060 )->getPropertyType( *0018EA58 = 0x00000003 ) = 0x00000000
    0x000019C0 39851 3  XPCOM C: ( (dsIProperty*)12412060 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39851 3  XPCOM R: ( (dsIProperty*)12412060 )->queryInterface( 170B3F00, *0018EA58 = 12412104 ) = 0x00000000
    0x000019C0 39851 3  XPCOM C: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39851 3  XPCOM R: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 170B3F00, *0018EA58 = 124120CC ) = 0x00000000
    0x000019C0 39851 3  XPCOM C: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39851 3  XPCOM R: ( (dsIChoiceListProperty*)12412104 )->queryInterface( 170B3F00, *0018EA58 = 12412104 ) = 0x00000000
    0x000019C0 39851 3  XPCOM C: ( (dsIProperties*)17033A60 )->Count( 0018EAF8 )
    0x000019C0 39851 3  XPCOM R: ( (dsIProperties*)17033A60 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39851 3  XPCOM C: ( (dsIProperties*)17033A60 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 39851 3  XPCOM R: ( (dsIProperties*)17033A60 )->getProperty( 0x00000001, *0018EAD8 = 185E98E8 ) = 0x00000000
    0x000019C0 39851 3  XPCOM C: ( (dsIProperty*)185E98E8 )->getPropertyType( 0018EA58 )
    0x000019C0 39851 3  XPCOM R: ( (dsIProperty*)185E98E8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39851 3  XPCOM C: ( (dsIProperty*)185E98E8 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39851 3  XPCOM R: ( (dsIProperty*)185E98E8 )->queryInterface( 170B3F00, *0018EA58 = 185E9954 ) = 0x00000000
    0x000019C0 39851 3  XPCOM C: ( (dsIBooleanProperty*)185E9954 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39851 3  XPCOM R: ( (dsIBooleanProperty*)185E9954 )->queryInterface( 170B3F00, *0018EA58 = 185E9954 ) = 0x00000000
    0x000019C0 39851 3  XPCOM C: ( (dsIBooleanProperty*)185E9954 )->Name( 0018EAC8 )
    0x000019C0 39851 3  XPCOM R: ( (dsIBooleanProperty*)185E9954 )->Name( *0018EAC8 = Perform Blank Check on Flash memory before load program ) = 0x00000000
    0x000019C0 39851 3  XPCOM C: ( (dsIProperties*)17033A60 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 39851 3  XPCOM R: ( (dsIProperties*)17033A60 )->getProperty( 0x00000001, *0018EAD8 = 185E98E8 ) = 0x00000000
    0x000019C0 39851 3  XPCOM C: ( (dsIProperty*)185E98E8 )->getPropertyType( 0018EA58 )
    0x000019C0 39851 3  XPCOM R: ( (dsIProperty*)185E98E8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39851 3  XPCOM C: ( (dsIProperty*)185E98E8 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39851 3  XPCOM R: ( (dsIProperty*)185E98E8 )->queryInterface( 170B3F00, *0018EA58 = 185E9954 ) = 0x00000000
    0x000019C0 39852 3  XPCOM C: ( (dsIBooleanProperty*)185E9954 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39852 3  XPCOM R: ( (dsIBooleanProperty*)185E9954 )->queryInterface( 170B3F00, *0018EA58 = 185E9954 ) = 0x00000000
    0x000019C0 39852 3  XPCOM C: ( (dsIProperties*)17033A60 )->Count( 0018EAF8 )
    0x000019C0 39852 3  XPCOM R: ( (dsIProperties*)17033A60 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39852 3  XPCOM C: ( (dsIProperties*)17033A60 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 39852 3  XPCOM R: ( (dsIProperties*)17033A60 )->getProperty( 0x00000002, *0018EAD8 = 16EF8CD8 ) = 0x00000000
    0x000019C0 39852 3  XPCOM C: ( (dsIProperty*)16EF8CD8 )->getPropertyType( 0018EA58 )
    0x000019C0 39852 3  XPCOM R: ( (dsIProperty*)16EF8CD8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39852 3  XPCOM C: ( (dsIProperty*)16EF8CD8 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39852 3  XPCOM R: ( (dsIProperty*)16EF8CD8 )->queryInterface( 170B3F00, *0018EA58 = 16EF8D44 ) = 0x00000000
    0x000019C0 39852 3  XPCOM C: ( (dsIBooleanProperty*)16EF8D44 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39852 3  XPCOM R: ( (dsIBooleanProperty*)16EF8D44 )->queryInterface( 170B3F00, *0018EA58 = 16EF8D44 ) = 0x00000000
    0x000019C0 39852 3  XPCOM C: ( (dsIBooleanProperty*)16EF8D44 )->Name( 0018EAC8 )
    0x000019C0 39852 3  XPCOM R: ( (dsIBooleanProperty*)16EF8D44 )->Name( *0018EAC8 = Calculate CRC32 on entire Flash Memory after load program ) = 0x00000000
    0x000019C0 39852 3  XPCOM C: ( (dsIProperties*)17033A60 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 39852 3  XPCOM R: ( (dsIProperties*)17033A60 )->getProperty( 0x00000002, *0018EAD8 = 16EF8CD8 ) = 0x00000000
    0x000019C0 39852 3  XPCOM C: ( (dsIProperty*)16EF8CD8 )->getPropertyType( 0018EA58 )
    0x000019C0 39852 3  XPCOM R: ( (dsIProperty*)16EF8CD8 )->getPropertyType( *0018EA58 = 0x00000000 ) = 0x00000000
    0x000019C0 39852 3  XPCOM C: ( (dsIProperty*)16EF8CD8 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39852 3  XPCOM R: ( (dsIProperty*)16EF8CD8 )->queryInterface( 170B3F00, *0018EA58 = 16EF8D44 ) = 0x00000000
    0x000019C0 39852 3  XPCOM C: ( (dsIBooleanProperty*)16EF8D44 )->queryInterface( 170B3F00, 0018EA58 )
    0x000019C0 39852 3  XPCOM R: ( (dsIBooleanProperty*)16EF8D44 )->queryInterface( 170B3F00, *0018EA58 = 16EF8D44 ) = 0x00000000
    0x000019C0 39852 3  XPCOM C: ( (dsIProperties*)17033A60 )->Count( 0018EAF8 )
    0x000019C0 39852 3  XPCOM R: ( (dsIProperties*)17033A60 )->Count( *0018EAF8 = 0x00000003 ) = 0x00000000
    0x000019C0 39852 3  XPCOM C: ( (dsIProperties*)170332E0 )->Count( 0018EB38 )
    0x000019C0 39852 3  XPCOM R: ( (dsIProperties*)170332E0 )->Count( *0018EB38 = 0x00000009 ) = 0x00000000
    0x000019C0 39852 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 39852 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000002, *0018EB18 = 185E9310 ) = 0x00000000
    0x000019C0 39852 3  XPCOM C: ( (dsIProperty*)185E9310 )->getPropertyType( 0018EA98 )
    0x000019C0 39852 3  XPCOM R: ( (dsIProperty*)185E9310 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39852 3  XPCOM C: ( (dsIProperty*)185E9310 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39852 3  XPCOM R: ( (dsIProperty*)185E9310 )->queryInterface( 170B3F00, *0018EA98 = 185E937C ) = 0x00000000
    0x000019C0 39852 3  XPCOM C: ( (dsIGroup*)185E937C )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39852 3  XPCOM R: ( (dsIGroup*)185E937C )->queryInterface( 170B3F00, *0018EA98 = 185E937C ) = 0x00000000
    0x000019C0 39852 3  XPCOM C: ( (dsIGroup*)185E937C )->Name( 0018EB08 )
    0x000019C0 39852 3  XPCOM R: ( (dsIGroup*)185E937C )->Name( *0018EB08 = Erase ) = 0x00000000
    0x000019C0 39852 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 39852 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000002, *0018EB18 = 185E9310 ) = 0x00000000
    0x000019C0 39852 3  XPCOM C: ( (dsIProperty*)185E9310 )->getPropertyType( 0018EA98 )
    0x000019C0 39852 3  XPCOM R: ( (dsIProperty*)185E9310 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39852 3  XPCOM C: ( (dsIProperty*)185E9310 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39852 3  XPCOM R: ( (dsIProperty*)185E9310 )->queryInterface( 170B3F00, *0018EA98 = 185E937C ) = 0x00000000
    0x000019C0 39852 3  XPCOM C: ( (dsIGroup*)185E937C )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39852 3  XPCOM R: ( (dsIGroup*)185E937C )->queryInterface( 170B3F00, *0018EA98 = 185E937C ) = 0x00000000
    0x000019C0 39853 3  XPCOM C: ( (dsIGroup*)185E937C )->getChildren( 0018EAD8 )
    0x000019C0 39853 3  XPCOM R: ( (dsIGroup*)185E937C )->getChildren( *0018EAD8 = 17033910 ) = 0x00000000
    0x000019C0 39853 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 39853 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000002, *0018EB18 = 185E9310 ) = 0x00000000
    0x000019C0 39853 3  XPCOM C: ( (dsIProperty*)185E9310 )->getPropertyType( 0018EA98 )
    0x000019C0 39853 3  XPCOM R: ( (dsIProperty*)185E9310 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39853 3  XPCOM C: ( (dsIProperty*)185E9310 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39853 3  XPCOM R: ( (dsIProperty*)185E9310 )->queryInterface( 170B3BE8, *0018EA98 = 185E937C ) = 0x00000000
    0x000019C0 39853 3  XPCOM C: ( (dsIGroup*)185E937C )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39853 3  XPCOM R: ( (dsIGroup*)185E937C )->queryInterface( 170B3BE8, *0018EA98 = 185E937C ) = 0x00000000
    0x000019C0 39853 3  XPCOM C: ( (dsIGroup*)185E937C )->getChildren( 0018EAD8 )
    0x000019C0 39853 3  XPCOM R: ( (dsIGroup*)185E937C )->getChildren( *0018EAD8 = 17033550 ) = 0x00000000
    0x000019C0 39853 3  XPCOM C: ( (dsIProperties*)17033550 )->Count( 0018EB38 )
    0x000019C0 39853 3  XPCOM R: ( (dsIProperties*)17033550 )->Count( *0018EB38 = 0x00000004 ) = 0x00000000
    0x000019C0 39853 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000002, 0018EB18 )
    0x000019C0 39853 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000002, *0018EB18 = 185E9310 ) = 0x00000000
    0x000019C0 39853 3  XPCOM C: ( (dsIProperty*)185E9310 )->getPropertyType( 0018EA98 )
    0x000019C0 39853 3  XPCOM R: ( (dsIProperty*)185E9310 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39853 3  XPCOM C: ( (dsIProperty*)185E9310 )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39853 3  XPCOM R: ( (dsIProperty*)185E9310 )->queryInterface( 170B3F00, *0018EA98 = 185E937C ) = 0x00000000
    0x000019C0 39853 3  XPCOM C: ( (dsIGroup*)185E937C )->queryInterface( 170B3F00, 0018EA98 )
    0x000019C0 39853 3  XPCOM R: ( (dsIGroup*)185E937C )->queryInterface( 170B3F00, *0018EA98 = 185E937C ) = 0x00000000
    0x000019C0 39853 3  XPCOM C: ( (dsIGroup*)185E937C )->getChildren( 0018EAD8 )
    0x000019C0 39853 3  XPCOM R: ( (dsIGroup*)185E937C )->getChildren( *0018EAD8 = 17033F70 ) = 0x00000000
    0x000019C0 39853 3  XPCOM C: ( (dsIProperties*)17033F70 )->Count( 0018EAF8 )
    0x000019C0 39853 3  XPCOM R: ( (dsIProperties*)17033F70 )->Count( *0018EAF8 = 0x00000004 ) = 0x00000000
    0x000019C0 39853 3  XPCOM C: ( (dsIProperties*)17033F70 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 39853 3  XPCOM R: ( (dsIProperties*)17033F70 )->getProperty( 0x00000000, *0018EAD8 = 122DD2A8 ) = 0x00000000
    0x000019C0 39853 3  XPCOM C: ( (dsIProperty*)122DD2A8 )->getPropertyType( 0018EA58 )
    0x000019C0 39853 3  XPCOM R: ( (dsIProperty*)122DD2A8 )->getPropertyType( *0018EA58 = 0x00000003 ) = 0x00000000
    0x000019C0 39853 3  XPCOM C: ( (dsIProperty*)122DD2A8 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39853 3  XPCOM R: ( (dsIProperty*)122DD2A8 )->queryInterface( 170B3BE8, *0018EA58 = 122DD34C ) = 0x00000000
    0x000019C0 39853 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39853 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 170B3BE8, *0018EA58 = 122DD314 ) = 0x00000000
    0x000019C0 39854 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39854 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 170B3BE8, *0018EA58 = 122DD34C ) = 0x00000000
    0x000019C0 39854 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->Name( 0018EAC8 )
    0x000019C0 39854 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->Name( *0018EAC8 =  ) = 0x00000000
    0x000019C0 39854 3  XPCOM C: ( (dsIProperties*)17033F70 )->getProperty( 0x00000000, 0018EAD8 )
    0x000019C0 39854 3  XPCOM R: ( (dsIProperties*)17033F70 )->getProperty( 0x00000000, *0018EAD8 = 122DD2A8 ) = 0x00000000
    0x000019C0 39854 3  XPCOM C: ( (dsIProperty*)122DD2A8 )->getPropertyType( 0018EA58 )
    0x000019C0 39854 3  XPCOM R: ( (dsIProperty*)122DD2A8 )->getPropertyType( *0018EA58 = 0x00000003 ) = 0x00000000
    0x000019C0 39854 3  XPCOM C: ( (dsIProperty*)122DD2A8 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39854 3  XPCOM R: ( (dsIProperty*)122DD2A8 )->queryInterface( 170B3BE8, *0018EA58 = 122DD34C ) = 0x00000000
    0x000019C0 39854 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39854 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 170B3BE8, *0018EA58 = 122DD314 ) = 0x00000000
    0x000019C0 39854 3  XPCOM C: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39854 3  XPCOM R: ( (dsIChoiceListProperty*)122DD34C )->queryInterface( 170B3BE8, *0018EA58 = 122DD34C ) = 0x00000000
    0x000019C0 39854 3  XPCOM C: ( (dsIProperties*)17033F70 )->Count( 0018EAF8 )
    0x000019C0 39854 3  XPCOM R: ( (dsIProperties*)17033F70 )->Count( *0018EAF8 = 0x00000004 ) = 0x00000000
    0x000019C0 39854 3  XPCOM C: ( (dsIProperties*)17033F70 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 39854 3  XPCOM R: ( (dsIProperties*)17033F70 )->getProperty( 0x00000001, *0018EAD8 = 12296D98 ) = 0x00000000
    0x000019C0 39854 3  XPCOM C: ( (dsIProperty*)12296D98 )->getPropertyType( 0018EA58 )
    0x000019C0 39854 3  XPCOM R: ( (dsIProperty*)12296D98 )->getPropertyType( *0018EA58 = 0x00000004 ) = 0x00000000
    0x000019C0 39854 3  XPCOM C: ( (dsIProperty*)12296D98 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39854 3  XPCOM R: ( (dsIProperty*)12296D98 )->queryInterface( 170B3BE8, *0018EA58 = 12296E04 ) = 0x00000000
    0x000019C0 39854 3  XPCOM C: ( (dsIStringProperty*)12296E04 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39854 3  XPCOM R: ( (dsIStringProperty*)12296E04 )->queryInterface( 170B3BE8, *0018EA58 = 12296E04 ) = 0x00000000
    0x000019C0 39854 3  XPCOM C: ( (dsIStringProperty*)12296E04 )->Name( 0018EAC8 )
    0x000019C0 39854 3  XPCOM R: ( (dsIStringProperty*)12296E04 )->Name( *0018EAC8 = Start Address: 0x ) = 0x00000000
    0x000019C0 39854 3  XPCOM C: ( (dsIProperties*)17033F70 )->getProperty( 0x00000001, 0018EAD8 )
    0x000019C0 39854 3  XPCOM R: ( (dsIProperties*)17033F70 )->getProperty( 0x00000001, *0018EAD8 = 12296D98 ) = 0x00000000
    0x000019C0 39854 3  XPCOM C: ( (dsIProperty*)12296D98 )->getPropertyType( 0018EA58 )
    0x000019C0 39854 3  XPCOM R: ( (dsIProperty*)12296D98 )->getPropertyType( *0018EA58 = 0x00000004 ) = 0x00000000
    0x000019C0 39854 3  XPCOM C: ( (dsIProperty*)12296D98 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39854 3  XPCOM R: ( (dsIProperty*)12296D98 )->queryInterface( 170B3BE8, *0018EA58 = 12296E04 ) = 0x00000000
    0x000019C0 39854 3  XPCOM C: ( (dsIStringProperty*)12296E04 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39854 3  XPCOM R: ( (dsIStringProperty*)12296E04 )->queryInterface( 170B3BE8, *0018EA58 = 12296E04 ) = 0x00000000
    0x000019C0 39854 3  XPCOM C: ( (dsIProperties*)17033F70 )->Count( 0018EAF8 )
    0x000019C0 39854 3  XPCOM R: ( (dsIProperties*)17033F70 )->Count( *0018EAF8 = 0x00000004 ) = 0x00000000
    0x000019C0 39854 3  XPCOM C: ( (dsIProperties*)17033F70 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 39854 3  XPCOM R: ( (dsIProperties*)17033F70 )->getProperty( 0x00000002, *0018EAD8 = 12296FA8 ) = 0x00000000
    0x000019C0 39854 3  XPCOM C: ( (dsIProperty*)12296FA8 )->getPropertyType( 0018EA58 )
    0x000019C0 39854 3  XPCOM R: ( (dsIProperty*)12296FA8 )->getPropertyType( *0018EA58 = 0x00000004 ) = 0x00000000
    0x000019C0 39854 3  XPCOM C: ( (dsIProperty*)12296FA8 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39854 3  XPCOM R: ( (dsIProperty*)12296FA8 )->queryInterface( 170B3BE8, *0018EA58 = 12297014 ) = 0x00000000
    0x000019C0 39855 3  XPCOM C: ( (dsIStringProperty*)12297014 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39855 3  XPCOM R: ( (dsIStringProperty*)12297014 )->queryInterface( 170B3BE8, *0018EA58 = 12297014 ) = 0x00000000
    0x000019C0 39855 3  XPCOM C: ( (dsIStringProperty*)12297014 )->Name( 0018EAC8 )
    0x000019C0 39855 3  XPCOM R: ( (dsIStringProperty*)12297014 )->Name( *0018EAC8 = End Address: 0x ) = 0x00000000
    0x000019C0 39855 3  XPCOM C: ( (dsIProperties*)17033F70 )->getProperty( 0x00000002, 0018EAD8 )
    0x000019C0 39855 3  XPCOM R: ( (dsIProperties*)17033F70 )->getProperty( 0x00000002, *0018EAD8 = 12296FA8 ) = 0x00000000
    0x000019C0 39855 3  XPCOM C: ( (dsIProperty*)12296FA8 )->getPropertyType( 0018EA58 )
    0x000019C0 39855 3  XPCOM R: ( (dsIProperty*)12296FA8 )->getPropertyType( *0018EA58 = 0x00000004 ) = 0x00000000
    0x000019C0 39855 3  XPCOM C: ( (dsIProperty*)12296FA8 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39855 3  XPCOM R: ( (dsIProperty*)12296FA8 )->queryInterface( 170B3BE8, *0018EA58 = 12297014 ) = 0x00000000
    0x000019C0 39855 3  XPCOM C: ( (dsIStringProperty*)12297014 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39855 3  XPCOM R: ( (dsIStringProperty*)12297014 )->queryInterface( 170B3BE8, *0018EA58 = 12297014 ) = 0x00000000
    0x000019C0 39855 3  XPCOM C: ( (dsIProperties*)17033F70 )->Count( 0018EAF8 )
    0x000019C0 39855 3  XPCOM R: ( (dsIProperties*)17033F70 )->Count( *0018EAF8 = 0x00000004 ) = 0x00000000
    0x000019C0 39855 3  XPCOM C: ( (dsIProperties*)17033F70 )->getProperty( 0x00000003, 0018EAD8 )
    0x000019C0 39855 3  XPCOM R: ( (dsIProperties*)17033F70 )->getProperty( 0x00000003, *0018EAD8 = 17004988 ) = 0x00000000
    0x000019C0 39855 3  XPCOM C: ( (dsIProperty*)17004988 )->getPropertyType( 0018EA58 )
    0x000019C0 39855 3  XPCOM R: ( (dsIProperty*)17004988 )->getPropertyType( *0018EA58 = 0x00000008 ) = 0x00000000
    0x000019C0 39855 3  XPCOM C: ( (dsIProperty*)17004988 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39855 3  XPCOM R: ( (dsIProperty*)17004988 )->queryInterface( 170B3BE8, *0018EA58 = 170049F4 ) = 0x00000000
    0x000019C0 39855 3  XPCOM C: ( (dsIButton*)170049F4 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39855 3  XPCOM R: ( (dsIButton*)170049F4 )->queryInterface( 170B3BE8, *0018EA58 = 170049F4 ) = 0x00000000
    0x000019C0 39855 3  XPCOM C: ( (dsIButton*)170049F4 )->Name( 0018EAC8 )
    0x000019C0 39855 3  XPCOM R: ( (dsIButton*)170049F4 )->Name( *0018EAC8 = Erase Flash ) = 0x00000000
    0x000019C0 39855 3  XPCOM C: ( (dsIProperties*)17033F70 )->getProperty( 0x00000003, 0018EAD8 )
    0x000019C0 39855 3  XPCOM R: ( (dsIProperties*)17033F70 )->getProperty( 0x00000003, *0018EAD8 = 17004988 ) = 0x00000000
    0x000019C0 39855 3  XPCOM C: ( (dsIProperty*)17004988 )->getPropertyType( 0018EA58 )
    0x000019C0 39855 3  XPCOM R: ( (dsIProperty*)17004988 )->getPropertyType( *0018EA58 = 0x00000008 ) = 0x00000000
    0x000019C0 39855 3  XPCOM C: ( (dsIProperty*)17004988 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39855 3  XPCOM R: ( (dsIProperty*)17004988 )->queryInterface( 170B3BE8, *0018EA58 = 170049F4 ) = 0x00000000
    0x000019C0 39855 3  XPCOM C: ( (dsIButton*)170049F4 )->queryInterface( 170B3BE8, 0018EA58 )
    0x000019C0 39855 3  XPCOM R: ( (dsIButton*)170049F4 )->queryInterface( 170B3BE8, *0018EA58 = 170049F4 ) = 0x00000000
    0x000019C0 39855 3  XPCOM C: ( (dsIProperties*)17033F70 )->Count( 0018EAF8 )
    0x000019C0 39855 3  XPCOM R: ( (dsIProperties*)17033F70 )->Count( *0018EAF8 = 0x00000004 ) = 0x00000000
    0x000019C0 39855 3  XPCOM C: ( (dsIProperties*)170332E0 )->Count( 0018EB38 )
    0x000019C0 39855 3  XPCOM R: ( (dsIProperties*)170332E0 )->Count( *0018EB38 = 0x00000009 ) = 0x00000000
    0x000019C0 39855 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000003, 0018EB18 )
    0x000019C0 39855 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000003, *0018EB18 = 185E9398 ) = 0x00000000
    0x000019C0 39855 3  XPCOM C: ( (dsIProperty*)185E9398 )->getPropertyType( 0018EA98 )
    0x000019C0 39855 3  XPCOM R: ( (dsIProperty*)185E9398 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39855 3  XPCOM C: ( (dsIProperty*)185E9398 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39855 3  XPCOM R: ( (dsIProperty*)185E9398 )->queryInterface( 170B3BE8, *0018EA98 = 185E9404 ) = 0x00000000
    0x000019C0 39855 3  XPCOM C: ( (dsIGroup*)185E9404 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39855 3  XPCOM R: ( (dsIGroup*)185E9404 )->queryInterface( 170B3BE8, *0018EA98 = 185E9404 ) = 0x00000000
    0x000019C0 39856 3  XPCOM C: ( (dsIGroup*)185E9404 )->Name( 0018EB08 )
    0x000019C0 39856 3  XPCOM R: ( (dsIGroup*)185E9404 )->Name( *0018EB08 = Blank Check ) = 0x00000000
    0x000019C0 39856 3  XPCOM C: ( (dsIProperties*)170332E0 )->getProperty( 0x00000003, 0018EB18 )
    0x000019C0 39856 3  XPCOM R: ( (dsIProperties*)170332E0 )->getProperty( 0x00000003, *0018EB18 = 185E9398 ) = 0x00000000
    0x000019C0 39856 3  XPCOM C: ( (dsIProperty*)185E9398 )->getPropertyType( 0018EA98 )
    0x000019C0 39856 3  XPCOM R: ( (dsIProperty*)185E9398 )->getPropertyType( *0018EA98 = 0x00000006 ) = 0x00000000
    0x000019C0 39856 3  XPCOM C: ( (dsIProperty*)185E9398 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39856 3  XPCOM R: ( (dsIProperty*)185E9398 )->queryInterface( 170B3BE8, *0018EA98 = 185E9404 ) = 0x00000000
    0x000019C0 39856 3  XPCOM C: ( (dsIGroup*)185E9404 )->queryInterface( 170B3BE8, 0018EA98 )
    0x000019C0 39856 3  XPCOM R: ( (dsIGroup*)185E9404 )->queryInterface( 170B3BE8, *0018EA98 = 185E9404 ) = 0x00000000
    0x000019C0 39856 3  XPCOM C: ( (dsIGroup*)185E9404 )->getChildren( 0018EB68 )
    0x000019C0 39856 3  XPCOM R: ( (dsIGroup*)185E9404 )->getChildren( *0018EB68 = 17034B40 ) = 0x00000000
    0x000019C0 39856 3  XPCOM C: ( (dsIProperties*)17034B40 )->Count( 0018EBC8 )
    0x000019C0 39856 3  XPCOM R: ( (dsIProperties*)17034B40 )->Count( *0018EBC8 = 0x00000004 ) = 0x00000000
    0x000019C0 39856 3  XPCOM C: ( (dsIGroup*)185E9404 )->getChildren( 0018EB88 )
    0x000019C0 39856 3  XPCOM R: ( (dsIGroup*)185E9404 )->getChildren( *0018EB88 = 17034240 ) = 0x00000000
    0x000019C0 39856 3  XPCOM C: ( (dsIProperties*)17034240 )->Count( 0018EAE8 )
    0x000019C0 39856 3  XPCOM R: ( (dsIProperties*)17034240 )->Count( *0018EAE8 = 0x00000004 ) = 0x00000000
    0x000019C0 39856 3  XPCOM C: ( (dsIProperties*)17034240 )->getProperty( 0x00000000, 0018EAC8 )
    0x000019C0 39856 3  XPCOM R: ( (dsIProperties*)17034240 )->getProperty( 0x00000000, *0018EAC8 = 122DE028 ) = 0x00000000
    0x000019C0 39856 3  XPCOM C: ( (dsIProperty*)122DE028 )->getPropertyType( 0018EA48 )
    0x000019C0 39856 3  XPCOM R: ( (dsIProperty*)122DE028 )->getPropertyType( *0018EA48 = 0x00000003 ) = 0x00000000
    0x000019C0 39856 3  XPCOM C: ( (dsIProperty*)122DE028 )->queryInterface( 170B3BE8, 0018EA48 )
    0x000019C0 39856 3  XPCOM R: ( (dsIProperty*)122DE028 )->queryInterface( 170B3BE8, *0018EA48 = 122DE0CC ) = 0x00000000
    0x000019C0 39856 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->queryInterface( 170B3BE8, 0018EA48 )
    0x000019C0 39856 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->queryInterface( 170B3BE8, *0018EA48 = 122DE094 ) = 0x00000000
    0x000019C0 39856 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->queryInterface( 170B3BE8, 0018EA48 )
    0x000019C0 39856 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->queryInterface( 170B3BE8, *0018EA48 = 122DE0CC ) = 0x00000000
    0x000019C0 39857 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->Name( 0018EA58 )
    0x000019C0 39857 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->Name( *0018EA58 =  ) = 0x00000000
    0x000019C0 39857 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->NumAllowedValues( 0018EA58 )
    0x000019C0 39858 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->NumAllowedValues( *0018EA58 = 0x00000002 ) = 0x00000000
    0x000019C0 39858 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->NumAllowedValues( 0018EA58 )
    0x000019C0 39858 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->NumAllowedValues( *0018EA58 = 0x00000002 ) = 0x00000000
    0x000019C0 39858 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->getAllowedValue( 0x00000000, 0018EA58 )
    0x000019C0 39858 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->getAllowedValue( 0x00000000, *0018EA58 = Entire Flash ) = 0x00000000
    0x000019C0 39858 3  XPCOM C: ( (dsIStringProperty*)122DE094 )->CurValue( 0018EA48 )
    0x000019C0 39858 3  XPCOM R: ( (dsIStringProperty*)122DE094 )->CurValue( *0018EA48 = Entire Flash ) = 0x00000000
    0x000019C0 39858 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->Iden( 0018EA48 )
    0x000019C0 39858 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->Iden( *0018EA48 = FlashBlankCheckSelection ) = 0x00000000
    0x000019C0 39858 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->DisableStatus( 0018EA58 )
    0x000019C0 39859 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->DisableStatus( *0018EA58 = false ) = 0x00000000
    0x000019C0 39859 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->NumAllowedValues( 0018EA58 )
    0x000019C0 39859 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->NumAllowedValues( *0018EA58 = 0x00000002 ) = 0x00000000
    0x000019C0 39859 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->getAllowedValue( 0x00000001, 0018EA58 )
    0x000019C0 39859 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->getAllowedValue( 0x00000001, *0018EA58 = By Address Range ) = 0x00000000
    0x000019C0 39859 3  XPCOM C: ( (dsIStringProperty*)122DE094 )->CurValue( 0018EA48 )
    0x000019C0 39859 3  XPCOM R: ( (dsIStringProperty*)122DE094 )->CurValue( *0018EA48 = Entire Flash ) = 0x00000000
    0x000019C0 39859 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->Iden( 0018EA48 )
    0x000019C0 39859 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->Iden( *0018EA48 = FlashBlankCheckSelection ) = 0x00000000
    0x000019C0 39859 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->DisableStatus( 0018EA58 )
    0x000019C0 39859 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->DisableStatus( *0018EA58 = false ) = 0x00000000
    0x000019C0 39859 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->NumAllowedValues( 0018EA58 )
    0x000019C0 39859 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->NumAllowedValues( *0018EA58 = 0x00000002 ) = 0x00000000
    0x000019C0 39859 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->Iden( 0018EA48 )
    0x000019C0 39859 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->Iden( *0018EA48 = FlashBlankCheckSelection ) = 0x00000000
    0x000019C0 39860 3  XPCOM C: ( (dsIChoiceListProperty*)122DE0CC )->DisableStatus( 0018EA58 )
    0x000019C0 39860 3  XPCOM R: ( (dsIChoiceListProperty*)122DE0CC )->DisableStatus( *0018EA58 = false ) = 0x00000000
    0x000019C0 39860 3  XPCOM C: ( (dsIProperties*)17034240 )->Count( 0018EAE8 )
    0x000019C0 39860 3  XPCOM R: ( (dsIProperties*)17034240 )->Count( *0018EAE8 = 0x00000004 ) = 0x00000000
    0x000019C0 39860 3  XPCOM C: ( (dsIProperties*)17034240 )->getProperty( 0x00000001, 0018EAC8 )
    0x000019C0 39860 3  XPCOM R: ( (dsIProperties*)17034240 )->getProperty( 0x00000001, *0018EAC8 = 122963F8 ) = 0x00000000
    0x000019C0 39860 3  XPCOM C: ( (dsIProperty*)122963F8 )->getPropertyType( 0018EA48 )
    0x000019C0 39860 3  XPCOM R: ( (dsIProperty*)122963F8 )->getPropertyType( *0018EA48 = 0x00000004 ) = 0x00000000
    0x000019C0 39860 3  XPCOM C: ( (dsIProperty*)122963F8 )->queryInterface( 170B3BE8, 0018EA48 )
    0x000019C0 39860 3  XPCOM R: ( (dsIProperty*)122963F8 )->queryInterface( 170B3BE8, *0018EA48 = 12296464 ) = 0x00000000
    0x000019C0 39860 3  XPCOM C: ( (dsIStringProperty*)12296464 )->queryInterface( 170B3BE8, 0018EA48 )
    0x000019C0 39860 3  XPCOM R: ( (dsIStringProperty*)12296464 )->queryInterface( 170B3BE8, *0018EA48 = 12296464 ) = 0x00000000
    0x000019C0 39860 3  XPCOM C: ( (dsIStringProperty*)12296464 )->getParent( 0018E9A8 )
    0x000019C0 39860 3  XPCOM R: ( (dsIStringProperty*)12296464 )->getParent( *0018E9A8 = 185E9398 ) = 0x00000000
    0x000019C0 39860 3  XPCOM C: ( (dsIProperty*)185E9398 )->getPropertyType( 0018E908 )
    0x000019C0 39860 3  XPCOM R: ( (dsIProperty*)185E9398 )->getPropertyType( *0018E908 = 0x00000006 ) = 0x00000000
    0x000019C0 39860 3  XPCOM C: ( (dsIProperty*)185E9398 )->queryInterface( 170B3BE8, 0018E908 )
    0x000019C0 39860 3  XPCOM R: ( (dsIProperty*)185E9398 )->queryInterface( 170B3BE8, *0018E908 = 185E9404 ) = 0x00000000
    0x000019C0 39860 3  XPCOM C: ( (dsIGroup*)185E9404 )->queryInterface( 170B3BE8, 0018E908 )
    0x000019C0 39860 3  XPCOM R: ( (dsIGroup*)185E9404 )->queryInterface( 170B3BE8, *0018E908 = 185E9404 ) = 0x00000000
    0x000019C0 39860 3  XPCOM C: ( (dsIGroup*)185E9404 )->Iden( 0018E9A8 )
    0x000019C0 39860 3  XPCOM R: ( (dsIGroup*)185E9404 )->Iden( *0018E9A8 = FlashBlankCheckGroup ) = 0x00000000
    0x000019C0 39861 3  XPCOM C: ( (dsIStringProperty*)12296464 )->Name( 0018E9F8 )
    0x000019C0 39861 3  XPCOM R: ( (dsIStringProperty*)12296464 )->Name( *0018E9F8 = Start Address: 0x ) = 0x00000000
    0x000019C0 39861 3  XPCOM C: ( (dsIStringProperty*)12296464 )->CurValue( 0018EA08 )
    0x000019C0 39861 3  XPCOM R: ( (dsIStringProperty*)12296464 )->CurValue( *0018EA08 = 0 ) = 0x00000000
    0x000019C0 39861 3  XPCOM C: ( (dsIStringProperty*)12296464 )->ReadOnly( 0018EA08 )
    0x000019C0 39861 3  XPCOM R: ( (dsIStringProperty*)12296464 )->ReadOnly( *0018EA08 = false ) = 0x00000000
    0x000019C0 39862 3  XPCOM C: ( (dsIStringProperty*)12296464 )->DisableStatus( 0018E9F8 )
    0x000019C0 39862 3  XPCOM R: ( (dsIStringProperty*)12296464 )->DisableStatus( *0018E9F8 = true ) = 0x00000000
    0x000019C0 39862 3  XPCOM C: ( (dsIStringProperty*)12296464 )->Iden( 0018E9F8 )
    0x000019C0 39862 3  XPCOM R: ( (dsIStringProperty*)12296464 )->Iden( *0018E9F8 = FlashBlankCheckStartAddr ) = 0x00000000
    0x000019C0 39862 3  XPCOM C: ( (dsIProperties*)17034240 )->Count( 0018EAE8 )
    0x000019C0 39862 3  XPCOM R: ( (dsIProperties*)17034240 )->Count( *0018EAE8 = 0x00000004 ) = 0x00000000
    0x000019C0 39862 3  XPCOM C: ( (dsIProperties*)17034240 )->getProperty( 0x00000002, 0018EAC8 )
    0x000019C0 39862 3  XPCOM R: ( (dsIProperties*)17034240 )->getProperty( 0x00000002, *0018EAC8 = 185EB058 ) = 0x00000000
    0x000019C0 39862 3  XPCOM C: ( (dsIProperty*)185EB058 )->getPropertyType( 0018EA48 )
    0x000019C0 39862 3  XPCOM R: ( (dsIProperty*)185EB058 )->getPropertyType( *0018EA48 = 0x00000004 ) = 0x00000000
    0x000019C0 39862 3  XPCOM C: ( (dsIProperty*)185EB058 )->queryInterface( 170B3BE8, 0018EA48 )
    0x000019C0 39862 3  XPCOM R: ( (dsIProperty*)185EB058 )->queryInterface( 170B3BE8, *0018EA48 = 185EB0C4 ) = 0x00000000
    0x000019C0 39862 3  XPCOM C: ( (dsIStringProperty*)185EB0C4 )->queryInterface( 170B3BE8, 0018EA48 )
    0x000019C0 39862 3  XPCOM R: ( (dsIStringProperty*)185EB0C4 )->queryInterface( 170B3BE8, *0018EA48 = 185EB0C4 ) = 0x00000000
    0x000019C0 39862 3  XPCOM C: ( (dsIStringProperty*)185EB0C4 )->getParent( 0018E9A8 )
    0x000019C0 39862 3  XPCOM R: ( (dsIStringProperty*)185EB0C4 )->getParent( *0018E9A8 = 185E9398 ) = 0x00000000
    0x000019C0 39862 3  XPCOM C: ( (dsIProperty*)185E9398 )->getPropertyType( 0018E908 )
    0x000019C0 39862 3  XPCOM R: ( (dsIProperty*)185E9398 )->getPropertyType( *0018E908 = 0x00000006 ) = 0x00000000
    0x000019C0 39862 3  XPCOM C: ( (dsIProperty*)185E9398 )->queryInterface( 170B3BE8, 0018E908 )
    0x000019C0 39862 3  XPCOM R: ( (dsIProperty*)185E9398 )->queryInterface( 170B3BE8, *0018E908 = 185E9404 ) = 0x00000000
    0x000019C0 39862 3  XPCOM C: ( (dsIGroup*)185E9404 )->queryInterface( 170B3BE8, 0018E908 )
    0x000019C0 39862 3  XPCOM R: ( (dsIGroup*)185E9404 )->queryInterface( 170B3BE8, *0018E908 = 185E9404 ) = 0x00000000
    0x000019C0 39862 3  XPCOM C: ( (dsIGroup*)185E9404 )->Iden( 0018E9A8 )
    0x000019C0 39862 3  XPCOM R: ( (dsIGroup*)185E9404 )->Iden( *0018E9A8 = FlashBlankCheckGroup ) = 0x00000000
    0x000019C0 39863 3  XPCOM C: ( (dsIStringProperty*)185EB0C4 )->Name( 0018E9F8 )
    0x000019C0 39863 3  XPCOM R: ( (dsIStringProperty*)185EB0C4 )->Name( *0018E9F8 = End Address: 0x ) = 0x00000000
    0x000019C0 39863 3  XPCOM C: ( (dsIStringProperty*)185EB0C4 )->CurValue( 0018EA08 )
    0x000019C0 39863 3  XPCOM R: ( (dsIStringProperty*)185EB0C4 )->CurValue( *0018EA08 = 0 ) = 0x00000000
    0x000019C0 39863 3  XPCOM C: ( (dsIStringProperty*)185EB0C4 )->ReadOnly( 0018EA08 )
    0x000019C0 39863 3  XPCOM R: ( (dsIStringProperty*)185EB0C4 )->ReadOnly( *0018EA08 = false ) = 0x00000000
    0x000019C0 39864 3  XPCOM C: ( (dsIStringProperty*)185EB0C4 )->DisableStatus( 0018E9F8 )
    0x000019C0 39864 3  XPCOM R: ( (dsIStringProperty*)185EB0C4 )->DisableStatus( *0018E9F8 = true ) = 0x00000000
    0x000019C0 39864 3  XPCOM C: ( (dsIStringProperty*)185EB0C4 )->Iden( 0018E9F8 )
    0x000019C0 39864 3  XPCOM R: ( (dsIStringProperty*)185EB0C4 )->Iden( *0018E9F8 = FlashBlankCheckEndAddr ) = 0x00000000
    0x000019C0 39864 3  XPCOM C: ( (dsIProperties*)17034240 )->Count( 0018EAE8 )
    0x000019C0 39864 3  XPCOM R: ( (dsIProperties*)17034240 )->Count( *0018EAE8 = 0x00000004 ) = 0x00000000
    0x000019C0 39864 3  XPCOM C: ( (dsIProperties*)17034240 )->getProperty( 0x00000003, 0018EAC8 )
    0x000019C0 39864 3  XPCOM R: ( (dsIProperties*)17034240 )->getProperty( 0x00000003, *0018EAC8 = 17004A18 ) = 0x00000000
    0x000019C0 39864 3  XPCOM C: ( (dsIProperty*)17004A18 )->getPropertyType( 0018EA48 )
    0x000019C0 39864 3  XPCOM R: ( (dsIProperty*)17004A18 )->getPropertyType( *0018EA48 = 0x00000008 ) = 0x00000000
    0x000019C0 39864 3  XPCOM C: ( (dsIProperty*)17004A18 )->queryInterface( 170B3BE8, 0018EA48 )
    0x000019C0 39864 3  XPCOM R: ( (dsIProperty*)17004A18 )->queryInterface( 170B3BE8, *0018EA48 = 17004A84 ) = 0x00000000
    0x000019C0 39864 3  XPCOM C: ( (dsIButton*)17004A84 )->queryInterface( 170B3BE8, 0018EA48 )
    0x000019C0 39864 3  XPCOM R: ( (dsIButton*)17004A84 )->queryInterface( 170B3BE8, *0018EA48 = 17004A84 ) = 0x00000000
    0x000019C0 39864 3  XPCOM C: ( (dsIButton*)17004A84 )->getParent( 0018E9F8 )
    0x000019C0 39864 3  XPCOM R: ( (dsIButton*)17004A84 )->getParent( *0018E9F8 = 185E9398 ) = 0x00000000
    0x000019C0 39864 3  XPCOM C: ( (dsIProperty*)185E9398 )->getPropertyType( 0018E968 )
    0x000019C0 39864 3  XPCOM R: ( (dsIProperty*)185E9398 )->getPropertyType( *0018E968 = 0x00000006 ) = 0x00000000
    0x000019C0 39864 3  XPCOM C: ( (dsIProperty*)185E9398 )->queryInterface( 170B3BE8, 0018E968 )
    0x000019C0 39864 3  XPCOM R: ( (dsIProperty*)185E9398 )->queryInterface( 170B3BE8, *0018E968 = 185E9404 ) = 0x00000000
    0x000019C0 39864 3  XPCOM C: ( (dsIGroup*)185E9404 )->queryInterface( 170B3BE8, 0018E968 )
    0x000019C0 39864 3  XPCOM R: ( (dsIGroup*)185E9404 )->queryInterface( 170B3BE8, *0018E968 = 185E9404 ) = 0x00000000
    0x000019C0 39865 3  XPCOM C: ( (dsIGroup*)185E9404 )->Iden( 0018E9F8 )
    0x000019C0 39865 3  XPCOM R: ( (dsIGroup*)185E9404 )->Iden( *0018E9F8 = FlashBlankCheckGroup ) = 0x00000000
    0x000019C0 39866 3  XPCOM C: ( (dsIButton*)17004A84 )->Name( 0018EA58 )
    0x000019C0 39866 3  XPCOM R: ( (dsIButton*)17004A84 )->Name( *0018EA58 = Blank Check ) = 0x00000000
    0x000019C0 39866 3  XPCOM C: ( (dsIButton*)17004A84 )->Iden( 0018EA48 )
    0x000019C0 39866 3  XPCOM R: ( (dsIButton*)17004A84 )->Iden( *0018EA48 = FlashBlankCheckButton ) = 0x00000000
    0x000019C0 39866 3  XPCOM C: ( (dsIButton*)17004A84 )->DisableStatus( 0018EA58 )
    0x000019C0 39866 3  XPCOM R: ( (dsIButton*)17004A84 )->DisableStatus( *0018EA58 = false ) = 0x00000000
    0x000019C0 39866 3  XPCOM C: ( (dsIProperties*)17034240 )->Count( 0018EAE8 )
    0x000019C0 39866 3  XPCOM R: ( (dsIProperties*)17034240 )->Count( *0018EAE8 = 0x00000004 ) = 0x00000000
    0x000019C0 39866 3  XPCOM C: ( (dsIStringEvent*)16EE8B58 )->addListener( 170B3BE8 )
    0x000019C0 39866 3  XPCOM R: ( (dsIStringEvent*)16EE8B58 )->addListener( 170B3BE8 ) = 0x00000000
    0x000019C0 39866 3  XPCOM C: ( (dsIStringEvent*)16EE8BD8 )->addListener( 16EF6A60 )
    0x000019C0 39866 3  XPCOM R: ( (dsIStringEvent*)16EE8BD8 )->addListener( 16EF6A60 ) = 0x00000000
    0x00002BA8 40310 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 40310 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 40310 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 40310 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 40310 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3167 ms
    0x00002BA8 40310 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 40310 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 40310 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3167 ms
    0x00002BA8 40810 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 40810 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 40810 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 40810 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 40810 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2667 ms
    0x00002BA8 40810 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 40810 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 40810 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2667 ms
    0x00002BA8 41310 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 41310 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 41310 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 41310 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 41310 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2167 ms
    0x00002BA8 41310 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 41310 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 41310 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2167 ms
    0x00002BA8 41810 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 41810 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 41810 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 41810 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 41810 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1667 ms
    0x00002BA8 41810 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 41810 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 41810 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1667 ms
    0x00002BA8 42310 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 42310 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 42310 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 42310 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 42310 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1167 ms
    0x00002BA8 42310 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 42310 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 42310 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1167 ms
    0x00002BA8 42810 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x00002BA8 42810 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 42810 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002BA8 42810 3 CS_DAP_0 POLL R: Poll() returning
    0x00002BA8 42810 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 667 ms
    0x00002BA8 42810 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x00002BA8 42810 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x00002BA8 42810 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 667 ms
    0x000019C0 43064 3  XPCOM C: ( (dsIExpressionEvaluation*)125EB740 )->requestCExprEval( DEBUG_LogEnable(0), false, false, 0018EE38 )
    0x000019C0 43065 3 CORTEX_M4_0 GEL I: Evaluating "DEBUG_LogEnable(0)"
    0x000019C0 43065 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class `anonymous namespace'::NullRequestNotification
    0x000019C0 43065 3  XPCOM R: ( (dsIExpressionEvaluation*)125EB740 )->requestCExprEval( DEBUG_LogEnable(0), false, false, *0018EE38 = 122CC648 ) = 0x00000000
    0x00002BA8 43065 3 CORTEX_M4_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x00002BA8 43065 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 43065 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 43065 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 245 ms
    0x00002BA8 43065 4  POLL I: TimeToSleep() found shorter sleep time of 245 ms from class DevicePollFrequencyManager
    0x00002BA8 43065 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x00002BA8 43065 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 43065 4  POLL I: Yielding to other threads
    0x00002BA8 43065 3 CORTEX_M4_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x00002BA8 43065 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class `anonymous namespace'::NullRequestNotification
    0x00002BA8 43065 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00002BA8 43065 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00002BA8 43065 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 245 ms
    0x00002BA8 43065 4  POLL I: TimeToSleep() found shorter sleep time of 245 ms from class DevicePollFrequencyManager
    0x00002BA8 43065 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x00002BA8 43065 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x00002BA8 43065 4  POLL I: Yielding to other threads
    0x00002BA8 43065 3 CORTEX_M4_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT

  • Hello Stephen,

    What I was referring to is as follows in the UNIFLASH Application. To run this you need Stellaris ICDI which you can blue-wire from a TM4C123 LaunchPad to your custom board

    Regards

    Amit