Lines Matching defs:RETVAL
1620 #define RETVAL State.regs[10] /* return value */
1634 RETVAL = fork ();
1645 RETVAL = execve (path, (void *)argv, (void *)envp);
1659 RETVAL = execv (path, (void *)argv);
1674 RETVAL = pipe (host_fd);
1688 RETVAL = wait (&status);
1698 RETVAL = sim_io_read (simulator, PARM1, buf, PARM3);
1701 if ((int) RETVAL < 0)
1711 RETVAL = sim_io_write_stdout (simulator, buf, PARM3);
1713 RETVAL = sim_io_write (simulator, PARM1, buf, PARM3);
1715 if ((int) RETVAL < 0)
1721 RETVAL = sim_io_lseek (simulator, PARM1, PARM2, PARM3);
1722 if ((int) RETVAL < 0)
1727 RETVAL = sim_io_close (simulator, PARM1);
1728 if ((int) RETVAL < 0)
1735 RETVAL = sim_io_open (simulator, buf, PARM2);
1737 if ((int) RETVAL < 0)
1764 RETVAL = sim_io_stat (simulator, path, &host_stat);
1782 if ((int) RETVAL < 0)
1793 RETVAL = sim_io_fstat (simulator, PARM1, &host_stat);
1810 if ((int) RETVAL < 0)
1819 RETVAL = sim_io_rename (simulator, oldpath, newpath);
1822 if ((int) RETVAL < 0)
1830 RETVAL = sim_io_unlink (simulator, path);
1832 if ((int) RETVAL < 0)
1840 RETVAL = chown (path, PARM2, PARM3);
1850 RETVAL = chmod (path, PARM2);
1861 RETVAL = time (&now);
1872 RETVAL = times (&tms);
1887 RETVAL = gettimeofday (&t, &tz);
1903 /* RETVAL = utime (path, (void *) MEMPTR (PARM2)); */