HomeSort by relevance Sort by last modified time
    Searched defs:Message (Results 176 - 200 of 709) sorted by null

1 2 3 4 5 6 78 91011>>

  /device/generic/goldfish/dhcp/common/
message.h 25 class Message {
27 Message();
28 Message(const uint8_t* data, size_t size);
29 static Message discover(const uint8_t (&sourceMac)[ETH_ALEN]);
30 static Message request(const uint8_t (&sourceMac)[ETH_ALEN],
33 static Message offer(const Message& sourceMessage,
40 static Message ack(const Message& sourceMessage,
47 static Message nack(const Message& sourceMessage, in_addr_t serverAddress)
    [all...]
  /external/clang/test/SemaCXX/
missing-namespace-qualifier-typo-corrections.cpp 99 class Message {};
103 bool Equivalent(const Message&, const Message&); // expected-note {{'extra::util::MessageUtils::Equivalent' declared here}} \
110 Message a, b;
117 Message a, b;
  /external/clang/unittests/Tooling/
CommentHandlerTest.cpp 16 Comment(const std::string &Message, unsigned Line, unsigned Col)
17 : Message(Message), Line(Line), Col(Col) { }
19 std::string Message;
107 << Current->Message << "\" at line " << Current->Line << ", column "
112 void Match(const char *Message, unsigned Line, unsigned Col) {
113 EXPECT_TRUE(Current != End) << "Comment " << Message << " not found";
117 EXPECT_TRUE(C.Message == Message && C.Line == Line && C.Col == Col)
118 << "Expected comment \"" << Message
    [all...]
  /external/golang-protobuf/proto/
lib.go 45 The getters work even if the receiver is a nil message.
59 Enum values are prefixed by the enclosing message's name, or by the
61 method, and a Enum method to assist in message construction.
63 the surrounding message type.
69 - Oneof field sets are given a single field in their message,
75 - Non-repeated fields of non-message type are values instead of pointers.
85 message Test {
276 // Message is implemented by generated protocol buffer messages.
277 type Message interface {
551 func SetDefaults(pb Message) {
    [all...]
  /external/libmojo/mojo/edk/system/
channel.h 32 struct Message;
34 using MessagePtr = std::unique_ptr<Message>;
36 // A message to be written to a channel.
37 struct MOJO_SYSTEM_IMPL_EXPORT Message {
39 // An old format normal message, that uses the LegacyHeader.
45 // A control message containing handles to echo back.
47 // A control message containing handles that can now be closed.
50 // A normal message that uses Header and can contain extra header values.
55 // Old message wire format for ChromeOS and Android, used by NORMAL_LEGACY
58 // Message size in bytes, including the header
    [all...]
  /external/libmojo/mojo/public/tools/chrome_ipc/
generate_mojom.py 240 class Message(object):
347 yield Message(m.groups(), self._content[m.end() + 1:i])
  /external/llvm/lib/Transforms/Instrumentation/
CFGMST.h 165 void dumpEdges(raw_ostream &OS, const Twine &Message) const {
166 if (!Message.str().empty())
167 OS << Message << "\n";
  /external/llvm/tools/bugpoint/
ExecutionDriver.cpp 149 std::string Message;
162 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message,
167 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message,
173 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message,
178 Message = "Sorry, I can't automatically select an interpreter!\n";
182 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message,
188 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message,
194 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message,
199 AbstractInterpreter::createCustomCompiler(Message, CustomCompileCommand);
203 AbstractInterpreter::createCustomExecutor(Message, CustomExecCommand)
    [all...]
  /external/nanopb-c/generator/google/protobuf/
message.py 45 class Message(object):
49 Protocol message classes are almost always generated by the protocol
50 compiler. These generated types subclass Message and implement the methods
87 """Outputs a human-readable representation of the message."""
91 """Outputs a human-readable representation of the message."""
95 """Merges the contents of the specified message into current message.
97 This method merges the contents of the specified message into the current
98 message. Singular fields that are set in the specified message overwrit
    [all...]
  /external/nist-sip/java/javax/sip/message/
Message.java 1 package javax.sip.message;
15 public interface Message extends Cloneable, Serializable {
  /external/perfetto/include/perfetto/protozero/
message.h 46 class PERFETTO_EXPORT Message {
56 // Ctor and Dtor of Message are never called, with the exeception
59 // of the root message goes away. This is fine as long as all the fields are
62 Message() = default;
64 // Clears up the state, allowing the message to be reused as a fresh one.
68 // all nested messages) and seals the message. Returns the size of the message
75 // of this message (minus |size_already_written| below). This is the mechanism
77 // message.
82 // message which is split into multiple chunks. Upon finalization only th
163 T* message = reinterpret_cast<T*>(nested_messages_arena_); local
    [all...]
  /external/protobuf/python/google/protobuf/
message.py 44 class Message(object):
48 Protocol message classes are almost always generated by the protocol
49 compiler. These generated types subclass Message and implement the methods
86 """Outputs a human-readable representation of the message."""
90 """Outputs a human-readable representation of the message."""
94 """Merges the contents of the specified message into current message.
96 This method merges the contents of the specified message into the current
97 message. Singular fields that are set in the specified message overwrit
    [all...]
  /external/protobuf/src/google/protobuf/
message.h 35 // Defines Message, the abstract interface implemented by non-lite
36 // 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
79 // // Same as the last block, but do it dynamically via the Message
81 // Message* foo = new Foo;
96 // // Parse the message
195 Message* message = New(); local
    [all...]
  /external/skia/tools/sk_app/android/
surface_glue_android.h 34 struct Message {
44 Message() {}
45 Message(MessageType t) : fType(t) {}
55 void postMessage(const Message& message) const;
56 void readMessage(Message* message) const;
65 int fPipes[2]; // 0 is the read message pipe, 1 is the write message pipe
  /external/skqp/tools/sk_app/android/
surface_glue_android.h 34 struct Message {
44 Message() {}
45 Message(MessageType t) : fType(t) {}
55 void postMessage(const Message& message) const;
56 void readMessage(Message* message) const;
65 int fPipes[2]; // 0 is the read message pipe, 1 is the write message pipe
  /external/swiftshader/third_party/LLVM/lib/Support/
SourceMgr.cpp 141 /// @param Type - If non-null, the kind of message (e.g., "error") which is
142 /// prefixed to the message.
183 // Report the message with the diagnostic handler if present.
220 S << Message << '\n';
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
ExecutionDriver.cpp 153 std::string Message;
159 AbstractInterpreter::createCBE(getToolName(), Message, GCCBinary,
163 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message,
168 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message,
174 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message,
179 Message = "Sorry, I can't automatically select an interpreter!\n";
183 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message,
189 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message,
195 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message,
200 Interpreter = AbstractInterpreter::createCBE(getToolName(), Message,
    [all...]
  /external/swiftshader/third_party/LLVM/tools/macho-dump/
macho-dump.cpp 37 static void Message(const char *Type, const Twine &Msg) {
42 Message("error", Msg);
47 Message("warning", Msg);
380 return Error("unable to read input: '" + ec.message() + "'");
  /packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
Message.java 36 abstract class Message {
38 // If the message has a button, this will be the default button call back.
40 // If a message has a new callback when updated, this field should be updated.
48 Message(Environment env, Runnable defaultCallback) {
95 final static class HeaderMessage extends Message {
107 // TODO: These should be different Message objects getting updated instead of
137 final static class InflateMessage extends Message {
166 final CharSequence message; local
168 message = String.format(
173 message = mEnv.getContext().getResources().getText(R.string.empty)
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
message.h 35 // Defines Message, the abstract interface implemented by non-lite
36 // 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
79 // // Same as the last block, but do it dynamically via the Message
81 // Message* foo = new Foo;
96 // // Parse the message
195 Message* message = New(); local
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/util/
IEmail.java 30 * A method to send a {@link Message}. Verifies that the to, subject, and body fields of the
31 * {@link Message} are not null, but does no verification beyond the null checks.
34 * nature of email, they will generally be reported to the envelope-sender of the message. In
38 * @param msg The {@link IEmail.Message} to try to send
43 public void send(Message msg) throws IllegalArgumentException, IOException;
46 * Container for email message data.
48 public static class Message {
60 public Message() {}
63 * Convenience constructor: create a simple message
67 * @param body Message bod
    [all...]
  /frameworks/base/cmds/incident_helper/src/
ih_util.cpp 382 Message::Message(Table* table)
390 Message::~Message()
395 Message::addSubMessage(uint64_t fieldId, Message* fieldMsg)
406 Message::insertField(ProtoOutputStream* proto, const std::string& name, const std::string& value)
411 // The only edge case is for example ro.hardware itself is a message, so a field called "value"
421 // Try to find the message field which is the prefix of name, so the value would be inserted
440 Message::startSession(ProtoOutputStream* proto, const std::string& name
    [all...]
  /cts/hostsidetests/devicepolicy/app/LauncherTestsSupport/src/com/android/cts/launchertests/support/
LauncherCallbackTestsService.java 27 import android.os.Message;
81 public void handleMessage(Message msg) {
92 msg.replyTo.send(Message.obtain(null, MSG_RESULT,
100 msg.replyTo.send(Message.obtain(null, MSG_RESULT,
108 msg.replyTo.send(Message.obtain(null, MSG_RESULT,
116 msg.replyTo.send(Message.obtain(null, MSG_RESULT,
  /cts/tests/accessibility/src/android/view/accessibility/cts/
AccessibilityEventTest.java 19 import android.os.Message;
192 sentEvent.setParcelableData(Message.obtain(null, 1, 2, 3));
273 ((Message) expectedEvent.getParcelableData()).what,
274 ((Message) receivedEvent.getParcelableData()).what);
  /cts/tests/framework/base/windowmanager/src/android/server/wm/
AlertWindowsImportanceTests.java 39 import android.os.Message;
108 mService.send(Message.obtain(null, AlertWindowService.MSG_REMOVE_ALL_ALERT_WINDOWS));
157 mService.send(Message.obtain(null, AlertWindowService.MSG_ADD_ALERT_WINDOW));
165 mService.send(Message.obtain(null, AlertWindowService.MSG_REMOVE_ALERT_WINDOW));
231 public void handleMessage(Message msg) {

Completed in 789 milliseconds

1 2 3 4 5 6 78 91011>>