1 write to _argData
Microsoft.Diagnostics.DataContractReader.Contracts (1)
src\runtime\src\coreclr\tools\Common\CallingConvention\ArgIterator.cs (1)
372
_argData
= argData;
6 references to _argData
Microsoft.Diagnostics.DataContractReader.Contracts (6)
src\runtime\src\coreclr\tools\Common\CallingConvention\ArgIterator.cs (6)
301
public bool IsVarArg =>
_argData
.IsVarArg();
304
public int NumFixedArgs =>
_argData
.NumFixedArgs() + (_extraFunctionPointerArg ? 1 : 0) + (_extraObjectFirstArg ? 1 : 0);
323
if (_extraFunctionPointerArg && argNum ==
_argData
.NumFixedArgs())
329
return
_argData
.GetArgumentType(argNum, out thArgType);
339
return
_argData
.GetReturnType(out thRetType);
760
_argTypeHandleOfByRefParam = (argType == CorElementType.ELEMENT_TYPE_BYREF ?
_argData
.GetByRefArgumentType(_argNum) : default);