Searched refs:error (Results 1 - 25 of 105) sorted by relevance

12345

/gem5/ext/libelf/
H A Delf_errno.c37 old = LIBELF_PRIVATE(error);
38 LIBELF_PRIVATE(error) = 0;
H A Delf_errmsg.c34 * Retrieve a human readable translation for an error message.
45 DEFINE_ERROR(IO, "I/O error"),
54 DEFINE_ERROR(NUM, "Unknown error")
59 elf_errmsg(int error) argument
63 if (error == 0 && (error = LIBELF_PRIVATE(error)) == 0)
65 else if (error == -1)
66 error = LIBELF_PRIVATE(error);
[all...]
H A Delf_getident.c40 goto error;
45 goto error;
61 error:
/gem5/util/statetrace/base/
H A Darch_check.h33 #error "Alpha toolchain required."
37 #error "Amd64 toolchain required."
41 #error "Arm toolchain required."
45 #error "Hppa toolchain required."
50 #error "I686 toolchain required."
54 #error "IA64 toolchain required."
58 #error "Mips toolchain required."
62 #error "PowerPC toolchain required."
66 #error "Sparc toolchain required."
70 #error "Super
[all...]
/gem5/ext/nomali/tests/
H A Dnomali_test_helpers.h28 nomali_error_t error; \
29 if ((error = (c)) != NOMALI_E_OK) { \
31 nomali_errstr(error), error); \
37 if ((error = (c)) != NOMALI_E_OK) { \
39 nomali_errstr(error), error); \
H A Dnomali_test0.c36 nomali_error_t error = NOMALI_E_OK; local
40 if (error != NOMALI_E_OK)
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_machine.h48 # error "Could not detect the endianness of the CPU."
/gem5/src/mem/slicc/ast/
H A DTransitionDeclAST.py49 self.error("Transition declaration not part of a machine.")
53 self.error("Invalid action: %s is not part of machine: %s" % \
58 self.error("Invalid protocol access type: " \
64 self.error("Invalid state: %s is not part of machine: %s" % \
69 self.error("Invalid event: %s is not part of machine: %s" % \
H A DReturnStatementAST.py45 self.error("Invalid 'return' statement")
49 self.expr_ast.error("Return type miss-match, expected return " +
H A DTypeAST.py48 self.error("Type '%s' not declared.", self)
51 self.error("Type '%s' is should be type '%s'", self, assert_type)
H A DTypeFieldEnumAST.py43 self.error("States must in a State Declaration, not a normal enum.")
47 self.error("Duplicate enumeration: %s:%s" % (type, self.field_id))
54 self.error("Event declaration not part of a machine.")
60 self.error("RequestType declaration not part of a machine.")
H A DTypeFieldStateAST.py37 self.error("AccessPermission enum value must be specified")
45 self.error("State Declaration must be of type State.")
49 self.error("Duplicate enumeration: %s:%s" % (type, self.field_id))
55 self.error("State declaration not part of a machine.")
H A DInPortDeclAST.py51 self.error("InPort declaration not part of a machine.")
56 self.error("The inport queue's type must have the 'inport' " + \
72 self.error("in_port decls require 'Event' enumeration defined")
78 self.error("in_port decls require 'Addr' type to be defined")
106 self.error("in_port decls require 'Event' enumeration")
113 self.error("in_port decls require 'Addr' type to be defined")
H A DAST.py49 def error(self, message, *args): member in class:AST
50 self.location.error(message, *args)
H A DStaticCastAST.py48 self.expr_ast.error("static cast only premitted for those types " \
53 self.expr_ast.error("static cast miss-match, type is '%s'," \
H A DObjDeclAST.py46 self.error("Network queues require a 'virtual_network' attribute")
68 self.error("Initialization type mismatch '%s' and '%s'" % \
79 self.error("Duplicate data member: %s:%s" % (parent, self.ident))
H A DVarExprAST.py48 self.error("Unrecognized variable: %s", self._var)
55 self.error("There must be a type '%s' declared in this scope",
59 self.error("Incorrect type: " + \
H A DOperatorExprAST.py53 self.error("Type mismatch: left and right operands of " +
77 self.error("No operator matched with {0}!" .format(self.op))
87 self.error("Type mismatch: operands ({0}, {1}) for operator " \
117 self.error("Type mismatch: right operand of " +
121 self.error("Invalid prefix operator '%s'",
H A DEnumExprAST.py50 self.error("Type '%s' does not have enumeration '%s'",
H A DOutPortDeclAST.py50 self.error("The outport queue's type must have the 'outport' " +
55 self.error("The message type '%s' does not exist.",
/gem5/ext/ply/ply/
H A Dlex.py60 # Exception thrown when invalid token encountered and no default error
87 def error(self,msg,*args,**kwargs): member in class:PlyLogger
128 self.lexstateerrorf = {} # Dictionary of error functions for each state
356 # Verify type of the token. If not in the token map, raise an error
380 tok.type = "error"
386 # Error method didn't change text position at all. This is an error.
387 raise LexError("Scanning error. Illegal character '%s'" % (lexdata[lexpos]), lexdata[lexpos:])
552 self.error = 0
571 return self.error
577 self.log.error("N
[all...]
/gem5/util/m5/
H A DAndroid.mk18 $(error "Unsupported TARGET_ARCH $(TARGET_ARCH)")
/gem5/tests/testing/
H A Dunits.py93 def error(self, message, **kwargs): member in class:TestUnit
120 return self.error("Python exception:\n%s" % traceback.format_exc())
158 return self.error("Timeout", stdout=te.stdout, stderr=te.stderr)
160 return self.error("Failed to launch gem5: %s" % ose)
180 return self.error("gem5 terminated by signal %i" % (-status, ),
185 return self.error("gem5 exited with non-zero status: %i" % status,
245 return self.error("%s doesn't exist in reference directory" \
249 return self.error("%s doesn't exist in output directory" % fname)
258 return self.error("ref/%s and out/%s differ" % (fname, fname),
294 return self.error("dif
[all...]
/gem5/ext/googletest/googletest/test/
H A Dgtest_xml_outfiles_test.py81 except os.error:
85 except os.error:
89 except os.error:
/gem5/ext/systemc/src/sysc/qt/
H A Dqt.h38 #error "Need to know the machine-dependent stack alignment."
54 #error "QUICKTHREADS_QT_H: Stack must grow up or down!"
91 #error "Need to know the machine-dependent stack allocation."
127 #error "Need base stack size for varargs functions."

Completed in 25 milliseconds

12345