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)
301public bool IsVarArg => _argData.IsVarArg(); 304public int NumFixedArgs => _argData.NumFixedArgs() + (_extraFunctionPointerArg ? 1 : 0) + (_extraObjectFirstArg ? 1 : 0); 323if (_extraFunctionPointerArg && argNum == _argData.NumFixedArgs()) 329return _argData.GetArgumentType(argNum, out thArgType); 339return _argData.GetReturnType(out thRetType); 760_argTypeHandleOfByRefParam = (argType == CorElementType.ELEMENT_TYPE_BYREF ? _argData.GetByRefArgumentType(_argNum) : default);