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

12345

/gem5/ext/testlib/
H A Dsandbox.py48 sys.stdin = open('/dev/stdin')
/gem5/src/cpu/testers/traffic_gen/
H A Dtraffic_gen.cc141 // open input file
143 infile.open(configFile.c_str(), ifstream::in);
/gem5/configs/example/
H A Dmemcheck.py201 cfg_file = open(cfg_file_name, 'w')
H A Dse.py97 with open(options.env, 'r') as f:
H A Dfs.py79 return open(options.command_line_file).read().strip()
/gem5/ext/mcpat/regression/
H A Dverify_output.py181 output_file_handle = open(mcpat_output, 'r')
/gem5/util/batch/
H A Djob.py211 fd = os.open(jobdir.file("output"),
/gem5/util/pbs/
H A Djob.py206 fd = os.open(jobdir.file("output"),
/gem5/util/style/
H A Drepo.py82 with open(self.file_path(name), "r") as f:
/gem5/src/gpu-compute/
H A Dcl_driver.cc96 ClDriver::open(ThreadContext *tc, int mode, int flags) function in class:ClDriver
/gem5/src/sim/
H A Dfd_array.cc67 * found; otherwise, open an input file and seek to location.
79 * match is found; otherwise, open an output file and seek to location.
145 * otherwise, open an input file and seek to location.
169 * otherwise, open an output file and seek to location.
193 * otherwise, open an error file and seek to location.
268 /* Need to open files and seek. */
300 int sim_fd = open(filename.c_str(), flags, mode);
303 fatal("Unable to open %s with mode %O", filename, mode);
H A Dpseudo_inst.cc336 fatal("file error: Can't open symbol table file %s\n", filename);
507 int fd = ::open(file.c_str(), O_RDONLY, 0);
509 panic("could not open file %s\n", file);
551 out = simout.open(filename, ios::in | ios::out | ios::binary, true);
556 panic("could not open file %s\n", filename);
/gem5/ext/pybind11/tests/test_embed/
H A Dtest_interpreter.cpp275 test_module.open(module_file);
/gem5/src/arch/
H A Disa_parser.py1567 # Track open files and, if applicable, how many chunks it has been
1623 f = self.open(filename)
1654 with self.open(file) as f:
1671 with self.open(file) as f:
1696 with self.open(file) as f:
1718 with self.open(file) as f:
2628 def open(self, name, bare=False): member in class:ISAParser
2631 f = open(filename, 'w')
2640 f = self.open(file)
2666 contents = open(filenam
[all...]
/gem5/ext/ply/test/
H A Dtestlex.py411 open("lexdir/__init__.py","w").write("")
412 open("lexdir/sub/__init__.py","w").write("")
/gem5/src/cpu/kvm/
H A Dvm.cc69 kvmFD = ::open("/dev/kvm", O_RDWR);
71 fatal("KVM: Failed to open /dev/kvm\n");
/gem5/src/dev/net/
H A Dethertap.cc406 int fd = open(p->tun_clone_device.c_str(), O_RDWR | O_NONBLOCK);
408 panic("Couldn't open %s.\n", p->tun_clone_device);
/gem5/src/python/m5/util/
H A Dcode_formatter.py161 f = open(os.path.join(*args), "w")
/gem5/util/
H A Dgem5img.py268 fd = os.open(file, os.O_WRONLY | os.O_CREAT)
/gem5/src/mem/ruby/system/
H A DRubySystem.cc216 fatal("Can't open memory trace file '%s'\n", filename);
281 int fd = open(filename.c_str(), O_RDONLY);
283 perror("open");
284 fatal("Unable to open trace file %s", filename);
/gem5/tests/gem5/
H A Dfixture.py311 with tarfile.open(self.filename) as tf:
/gem5/ext/ply/ply/
H A Dlex.py176 tf = open(filename,"w")
835 f = open(filename)
1017 f = open(filename)
/gem5/util/tap/
H A Dtap.cc284 fd = open(device, O_RDWR, 0);
286 panic("could not open %s: %s\n", device, strerror(errno));
/gem5/src/systemc/tests/tlm/endian_conv/
H A Dtest_endian_conv.cpp295 fin.open(filename.c_str(), ios_base::in);
297 std::cerr << "Could not open input filename " << filename << std::endl;
/gem5/ext/pybind11/tools/
H A Dmkdoc.py360 with open(out_path, 'w') as out_file:

Completed in 51 milliseconds

12345