Searched refs:file (Results 51 - 75 of 145) sorted by relevance

123456

/gem5/src/systemc/utils/
H A Dsc_report_handler.cc56 const char *msg, const char *file, int line)
58 report(severity, msg_type, msg, SC_MEDIUM, file, line);
63 const char *msg, int verbosity, const char *file,
94 sc_report report(severity, msg_type, msg, verbosity, file, line,
112 const char *file, int line)
119 report(severity, msg_type.c_str(), msg, file, line);
390 ccprintf(str, "\nIn file: %s:%d", report.get_file_name(),
55 report(sc_severity severity, const char *msg_type, const char *msg, const char *file, int line) argument
62 report(sc_severity severity, const char *msg_type, const char *msg, int verbosity, const char *file, int line) argument
111 report(sc_severity severity, int id, const char *msg, const char *file, int line) argument
/gem5/configs/boot/
H A Dsurge-client.rcS30 echo "131072" > /proc/sys/fs/file-max
H A Discsi-server.rcS25 echo "131072" > /proc/sys/fs/file-max
H A Dnat-spec-surge-client.rcS34 echo "131072" > /proc/sys/fs/file-max
H A Dnat-spec-surge-server.rcS36 echo "131072" > /proc/sys/fs/file-max
39 echo -n "mounting file set..."
H A Dnfs-client-dbench.rcS30 echo "131072" > /proc/sys/fs/file-max
H A Dnfs-client-nhfsstone.rcS30 echo "131072" > /proc/sys/fs/file-max
H A Dnfs-client-smallb.rcS30 echo "131072" > /proc/sys/fs/file-max
H A Dnfs-client-tcp-smallb.rcS30 echo "131072" > /proc/sys/fs/file-max
H A Dnfs-client-tcp.rcS30 echo "131072" > /proc/sys/fs/file-max
H A Dnfs-client.rcS30 echo "131072" > /proc/sys/fs/file-max
H A Dnfs-server-nhfsstone.rcS30 echo "131072" > /proc/sys/fs/file-max
H A Dnfs-server.rcS30 echo "131072" > /proc/sys/fs/file-max
/gem5/util/batch/
H A Dbatch.py40 if isinstance(input, file):
43 input = file(input, 'r')
55 if isinstance(output, file):
58 output = file(output, 'w')
/gem5/util/pbs/
H A Dpbs.py40 if isinstance(input, file):
43 input = file(input, 'r')
55 if isinstance(output, file):
58 output = file(output, 'w')
/gem5/src/base/
H A Dbmpwriter.hh52 * @file Declaration of a class that writes a frame buffer to a bitmap
106 FileHeader file; member in struct:BmpWriter::CompleteV1Header
/gem5/src/dev/net/
H A Detherdump.cc31 /* @file
48 : SimObject(p), stream(simout.create(p->file, true)->stream()),
/gem5/ext/googletest/googletest/src/
H A Dgtest-filepath.cc69 // noted, a file path can contain either kind of path separators, or a mixture
121 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
122 // FilePath("dir/file"). If a case-insensitive extension is not
150 // Example: FilePath("path/to/file").RemoveDirectoryName() returns
151 // FilePath("file"). If there is no directory part ("just_a_file"), it returns
152 // the FilePath unmodified. If there is no file part ("just_a_dir/") it
161 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
164 // not have a file, like "just/a/dir/", it returns the FilePath unmodified.
187 std::string file; local
189 file
[all...]
/gem5/src/mem/slicc/
H A Dutil.py72 print("%s: Warning: %s" % (self, message), file=sys.stderr)
/gem5/src/systemc/ext/utils/
H A Dendian.hh5 // ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
76 # error The file boost/detail/endian.hpp needs to be set up for your CPU type.
/gem5/ext/pybind11/tools/
H A Dmkdoc.py194 if not (node.location.file is None or
195 os.path.samefile(d(node.location.file.name), filename)):
225 print('Processing "%s" ..' % self.filename, file=sys.stderr)
290 print('Waiting for jobs to finish ..', file=sys.stderr)
299 This file contains docstrings for the Python bindings.
321 ''', file=out_file)
334 (name, '\n' if '\n' in comment else ' ', comment), file=out_file)
340 ''', file=out_file)
364 # output file.
/gem5/ext/ply/ply/
H A Dlex.py35 __tabversion__ = "3.2" # Version of table file used
169 # writetab() - Write lexer information to a table file
177 tf.write("# %s.py. This file automatically created by PLY (version %s). Don't edit!\n" % (tabfile,__version__))
212 # readtab() - Read lexer information from a tab file
446 # suitable for output to a table file
542 # user's input file.
683 file = func_code(t).co_filename
684 self.log.error("%s:%d: Rule '%s' must be defined as a string",file,line,t.__name__)
731 file = func_code(f).co_filename
732 self.files[file]
[all...]
H A Dyacc.py72 # a 'parser.out' file in the current directory
74 debug_file = 'parser.out' # Default name of the debugging file
113 # such as the parser.out file. If a user wants more detailed
511 errtoken = None # End of file!
557 # at the end of the file. nuke the top entry and generate an error token
784 errtoken = None # End of file!
830 # at the end of the file. nuke the top entry and generate an error token
1039 errtoken = None # End of file!
1085 # at the end of the file. nuke the top entry and generate an error token
1143 # file
[all...]
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-spec-builders.h34 // This file implements the ON_CALL() and EXPECT_CALL() macros.
251 // Where in the source file was the default action spec defined?
252 const char* file() const { return file_; } function in class:testing::internal::UntypedOnCallSpecBase
350 // source file that contains the statement => file_
455 const void* mock_obj, const char* file, int line)
693 ExpectationBase(const char* file, int line, const string& source_text);
697 // Where in the source file was the expectation spec defined?
698 const char* file() const { return file_; }
704 // Describes the source file location of this expectation.
706 *os << FormatFileLocation(file(), lin
[all...]
/gem5/src/sim/
H A Dpseudo_inst.cc333 ifstream file(filename.c_str());
335 if (!file)
336 fatal("file error: Can't open symbol table file %s\n", filename);
338 while (!file.eof()) {
339 getline(file, buffer);
369 file.close();
500 const string &file = tc->getSystemPtr()->params()->readfile; local
501 if (file.empty()) {
507 int fd = ::open(file
[all...]

Completed in 16 milliseconds

123456