Skip to content

Commit 8ed3a75

Browse files
authored
Merge pull request #10402 from MicrosoftDocs/main638621066003193324sync_temp
Repo sync for protected branch
2 parents e5cd1c4 + d7b3b9c commit 8ed3a75

File tree

62 files changed

+156
-106
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+156
-106
lines changed

docs/debugger/debug-interface-access/idiasymbol-findchildrenex.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the children of the symbol. The local symbols that are returned include live range information, if the program is compiled with optimization on."
2+
description: Retrieves the children of the symbol. The local symbols that are returned include live range information, if the program is compiled with optimization on.
33
title: "IDiaSymbol::findChildrenEx"
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "mikejo"
1212
manager: mijacobs
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::findChildrenEx
1617

1718
Retrieves the children of the symbol. The local symbols that are returned include live range information, if the program is compiled with optimization on.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT findChildrenEx ( 
23+
HRESULT findChildrenEx (
2324
enum SymTagEnum symtag,
2425
LPCOLESTR name,
2526
DWORD compareFlags,

docs/debugger/debug-interface-access/idiasymbol-findchildrenexbyaddr.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the children of the symbol that are valid at a specified address."
2+
description: Retrieves the children of the symbol that are valid at a specified address.
33
title: "IDiaSymbol::findChildrenExByAddr"
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "mikejo"
1212
manager: mijacobs
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::findChildrenExByAddr
1617

1718
Retrieves the children of the symbol that are valid at a specified address.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT findChildrenExByAddr ( 
23+
HRESULT findChildrenExByAddr (
2324
enum SymTagEnum symtag,
2425
LPCOLESTR name,
2526
DWORD compareFlags,

docs/debugger/debug-interface-access/idiasymbol-findchildrenexbyrva.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the children of the symbol that are valid at a specified relative virtual address (RVA)."
2+
description: Retrieves the children of the symbol that are valid at a specified relative virtual address (RVA).
33
title: "IDiaSymbol::findChildrenExByRVA"
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "mikejo"
1212
manager: mijacobs
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::findChildrenExByRVA
1617

1718
Retrieves the children of the symbol that are valid at a specified relative virtual address (RVA).
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT findChildrenExByRVA ( 
23+
HRESULT findChildrenExByRVA (
2324
enum SymTagEnum symtag,
2425
LPCOLESTR name,
2526
DWORD compareFlags,

docs/debugger/debug-interface-access/idiasymbol-findchildrenexbyva.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the children of the symbol that are valid at a specified virtual address."
2+
description: Retrieves the children of the symbol that are valid at a specified virtual address.
33
title: "IDiaSymbol::findChildrenExByVA"
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "mikejo"
1212
manager: mijacobs
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::findChildrenExByVA
1617

1718
Retrieves the children of the symbol that are valid at a specified virtual address.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT findChildrenExByVA ( 
23+
HRESULT findChildrenExByVA (
2324
enum SymTagEnum symtag,
2425
LPCOLESTR name,
2526
DWORD compareFlags,

docs/debugger/debug-interface-access/idiasymbol-findinlineelines.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves an enumeration that allows a client to iterate through the line number information of all functions that are inlined, directly or indirectly, in this symbol."
2+
description: Retrieves an enumeration that allows a client to iterate through the line number information of all functions that are inlined, directly or indirectly, in this symbol.
33
title: "IDiaSymbol::findInlineeLines"
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
@@ -10,14 +10,15 @@ ms.author: "mikejo"
1010
manager: mijacobs
1111
ms.subservice: debug-diagnostics
1212
---
13+
1314
# IDiaSymbol::findInlineeLines
1415

1516
Retrieves an enumeration that allows a client to iterate through the line number information of all functions that are inlined, directly or indirectly, in this symbol.
1617

1718
## Syntax
1819

1920
```C++
20-
HRESULT findInlineeLines ( 
21+
HRESULT findInlineeLines (
2122
IDiaEnumLineNumbers** ppResult
2223
);
2324
```

docs/debugger/debug-interface-access/idiasymbol-findinlineelinesbyaddr.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@ ms.author: "mikejo"
1010
manager: mijacobs
1111
ms.subservice: debug-diagnostics
1212
---
13+
1314
# IDiaSymbol::findInlineeLinesByAddr
1415

1516
Retrieves an enumeration that allows a client to iterate through the line number information of all functions that are inlined, directly or indirectly, in this symbol within the specified address range.
1617

1718
## Syntax
1819

1920
```C++
20-
HRESULT findInlineeLinesByAddr ( 
21+
HRESULT findInlineeLinesByAddr (
2122
DWORD isect,
2223
DWORD offset,
2324
DWORD length,

docs/debugger/debug-interface-access/idiasymbol-findinlineelinesbyrva.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@ ms.author: "mikejo"
1010
manager: mijacobs
1111
ms.subservice: debug-diagnostics
1212
---
13+
1314
# IDiaSymbol::findInlineeLinesByRVA
1415

1516
Retrieves an enumeration that allows a client to iterate through the line number information of all functions that are inlined, directly or indirectly, in this symbol within the specified relative virtual address (RVA).
1617

1718
## Syntax
1819

1920
```C++
20-
HRESULT findInlineeLinesByRVA (  DWORD rva, DWORD length,
21+
HRESULT findInlineeLinesByRVA ( DWORD rva, DWORD length,
2122
IDiaEnumLineNumbers** ppResult
2223
);
2324
```

docs/debugger/debug-interface-access/idiasymbol-findinlineelinesbyva.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@ ms.author: "mikejo"
1010
manager: mijacobs
1111
ms.subservice: debug-diagnostics
1212
---
13+
1314
# IDiaSymbol::findInlineeLinesByVA
1415

1516
Retrieves an enumeration that allows a client to iterate through the line number information of all functions that are inlined, directly or indirectly, in this symbol within the specified virtual address (VA).
1617

1718
## Syntax
1819

1920
```C++
20-
HRESULT findInlineeLinesByVA ( 
21+
HRESULT findInlineeLinesByVA (
2122
ULONGLONG va,
2223
DWORD length,
2324
IDiaEnumLineNumbers** ppResult

docs/debugger/debug-interface-access/idiasymbol-findinlineframesbyaddr.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@ ms.author: "mikejo"
1010
manager: mijacobs
1111
ms.subservice: debug-diagnostics
1212
---
13+
1314
# IDiaSymbol::findInlineFramesByAddr
1415

1516
Retrieves an enumeration that allows a client to iterate through all of the inline frames on a given address.
1617

1718
## Syntax
1819

1920
```C++
20-
HRESULT findInlineFramesByAddr ( 
21+
HRESULT findInlineFramesByAddr (
2122
DWORD isect,
2223
DWORD offset,
2324
IDiaEnumSymbols** ppResult

docs/debugger/debug-interface-access/idiasymbol-findinlineframesbyrva.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@ ms.author: "mikejo"
1010
manager: mijacobs
1111
ms.subservice: debug-diagnostics
1212
---
13+
1314
# IDiaSymbol::findInlineFramesByRVA
1415

1516
Retrieves an enumeration that allows a client to iterate through all of the inline frames on a specified relative virtual address (RVA).
1617

1718
## Syntax
1819

1920
```C++
20-
HRESULT findInlineFramesByRVA (  DWORD rva,
21+
HRESULT findInlineFramesByRVA ( DWORD rva,
2122
IDiaEnumSymbols** ppResult
2223
);
2324
```

docs/debugger/debug-interface-access/idiasymbol-findinlineframesbyva.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@ ms.author: "mikejo"
1010
manager: mijacobs
1111
ms.subservice: debug-diagnostics
1212
---
13+
1314
# IDiaSymbol::findInlineFramesByVA
1415

1516
Retrieves an enumeration that allows a client to iterate through all of the inline frames on a specified virtual address (VA).
1617

1718
## Syntax
1819

1920
```C++
20-
HRESULT findInlineFramesByVA ( 
21+
HRESULT findInlineFramesByVA (
2122
ULONGLONG va,
2223
IDiaEnumSymbols** ppResult
2324
);

docs/debugger/debug-interface-access/idiasymbol-findinputassemblyfile.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the .NET Native input assembly file that is the parent of the symbol."
2+
description: Retrieves the .NET Native input assembly file that is the parent of the symbol.
33
title: "IDiaSymbol::findInputAssemblyFile"
44
ms.date: "07/09/2024"
55
ms.topic: "reference"
@@ -12,6 +12,7 @@ ms.author: "grantri"
1212
manager: twhitney
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::findInputAssemblyFile
1617

1718
Retrieves the .NET Native input assembly file that is the parent of the symbol.

docs/debugger/debug-interface-access/idiasymbol-findsymbolsbyrvaforacceleratorpointertag.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Given a corresponding tag value, this method returns an enumeration of symbols that are contained in this stub function at a specified relative virtual address."
2+
description: Given a corresponding tag value, this method returns an enumeration of symbols that are contained in this stub function at a specified relative virtual address.
33
title: "IDiaSymbol::findSymbolsByRVAForAcceleratorPointerTag"
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
@@ -10,6 +10,7 @@ ms.author: "mikejo"
1010
manager: mijacobs
1111
ms.subservice: debug-diagnostics
1212
---
13+
1314
# IDiaSymbol::findSymbolsByRVAForAcceleratorPointerTag
1415

1516
Given a corresponding tag value, this method returns an enumeration of symbols that are contained in this stub function at a specified relative virtual address.

docs/debugger/debug-interface-access/idiasymbol-findsymbolsforacceleratorpointertag.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Given a corresponding tag value, this method returns an enumeration of symbols that are contained in this stub function."
2+
description: Given a corresponding tag value, this method returns an enumeration of symbols that are contained in this stub function.
33
title: "IDiaSymbol::findSymbolsForAcceleratorPointerTag"
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
@@ -10,6 +10,7 @@ ms.author: "mikejo"
1010
manager: mijacobs
1111
ms.subservice: debug-diagnostics
1212
---
13+
1314
# IDiaSymbol::findSymbolsForAcceleratorPointerTag
1415

1516
Given a corresponding tag value, this method returns an enumeration of symbols that are contained in this stub function.

docs/debugger/debug-interface-access/idiasymbol-get-acceleratorpointertags.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Returns all accelerator pointer tag values that correspond to a C++ AMP accelerator stub function."
2+
description: Returns all accelerator pointer tag values that correspond to a C++ AMP accelerator stub function.
33
title: "IDiaSymbol::get_acceleratorPointerTags"
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
@@ -10,6 +10,7 @@ ms.author: "mikejo"
1010
manager: mijacobs
1111
ms.subservice: debug-diagnostics
1212
---
13+
1314
# IDiaSymbol::get_acceleratorPointerTags
1415

1516
Returns all accelerator pointer tag values that correspond to a C++ AMP accelerator stub function.

docs/debugger/debug-interface-access/idiasymbol-get-access.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the access modifier of a class member."
2+
description: Retrieves the access modifier of a class member.
33
title: "IDiaSymbol::get_access"
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "mikejo"
1212
manager: mijacobs
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_access
1617

1718
Retrieves the access modifier of a class member.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_access ( 
23+
HRESULT get_access (
2324
DWORD* pRetVal
2425
);
2526
```

docs/debugger/debug-interface-access/idiasymbol-get-addressoffset.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the offset part of an address location."
2+
description: Retrieves the offset part of an address location.
33
title: "IDiaSymbol::get_addressOffset"
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "mikejo"
1212
manager: mijacobs
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_addressOffset
1617

1718
Retrieves the offset part of an address location. Use when the [LocationType Enumeration](../../debugger/debug-interface-access/locationtype.md) is set to `LocIsStatic`.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_addressOffset ( 
23+
HRESULT get_addressOffset (
2324
DWORD* pRetVal
2425
);
2526
```

docs/debugger/debug-interface-access/idiasymbol-get-addresssection.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the section part of an address location."
2+
description: Retrieves the section part of an address location.
33
title: "IDiaSymbol::get_addressSection"
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "mikejo"
1212
manager: mijacobs
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_addressSection
1617

1718
Retrieves the section part of an address location. Use when the [LocationType Enumeration](../../debugger/debug-interface-access/locationtype.md) is set to `LocIsStatic`.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_addressSection ( 
23+
HRESULT get_addressSection (
2324
DWORD* pRetVal
2425
);
2526
```

docs/debugger/debug-interface-access/idiasymbol-get-addresstaken.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves a flag that indicates whether another symbol references this symbol's address."
2+
description: Retrieves a flag that indicates whether another symbol references this symbol's address.
33
title: "IDiaSymbol::get_addressTaken"
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "mikejo"
1212
manager: mijacobs
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_addressTaken
1617

1718
Retrieves a flag that indicates whether another symbol references this symbol's address.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_addressTaken ( 
23+
HRESULT get_addressTaken (
2324
BOOL* pRetVal
2425
);
2526
```

0 commit comments

Comments
 (0)