Lines Matching defs:call
74 /** Perform an Arm Semihosting call from aarch64 code. */
76 /** Perform an Arm Semihosting call from aarch32 code. */
90 * calculate the time of date when the guest call SYS_TIME.
276 * Semihosting call information structure.
278 * This structure describes how a semi-hosting call is
280 * the call), a pointer to the implementation, and information
289 * Pointer to call implementation
299 RetErrno (ArmSemihosting::*call)(ThreadContext *tc, bool aarch64,
309 /** Is call implemented in aarch32? */
310 bool implemented32() const { return call && argc32 >= 0; }
311 /** Is call implemented in aarch64? */
312 bool implemented64() const { return call && argc64 >= 0; }
316 RetErrno call ## N (ThreadContext *tc, \