Home
last modified time | relevance | path

Searched refs:message (Results 1 – 25 of 144) sorted by relevance

123456

/tools/security/fuzzing/orphans/pppd/
Deap_fuzz.proto4 message PacketSet{
8 message Packet{
17 message EapRequest{
27 message EaptRequestIdentity{
31 message EsptRequestNotification{
35 message EaptRequestMD5Chap{
38 message EaptRequestSRP{
47 message EapRequestSRPChallenge{
51 message EapRequestSRPKey{
55 message EapRequestSRPValidator {
[all …]
/tools/test/connectivity/acts/framework/acts/controllers/android_lib/
Dlogcat.py37 def read_output(self, message): argument
39 all_timestamps = re.findall(TIMESTAMP_REGEX, message)
44 def _get_log_level(message): argument
46 if message.startswith('-') or len(message) < 37:
49 log_level = message[36]
64 def log_line(message): argument
65 timestamp_tracker.read_output(message)
66 log.log(_get_log_level(message), message)
/tools/metalava/src/main/java/com/android/tools/metalava/model/text/
DApiParseException.kt22 internal constructor(message: String) : super(message)
23 internal constructor(message: String, file: String, cause: Exception?) : super(message, cause) {
26 internal constructor(message: String, tokenizer: ApiFile.Tokenizer) : super(message) {
31 override val message: String constant in com.android.tools.metalava.model.text.ApiParseException
43 sb.append(super.message)
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/dev_utils/
Dapollo_log_decoder.py64 _, encoding, message = logline.split("|", 2)
65 message = message.rstrip()
67 message = decoders[encoding](message)
68 header = message[0:4]
69 serialized = message[4:]
70 if len(header) == 4 and len(serialized) == len(message) - 4:
/tools/asuite/atest-py2/proto/
Dinternal_user_log.proto8 message AtestLogEventInternal {
14 message AtestStartEvent {
22 message AtestExitEvent {
31 message FindTestFinishEvent {
40 message BuildFinishEvent {
47 message RunnerFinishEvent {
51 message Test {
60 message RunTestsFinishEvent {
65 message LocalDetectEvent {
Dexternal_user_log.proto8 message AtestLogEventExternal {
14 message AtestStartEvent {
18 message AtestExitEvent {
25 message FindTestFinishEvent {
31 message BuildFinishEvent {
37 message RunnerFinishEvent {
44 message RunTestsFinishEvent {
49 message LocalDetectEvent {
Dclientanalytics.proto5 message LogRequest {
11 message ClientInfo {
15 message LogResponse {
19 message LogEvent {
/tools/asuite/atest/proto/
Dinternal_user_log.proto8 message AtestLogEventInternal {
14 message AtestStartEvent {
22 message AtestExitEvent {
31 message FindTestFinishEvent {
40 message BuildFinishEvent {
47 message RunnerFinishEvent {
51 message Test {
60 message RunTestsFinishEvent {
65 message LocalDetectEvent {
Dexternal_user_log.proto8 message AtestLogEventExternal {
14 message AtestStartEvent {
18 message AtestExitEvent {
25 message FindTestFinishEvent {
31 message BuildFinishEvent {
37 message RunnerFinishEvent {
44 message RunTestsFinishEvent {
49 message LocalDetectEvent {
Dclientanalytics.proto5 message LogRequest {
11 message ClientInfo {
15 message LogResponse {
19 message LogEvent {
/tools/platform-compat/java/com/android/annotationvisitor/
DAnnotatedClassContext.java43 private String buildReportString(String message, Object... args) { in buildReportString() argument
47 .format(Locale.US, message, args); in buildReportString()
52 public void reportError(String message, Object... args) { in reportError() argument
53 status.error(buildReportString(message, args)); in reportError()
57 public void reportWarning(String message, Object... args) { in reportWarning() argument
58 status.warning(buildReportString(message, args)); in reportWarning()
DAnnotatedMemberContext.java48 private String buildReportString(String message, Object... args) { in buildReportString() argument
53 .format(Locale.US, message, args); in buildReportString()
58 public void reportError(String message, Object... args) { in reportError() argument
59 status.error(buildReportString(message, args)); in reportError()
63 public void reportWarning(String message, Object... args) { in reportWarning() argument
64 status.warning(buildReportString(message, args)); in reportWarning()
/tools/test/connectivity/acts/framework/acts/controllers/fuchsia_lib/
Dlogging_lib.py28 def logE(self, message): argument
39 "message": '[%s] %s' % (datetime.datetime.now(), message),
46 def logI(self, message): argument
57 "message": '[%s] %s' % (datetime.datetime.now(), message)
64 def logW(self, message): argument
75 "message": '[%s] %s' % (datetime.datetime.now(), message)
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/bt/loggers/protos/
Dbluetooth_metric.proto5 message BluetoothTestDevice {
16 message BluetoothContinuousTestResultHeader {
22 message BluetoothReconnectTestResult {
35 message BluetoothPairAndConnectTestResult {
48 message BluetoothA2dpCodecConfig {
62 message AudioTestDataPoint {
70 message BluetoothAudioTestResult {
89 message BluetoothDataTestResult {
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/dev_utils/proto/google/protobuf/
Ddescriptor.proto52 message FileDescriptorSet {
57 message FileDescriptorProto {
88 // Describes a message type.
89 message DescriptorProto {
98 message ExtensionRange {
109 // Describes a field within a message.
110 message FieldDescriptorProto {
156 // For message and enum types, this is the name of the type. If the name
159 // message are searched, then within the parent, on up to the root
184 message OneofDescriptorProto {
[all …]
/tools/test/connectivity/acts/framework/tests/controllers/android_lib/
Dlogcat_test.py101 logcat._get_log_level = lambda message: logging.INFO
104 message = 'MESSAGE'
106 logcat._log_line_func(log, tracker)(message)
109 log.log.assert_called_once_with(logging.INFO, message)
112 logcat._get_log_level = lambda message: logging.INFO
115 message = 'MESSAGE'
117 logcat._log_line_func(log, tracker)(message)
120 tracker.read_output.assert_called_once_with(message)
/tools/apksig/src/main/java/com/android/apksig/apk/
DMinSdkVersionException.java30 public MinSdkVersionException(String message) { in MinSdkVersionException() argument
31 super(message); in MinSdkVersionException()
37 public MinSdkVersionException(String message, Throwable cause) { in MinSdkVersionException() argument
38 super(message, cause); in MinSdkVersionException()
DApkFormatException.java28 public ApkFormatException(String message) { in ApkFormatException() argument
29 super(message); in ApkFormatException()
32 public ApkFormatException(String message, Throwable cause) { in ApkFormatException() argument
33 super(message, cause); in ApkFormatException()
/tools/apksig/src/main/java/com/android/apksig/internal/apk/
DSignatureNotFoundException.java23 public SignatureNotFoundException(String message) { in SignatureNotFoundException() argument
24 super(message); in SignatureNotFoundException()
27 public SignatureNotFoundException(String message, Throwable cause) { in SignatureNotFoundException() argument
28 super(message, cause); in SignatureNotFoundException()
/tools/apksig/src/main/java/com/android/apksig/zip/
DZipFormatException.java25 public ZipFormatException(String message) { in ZipFormatException() argument
26 super(message); in ZipFormatException()
29 public ZipFormatException(String message, Throwable cause) { in ZipFormatException() argument
30 super(message, cause); in ZipFormatException()
/tools/apksig/src/main/java/com/android/apksig/internal/pkcs7/
DPkcs7DecodingException.java25 public Pkcs7DecodingException(String message) { in Pkcs7DecodingException() argument
26 super(message); in Pkcs7DecodingException()
29 public Pkcs7DecodingException(String message, Throwable cause) { in Pkcs7DecodingException() argument
30 super(message, cause); in Pkcs7DecodingException()
/tools/apksig/src/main/java/com/android/apksig/internal/asn1/
DAsn1DecodingException.java25 public Asn1DecodingException(String message) { in Asn1DecodingException() argument
26 super(message); in Asn1DecodingException()
29 public Asn1DecodingException(String message, Throwable cause) { in Asn1DecodingException() argument
30 super(message, cause); in Asn1DecodingException()
/tools/apksig/src/main/java/com/android/apksig/internal/asn1/ber/
DBerDataValueFormatException.java27 public BerDataValueFormatException(String message) { in BerDataValueFormatException() argument
28 super(message); in BerDataValueFormatException()
31 public BerDataValueFormatException(String message, Throwable cause) { in BerDataValueFormatException() argument
32 super(message, cause); in BerDataValueFormatException()
/tools/metalava/src/main/java/com/android/tools/metalava/
DBaseline.kt71 fun mark(element: Item, message: String, issue: Issues.Issue): Boolean { in <lambda>()
73 return mark(elementId, message, issue) in <lambda>()
77 fun mark(element: PsiElement, message: String, issue: Issues.Issue): Boolean { in <lambda>()
79 return mark(elementId, message, issue) in <lambda>()
83 fun mark(file: File, message: String, issue: Issues.Issue): Boolean { in <lambda>()
85 return mark(elementId, message, issue) in <lambda>()
88 …private fun mark(elementId: String, @Suppress("UNUSED_PARAMETER") message: String, issue: Issues.I… in <lambda>()
110 idMap?.set(elementId, message) in <lambda>()
218 val message = lines[i + 1].trim() in <lambda>() constant
229 newIdMap[elementId] = message in <lambda>()
[all …]
/tools/security/remote_provisioning/attestation_testing/java/com/google/attestationexample/
DUtils.java11 public static void logError(String message, int expected, int actual) { in logError() argument
12 Log.e(FAIL, message); in logError()
17 public static void logError(String message, byte[] expected, byte[] actual) { in logError() argument
18 Log.e(FAIL, message); in logError()

123456