Searched refs:message (Results 251 - 275 of 5913) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/components/pairing/
H A Dproto_decoder.cc35 // Update the message buffer.
38 // If there is no current message, the next byte is the message type.
48 LOG(ERROR) << "Unknown message type received: " << message_type;
54 // If the message size isn't set, the next two bytes are the message size.
79 pairing_api::HostStatus message; local
80 message.ParseFromArray(&buffer[0], buffer.size());
81 observer_->OnHostStatusMessage(message);
85 pairing_api::ConfigureHost message; local
91 pairing_api::PairDevices message; local
97 pairing_api::CompleteSetup message; local
103 pairing_api::Error message; local
121 SendHostStatus( const pairing_api::HostStatus& message, int* size) argument
131 SendConfigureHost( const pairing_api::ConfigureHost& message, int* size) argument
141 SendPairDevices( const pairing_api::PairDevices& message, int* size) argument
151 SendCompleteSetup( const pairing_api::CompleteSetup& message, int* size) argument
161 SendError( const pairing_api::Error& message, int* size) argument
171 SendMessage( uint8_t message_type, const std::string& message, int* size) argument
[all...]
H A Dproto_decoder.h41 const pairing_api::HostStatus& message) = 0;
43 const pairing_api::ConfigureHost& message) = 0;
45 const pairing_api::PairDevices& message) = 0;
47 const pairing_api::CompleteSetup& message) = 0;
49 const pairing_api::Error& message) = 0;
66 static IOBufferRefPtr SendHostStatus(const pairing_api::HostStatus& message,
69 const pairing_api::ConfigureHost& message, int* size);
70 static IOBufferRefPtr SendPairDevices(const pairing_api::PairDevices& message,
73 const pairing_api::CompleteSetup& message, int* size);
74 static IOBufferRefPtr SendError(const pairing_api::Error& message, in
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dgenerated_message_reflection.h47 #include <google/protobuf/message.h>
99 // descriptor: The descriptor for the message type being implemented.
100 // default_instance: The default instance of the message. This is only
103 // sub-message has not been initialized yet. (Thus, all
104 // embedded message fields *must* have non-NULL pointers
107 // the start of the message object, of each field. These can
111 // has_bits_offset: Offset in the message of an array of uint32s of size
114 // corresponding field of the message has been initialized.
117 // unknown_fields_offset: Offset in the message of the UnknownFieldSet for
118 // the message
[all...]
H A Dreflection_ops.h42 #include <google/protobuf/message.h>
51 // slower than implementations tailored for the specific message type.
61 static void Clear(Message* message);
62 static bool IsInitialized(const Message& message);
63 static void DiscardUnknownFields(Message* message);
65 // Finds all unset required fields in the message and adds their full
68 static void FindInitializationErrors(const Message& message,
H A Dmessage.h36 // protocol message objects. Although it's possible to implement this
42 // Say you have a message defined as:
44 // message Foo {
52 // string data; // Will store a serialized version of the message.
55 // // Create a message and serialize it.
66 // // Parse the serialized message and check that it contains the
96 // // Parse the message.
153 // A container to hold message metadata.
181 // Make this message into a copy of the given message
782 GetRepeatedPtrField( const Message& message, const FieldDescriptor* field) const argument
789 MutableRepeatedPtrField( Message* message, const FieldDescriptor* field) const argument
799 GetRepeatedPtrField( const Message& message, const FieldDescriptor* field) const argument
808 MutableRepeatedPtrField( Message* message, const FieldDescriptor* field) const argument
817 GetRepeatedPtrField( const Message& message, const FieldDescriptor* field) const argument
826 MutableRepeatedPtrField( Message* message, const FieldDescriptor* field) const argument
[all...]
H A Dlite_unittest.cc44 void ExpectMessageMerged(const google::protobuf::unittest::TestAllTypesLite& message) { argument
45 GOOGLE_CHECK(message.optional_int32() == 3);
46 GOOGLE_CHECK(message.optional_int64() == 2);
47 GOOGLE_CHECK(message.optional_string() == "hello");
66 protobuf_unittest::TestAllTypesLite message, message2, message3; local
67 google::protobuf::TestUtilLite::ExpectClear(message);
68 google::protobuf::TestUtilLite::SetAllFields(&message);
69 message2.CopyFrom(message);
70 data = message.SerializeAsString();
72 google::protobuf::TestUtilLite::ExpectAllFieldsSet(message);
82 protobuf_unittest::TestAllExtensionsLite message, message2, message3; local
99 protobuf_unittest::TestPackedTypesLite message, message2, message3; local
115 protobuf_unittest::TestPackedExtensionsLite message, message2, message3; local
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
H A DPresentationConsoleMessageHelper.js113 * @param {!WebInspector.PresentationConsoleMessage=} message
115 _dispatchConsoleEvent: function(eventType, uiSourceCode, message)
120 target.dispatchEventToListeners(eventType, message);
151 var message = /** @type {!WebInspector.ConsoleMessage} */ (event.data);
152 this._consoleMessageAdded(message)
156 * @param {!WebInspector.ConsoleMessage} message
158 _consoleMessageAdded: function(message)
160 if (!message.url || !message.isErrorOrWarning())
163 var rawLocation = this._rawLocation(message);
[all...]
/external/tcpdump/
H A Dprint-babel.c318 const u_char *message; local
321 message = cp + 4 + i;
323 TCHECK2(*message, 1);
324 if((type = message[0]) == MESSAGE_PAD1) {
330 TCHECK2(*message, 2);
332 len = message[1];
334 TCHECK2(*message, 2 + len);
353 nonce = EXTRACT_16BITS(message + 4);
354 interval = EXTRACT_16BITS(message + 6);
367 nonce = EXTRACT_16BITS(message
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
H A DException.pm12 is $ex->message, '';
17 my $ex = $self->class->new({ message => 'test error message' });
18 is $ex->message, 'test error message';
24 $self->class->throw(message => 'test error message');
27 is $ex->message, 'test error message';
/external/chromium_org/chrome/browser/ui/cocoa/autofill/
H A Dautofill_bubble_controller.h21 // Creates an error bubble with the given |message|. You need to call
25 message:(NSString*)message;
27 // Designated initializer. Creates a bubble with given |message| and insets the
30 message:(NSString*)message
34 // Maximum width that the bubble will occupy, regardless of message size.
37 // Update the current text with |message|.
38 - (void)setMessage:(NSString*)message;
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_database_error.h17 IndexedDBDatabaseError(uint16 code, const char* message) argument
18 : code_(code), message_(base::ASCIIToUTF16(message)) {}
19 IndexedDBDatabaseError(uint16 code, const base::string16& message) argument
20 : code_(code), message_(message) {}
24 const base::string16& message() const { return message_; } function in class:content::IndexedDBDatabaseError
/external/chromium_org/extensions/renderer/resources/
H A Di18n_custom_bindings.js19 // The first argument is the message, and should be a string.
20 var message = args[0];
21 if (typeof(message) !== 'string') {
23 'be type "string", was ' + message +
24 ' (type "' + typeof(message) + '")');
25 args[0] = String(message);
/external/chromium_org/media/test/data/eme_player_js/
H A Dprefixed_clearkey_player.js20 PrefixedClearKeyPlayer.prototype.onWebkitKeyMessage = function(message) {
22 Utils.getInitDataFromMessage(message, this.testConfig.mediaType, false);
24 Utils.timeLog('Adding key to sessionID: ' + message.sessionId);
25 message.target.webkitAddKey(this.testConfig.keySystem, key, initData,
26 message.sessionId);
H A Dwidevine_player.js20 WidevinePlayer.prototype.onMessage = function(message) {
21 Utils.timeLog('MediaKeySession onMessage', message);
22 var mediaKeySession = message.target;
32 Utils.convertToUint8Array(message.message),
H A Dplayer_utils.js40 player.video.addEventListener('needkey', function(message) {
43 mediaKeySession.addEventListener('message', function(message) {
45 if (Utils.isHeartBeatMessage(message.message)) {
46 Utils.timeLog('MediaKeySession onMessage - heart beat', message);
49 player.onMessage(message);
57 message.contentType + ', initData: ' +
58 Utils.getHexString(message.initData));
60 if (message
[all...]
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/
H A Derror.py8 def __init__(self, filename, message, lineno=None, addenda=None, **kwargs):
9 """|filename| is the (primary) file which caused the error, |message| is the
10 error message, |lineno| is the 1-based line number (or |None| if not
12 to the final error message."""
15 self.message = message
21 s = "%s:%d: Error: %s" % (self.filename, self.lineno, self.message)
23 s = "%s: Error: %s" % (self.filename, self.message)
/external/chromium_org/sync/internal_api/public/util/
H A Dunrecoverable_error_info.cc15 const std::string& message)
17 message_(message),
26 const std::string& message) {
28 message_ = message;
40 const std::string& UnrecoverableErrorInfo::message() const { function in class:syncer::UnrecoverableErrorInfo
13 UnrecoverableErrorInfo( const tracked_objects::Location& location, const std::string& message) argument
24 Reset( const tracked_objects::Location& location, const std::string& message) argument
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DGeolocationError.h40 static GeolocationError* create(ErrorCode code, const String& message) argument
42 return new GeolocationError(code, message);
47 const String& message() const { return m_message; } function in class:blink::GeolocationError
50 GeolocationError(ErrorCode code, const String& message) argument
52 , m_message(message)
/external/nist-sip/java/gov/nist/core/
H A DStackLogger.java40 * Log a message into the log file.
42 * @param message
43 * message to log into the log file.
45 public void logDebug(String message); argument
47 * Log a message into the log file.
49 * @param message
50 * message to log into the log file.
52 public void logTrace(String message); argument
54 * Log an error message.
56 * @param message
59 logFatalError(String message) argument
67 logError(String message) argument
84 logError(String message, Exception ex) argument
[all...]
/external/protobuf/src/google/protobuf/
H A Dgenerated_message_reflection.h43 #include <google/protobuf/message.h>
93 // descriptor: The descriptor for the message type being implemented.
94 // default_instance: The default instance of the message. This is only
97 // sub-message has not been initialized yet. (Thus, all
98 // embedded message fields *must* have non-NULL pointers
101 // the start of the message object, of each field. These can
105 // has_bits_offset: Offset in the message of an array of uint32s of size
108 // corresponding field of the message has been initialized.
111 // unknown_fields_offset: Offset in the message of the UnknownFieldSet for
112 // the message
[all...]
H A Dreflection_ops.h41 #include <google/protobuf/message.h>
50 // slower than implementations tailored for the specific message type.
60 static void Clear(Message* message);
61 static bool IsInitialized(const Message& message);
62 static void DiscardUnknownFields(Message* message);
64 // Finds all unset required fields in the message and adds their full
67 static void FindInitializationErrors(const Message& message,
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DServerKeyExchangeTest.java38 ServerKeyExchange message = new ServerKeyExchange(rsa_mod, rsa_exp,
40 assertEquals("incorrect type", Handshake.SERVER_KEY_EXCHANGE, message
43 assertTrue("incorrect ServerKeyExchange", Arrays.equals(message.hash,
45 assertEquals("incorrect ServerKeyExchange", rsa_mod, message.par1);
46 assertEquals("incorrect ServerKeyExchange", rsa_exp, message.par2);
47 assertNull("incorrect ServerKeyExchange", message.par3);
50 message.send(out);
52 assertEquals("incorrect out data length", message.length(),
57 ServerKeyExchange message_2 = new ServerKeyExchange(in, message
60 assertTrue("incorrect message decodin
[all...]
H A DServerHelloTest.java35 ServerHello message = new ServerHello(new SecureRandom(),
37 assertEquals("incorrect type", Handshake.SERVER_HELLO, message
41 message.server_version, server_version));
43 message.session_id, session_id));
45 message.cipher_suite);
48 message.send(out);
50 assertEquals("incorrect out data length", message.length(),
55 ServerHello message_2 = new ServerHello(in, message.length());
57 assertTrue("incorrect message decoding", Arrays.equals(
58 message
[all...]
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_error.cpp15 void Error::Set(const char* message) { argument
16 if (!message)
17 message = "";
18 strlcpy(buff_, message, sizeof(buff_));
23 void Error::Append(const char* message) { argument
24 if (!message)
26 strlcat(buff_, message, sizeof(buff_));
/external/proguard/src/proguard/gui/
H A DMessageDialogRunnable.java29 * This <code>Runnable</code> can show a message dialog.
36 private final Object message; field in class:MessageDialogRunnable
46 Object message,
53 message,
69 Object message,
74 this.message = message;
86 message,
45 showMessageDialog(Component parentComponent, Object message, String title, int messageType) argument
68 MessageDialogRunnable(Component parentComponent, Object message, String title, int messageType) argument

Completed in 4854 milliseconds

<<11121314151617181920>>