Home
last modified time | relevance | path

Searched defs:msg (Results 1 – 25 of 87) sorted by relevance

1234

/tools/tradefederation/core/common_util/com/android/tradefed/command/
DFatalHostError.java37 public FatalHostError(String msg, Throwable cause, ErrorIdentifier errorId) { in FatalHostError()
49 public FatalHostError(String msg, Throwable cause) { in FatalHostError()
60 public FatalHostError(String msg, ErrorIdentifier errorId) { in FatalHostError()
71 public FatalHostError(String msg) { in FatalHostError()
/tools/tradefederation/core/common_util/com/android/tradefed/config/
DConfigurationException.java32 public ConfigurationException(String msg) { in ConfigurationException()
43 public ConfigurationException(String msg, ErrorIdentifier error) { in ConfigurationException()
54 public ConfigurationException(String msg, Throwable cause) { in ConfigurationException()
66 public ConfigurationException(String msg, Throwable cause, ErrorIdentifier error) { in ConfigurationException()
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/
DDeviceNotAvailableException.java52 public DeviceNotAvailableException(String msg) { in DeviceNotAvailableException()
63 public DeviceNotAvailableException(String msg, String serial) { in DeviceNotAvailableException()
75 public DeviceNotAvailableException(String msg, String serial, ErrorIdentifier errorId) { in DeviceNotAvailableException()
87 public DeviceNotAvailableException(String msg, Throwable cause, String serial) { in DeviceNotAvailableException()
101 String msg, Throwable cause, String serial, ErrorIdentifier errorId) { in DeviceNotAvailableException()
DDeviceUnresponsiveException.java36 public DeviceUnresponsiveException(String msg, String serial) { in DeviceUnresponsiveException()
48 public DeviceUnresponsiveException(String msg, String serial, ErrorIdentifier errorId) { in DeviceUnresponsiveException()
60 public DeviceUnresponsiveException(String msg, Throwable cause, String serial) { in DeviceUnresponsiveException()
74 String msg, Throwable cause, String serial, ErrorIdentifier errorId) { in DeviceUnresponsiveException()
DDeviceDisconnectedException.java36 public DeviceDisconnectedException(String msg, String serial) { in DeviceDisconnectedException()
48 public DeviceDisconnectedException(String msg, String serial, ErrorIdentifier errorId) { in DeviceDisconnectedException()
60 public DeviceDisconnectedException(String msg, Throwable cause, String serial) { in DeviceDisconnectedException()
74 String msg, Throwable cause, String serial, ErrorIdentifier errorId) { in DeviceDisconnectedException()
DDeviceRuntimeException.java38 public DeviceRuntimeException(String msg, ErrorIdentifier errorId) { in DeviceRuntimeException()
50 public DeviceRuntimeException(String msg, Throwable t, ErrorIdentifier errorId) { in DeviceRuntimeException()
/tools/test/connectivity/acts/framework/acts/
Dtracelogger.py41 def _log_with(self, logging_lambda, trace_level, msg, *args, **kwargs): argument
45 def exception(self, msg, *args, **kwargs): argument
48 def debug(self, msg, *args, **kwargs): argument
51 def error(self, msg, *args, **kwargs): argument
54 def warn(self, msg, *args, **kwargs): argument
57 def warning(self, msg, *args, **kwargs): argument
60 def info(self, msg, *args, **kwargs): argument
Dasserts.py35 msg=None, argument
/tools/tradefederation/core/javatests/com/android/tradefed/util/
DEmailTest.java112 Message msg = new Message(); in testSendInval_destination() local
127 Message msg = new Message("dest@ination.com", null, "body"); in testSendInval_subject() local
139 Message msg = new Message("dest@ination.com", "subject", null); in testSendInval_body() local
151 final Message msg = new Message("dest@ination.com", "subject", "body"); in testSend_simple() local
170 final Message msg = new Message("dest@ination.com", "subject", expectedBody); in testSend_htmlEmail() local
187 Message msg = new Message("dest@ination.com", "", "body"); in testSend_emptySubject() local
197 Message msg = new Message("dest@ination.com", "subject", ""); in testSend_emptyBody() local
221 final Message msg = new Message(); in _manual_testFuncSend() local
/tools/test/connectivity/acts/framework/acts/controllers/rohdeschwarz_lib/
Dcmx500_events.py34 def wrapped(msg): argument
60 def wrapped(msg): argument
86 def wrapped(msg): argument
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/
Dtako_trace_logger.py34 def step(self, msg, *args, **kwargs): argument
38 def device(self, msg, *args, **kwargs): argument
42 def suite(self, msg, *args, **kwargs): argument
46 def case(self, msg, *args, **kwargs): argument
/tools/tradefederation/core/src/com/android/tradefed/device/
DNetworkNotAvailableException.java34 public NetworkNotAvailableException(String msg) { in NetworkNotAvailableException()
44 public NetworkNotAvailableException(String msg, Throwable cause) { in NetworkNotAvailableException()
DNoDeviceException.java34 public NoDeviceException(String msg, ErrorIdentifier errorId) { in NoDeviceException()
/tools/loganalysis/src/com/android/loganalysis/util/config/
DConfigurationException.java30 public ConfigurationException(String msg) { in ConfigurationException()
40 public ConfigurationException(String msg, Throwable cause) { in ConfigurationException()
/tools/tradefederation/core/src/com/android/tradefed/config/
DOptionNotAllowedException.java25 public OptionNotAllowedException(String msg) { in OptionNotAllowedException()
29 public OptionNotAllowedException(String msg, Throwable cause) { in OptionNotAllowedException()
DClassNotFoundConfigurationException.java39 String msg, in ClassNotFoundConfigurationException()
58 String msg, in ClassNotFoundConfigurationException()
/tools/tradefederation/core/global_configuration/com/android/tradefed/util/keystore/
DKeyStoreException.java37 public KeyStoreException(String msg) { in KeyStoreException()
48 public KeyStoreException(String msg, Throwable cause) { in KeyStoreException()
/tools/tradefederation/core/src/com/android/tradefed/sandbox/
DSandboxConfigurationException.java31 public SandboxConfigurationException(String msg, ErrorIdentifier error) { in SandboxConfigurationException()
42 public SandboxConfigurationException(String msg, Throwable cause, ErrorIdentifier error) { in SandboxConfigurationException()
/tools/tradefederation/contrib/src/com/android/regression/tests/
DMetrics.java62 String msg = in setNumTests() local
178 void error(String msg) { in error()
187 void warn(String msg) { in warn()
/tools/tradefederation/core/src/com/android/tradefed/util/
DGenericLogcatEventParser.java64 private String msg; field in GenericLogcatEventParser.LogcatEvent
66 private LogcatEvent(LogcatEventType eventType, String msg) { in LogcatEvent()
133 public void registerEventTrigger(String tag, String msg, LogcatEventType response) { in registerEventTrigger()
146 LogLevel logLevel, String tag, String msg, LogcatEventType response) { in registerEventTrigger()
DBulkEmailer.java72 Message msg = new Message(); in sendEmails() local
/tools/repohooks/rh/
Dconfig_test.py28 def assertEqual(msg, exp, actual): argument
46 def check_commit_msg(msg): argument
/tools/dexter/slicer/
Dcommon.cc29 static void log_(const std::string& msg) { in log_()
90 void _fatal(const std::string& msg) { in _fatal()
/tools/tradefederation/core/src/com/android/tradefed/log/
DTerribleFailureEmailHandler.java188 Message msg = new Message(); in generateEmailMessage() local
218 Message msg = generateEmailMessage(description, cause); in onTerribleFailure() local
/tools/tradefederation/core/javatests/com/android/tradefed/util/net/
DHttpHelperFuncTest.java57 String msg = "Backend was not initialized properly"; in testTimeout() local
98 String msg = "Backend was not initialized properly"; in testNoTimeout() local

1234