Lines Matching defs:methodOffset
43 void SetIsFastCall(CString fileDesc, uint32_t methodOffset, bool isFastCall);
44 bool IsFastCall(CString fileDesc, uint32_t methodOffset) const;
45 void SetIsAotCompile(CString fileDesc, uint32_t methodOffset, bool isAotCompile);
46 bool IsAotCompile(CString fileDesc, uint32_t methodOffset) const;
47 void SetIsJitCompile(CString fileDesc, uint32_t methodOffset, bool isAotCompile);
48 bool IsJitCompile(CString fileDesc, uint32_t methodOffset) const;
158 void SetIsFastCall(CString fileDesc, uint32_t methodOffset, bool isFastCall)
160 callMethodFlagMap_.SetIsFastCall(fileDesc, methodOffset, isFastCall);
163 bool IsFastCall(CString fileDesc, uint32_t methodOffset)
165 return callMethodFlagMap_.IsFastCall(fileDesc, methodOffset);
168 void SetIsAotCompile(CString fileDesc, uint32_t methodOffset, bool isAotCompile)
170 callMethodFlagMap_.SetIsAotCompile(fileDesc, methodOffset, isAotCompile);
173 bool GetIsAotCompile(CString fileDesc, uint32_t methodOffset)
175 return callMethodFlagMap_.IsAotCompile(fileDesc, methodOffset);