Searched refs:open (Results 101 - 114 of 114) sorted by relevance

12345

/gem5/ext/ply/ply/
H A Dcpp.py753 data = open(iname,"r").read()
879 f = open(sys.argv[1])
H A Dyacc.py1851 in_f = open(filename,"rb")
2549 f = open(filename,"w")
2671 outf = open(filename,"wb")
2836 f = open(filename)
3091 debuglog = PlyLogger(open(debugfile,"w"))
/gem5/configs/common/
H A DSimulation.py308 simpoint_file = open(simpoint_filename)
309 weight_file = open(weight_filename)
/gem5/src/python/m5/util/
H A Djobfile.py421 exec(compile(open(filename).read(), filename, 'exec'), data)
/gem5/configs/example/
H A Dread_config.py473 root = json.load(open(config_file, 'r'))
/gem5/src/base/loader/
H A Delf_object.cc245 int fd = open(interp_path, O_RDONLY);
247 fatal("Unable to open dynamic executable's interpreter.\n");
/gem5/ext/drampower/src/
H A DCmdScheduler.cc57 commands.open("commands.trace", ifstream::out);
/gem5/ext/googletest/googletest/src/
H A Dgtest-death-test.cc1027 const int cwd_fd = open(".", O_RDONLY);
1234 DeathTestAbort("Unable to open parent process " +
H A Dgtest-port.cc139 const int fd = open("/proc/self/as", O_RDONLY);
949 GTEST_CHECK_(captured_fd != -1) << "Unable to open temporary file "
1133 // "GTEST_FOO" in the open-source version.
/gem5/src/python/m5/ext/pyfdt/
H A Dpyfdt.py885 with open(subpath+'/'+f, 'rb') as content_file:
/gem5/src/arch/arm/
H A Dsemihosting.cc297 int64_t ret = file->open();
702 fatal("Failed to open %s (%s): %s\n",
732 // Was the file open when the checkpoint was created?
845 panic_if(file, "Trying to open an already open file.\n");
975 fatal("Failed to open file: %s", _name);
/gem5/ext/mcpat/cacti/
H A Dio.cc1287 file.open("out.csv", ios::out | ios::app);
1326 // file << "Dyn read energy per access from open page (nJ), ";
1328 // file << "Leak power of a subbank with page open (mW), ";
/gem5/src/sim/
H A Dsyscall_emul.cc774 * viable numbers are; we execute the open call to retrieve one.
776 int res_fd = dup2(old_sim_fd, open("/dev/null", O_RDONLY));
935 status flag for two new open file descriptors.
954 (FD_CLOEXEC) file status flag for two new open file descriptors.
H A Dsyscall_emul.hh797 warn("open%s: cannot decode flags 0x%x",
807 * If the simulated process called open or openat with AT_FDCWD specified,
842 DPRINTF_SYSCALL(Verbose, "open%s: passing call to "
843 "driver open with path[%s]\n",
845 return drv->open(tc, mode, host_flags);
854 * We make several attempts resolve a call to open.
864 * special cases, pass it through to the open call on the __HOST__ to let
865 * the host open the file on our behalf. Again, the openImpl tries to
869 * 4) If the host cannot open the file, the open attemp
[all...]

Completed in 67 milliseconds

12345