HomeSort by relevance Sort by last modified time
    Searched refs:Message (Results 1 - 25 of 2389) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/utility/
utility_message_handler.h 9 class Message;
16 // Called when a message is received. Returns true iff the message was
18 virtual bool OnMessageReceived(const IPC::Message& message) = 0;
  /external/chromium_org/ipc/
ipc_sender.h 12 class Message;
16 // Sends the given IPC message. The implementor takes ownership of the
17 // given Message regardless of whether or not this method succeeds. This
20 virtual bool Send(Message* msg) = 0;
ipc_listener.h 14 class Message;
19 // Called when a message is received. Returns true iff the message was
21 virtual bool OnMessageReceived(const Message& message) = 0;
24 // Hello message from the peer.
31 // Called when a message's deserialization failed.
32 virtual void OnBadMessageReceived(const Message& message) {}
  /external/chromium_org/mojo/public/cpp/bindings/lib/
message_queue.h 13 class Message;
17 // A queue for Message objects.
24 Message* Peek();
26 // This method transfers ownership of |message->data| and |message->handles|
27 // to the message queue, resetting |message| in the process.
28 void Push(Message* message);
30 // Removes the next message from the queue, transferring ownership of it
    [all...]
no_interface.cc 11 bool NoInterfaceStub::Accept(Message* message) {
15 bool NoInterfaceStub::AcceptWithResponder(Message* message,
  /external/chromium_org/third_party/skia/src/core/
SkMessageBus.h 16 template <typename Message>
19 // Post a message to be received by all Inboxes for this Message type. Threadsafe.
20 static void Post(const Message& m);
28 void poll(SkTDArray<Message>* out);
31 SkTDArray<Message> fMessages;
35 void receive(const Message& m); // SkMessageBus is a friend only to call this.
49 #define DECLARE_SKMESSAGEBUS_MESSAGE(Message) \
51 SkMessageBus<Message>* SkMessageBus<Message>::Get() {
    [all...]
  /external/chromium_org/extensions/common/api/messaging/
message.h 10 // A message consists of both the data itself as well as a user gesture state.
11 struct Message {
15 Message() : data(), user_gesture(false) {}
16 Message(const std::string& data, bool user_gesture)
  /external/chromium_org/third_party/protobuf/python/google/protobuf/pyext/
python_protobuf.h 44 class Message;
50 const Message* GetCProtoInsidePyProto(PyObject* msg);
51 Message* MutableCProtoInsidePyProto(PyObject* msg);
python_protobuf.cc 39 static const Message* GetCProtoInsidePyProtoStub(PyObject* msg) {
42 static Message* MutableCProtoInsidePyProtoStub(PyObject* msg) {
49 const Message* (*GetCProtoInsidePyProtoPtr)(PyObject* msg) =
51 Message* (*MutableCProtoInsidePyProtoPtr)(PyObject* msg) =
54 const Message* GetCProtoInsidePyProto(PyObject* msg) {
57 Message* MutableCProtoInsidePyProto(PyObject* msg) {
  /external/chromium_org/content/common/
swapped_out_messages.h 16 static bool CanSendWhileSwappedOut(const IPC::Message* msg);
17 static bool CanHandleWhileSwappedOut(const IPC::Message& msg);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
reflection_ops.h 42 #include <google/protobuf/message.h>
50 // methods of the Message interface, though they are likely to be
51 // slower than implementations tailored for the specific message type.
54 // the Message interface.
59 static void Copy(const Message& from, Message* to);
60 static void Merge(const Message& from, Message* to);
61 static void Clear(Message* message);
    [all...]
generated_message_reflection.h 47 #include <google/protobuf/message.h>
85 // - Singular Message fields are stored as a pointer to a Message. These
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
    [all...]
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
    [all...]
  /external/chromium_org/content/public/renderer/
render_process_observer.cc 10 const IPC::Message& message) {
  /external/chromium_org/content/public/utility/
content_utility_client.cc 9 bool ContentUtilityClient::OnMessageReceived(const IPC::Message& message) {
content_utility_client.h 19 virtual bool OnMessageReceived(const IPC::Message& message);
  /external/chromium_org/ppapi/host/
resource_message_handler.h 13 class Message;
30 // Called when this handler should handle a particular message. This should
31 // call into the the message handler implemented by subclasses (i.e.
33 // handle the message (e.g. checking resource replies are valid). True is
34 // returned if the message is handled and false otherwise.
35 virtual bool HandleMessage(const IPC::Message& msg,
38 // Send a resource reply message.
40 const IPC::Message& msg) = 0;
43 // Runs the message handler and checks that a reply was sent if necessary.
44 void RunMessageHandlerAndReply(const IPC::Message& msg
    [all...]
  /external/llvm/bindings/ocaml/linker/
linker_ocaml.c 31 static void llvm_raise(value Prototype, char *Message) {
35 CamlMessage = copy_string(Message);
36 LLVMDisposeMessage(Message);
48 char* Message;
50 if (LLVMLinkModules(Dst, Src, Int_val(Mode), &Message))
51 llvm_raise(llvm_linker_error_exn, Message);
  /external/chromium_org/testing/gtest/include/gtest/
gtest-message.h 34 // This header file defines the Message class.
54 // See Message& operator<<(...) below for why.
59 // The Message class works like an ostream repeater.
63 // 1. You stream a bunch of values to a Message object.
65 // 2. Then you stream the Message object to an ostream.
66 // This causes the text in the Message to be streamed
71 // testing::Message foo;
77 // Message is not intended to be inherited from. In particular, its
82 // latter (it causes an access violation if you do). The Message
85 class GTEST_API_ Message {
    [all...]
  /external/gtest/include/gtest/
gtest-message.h 34 // This header file defines the Message class.
54 // See Message& operator<<(...) below for why.
59 // The Message class works like an ostream repeater.
63 // 1. You stream a bunch of values to a Message object.
65 // 2. Then you stream the Message object to an ostream.
66 // This causes the text in the Message to be streamed
71 // testing::Message foo;
77 // Message is not intended to be inherited from. In particular, its
82 // latter (it causes an access violation if you do). The Message
85 class GTEST_API_ Message {
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
ANTLRErrorListener.java 33 * wrapping error data in Message objects and passing them to the listener.
39 public void error(Message msg);
40 public void warning(Message msg);
  /external/chromium_org/content/public/browser/
utility_process_host_client.h 12 class Message;
30 virtual bool OnMessageReceived(const IPC::Message& message) = 0;
  /external/chromium_org/remoting/host/
worker_process_ipc_delegate.h 12 class Message;
27 virtual bool OnMessageReceived(const IPC::Message& message) = 0;
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/
gtest-message.h 34 // This header file defines the Message class.
56 // The Message class works like an ostream repeater.
60 // 1. You stream a bunch of values to a Message object.
62 // 2. Then you stream the Message object to an ostream.
63 // This causes the text in the Message to be streamed
68 // testing::Message foo;
74 // Message is not intended to be inherited from. In particular, its
79 // latter (it causes an access violation if you do). The Message
82 class GTEST_API_ Message {
89 // Constructs an empty Message
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-message.h 34 // This header file defines the Message class.
56 // The Message class works like an ostream repeater.
60 // 1. You stream a bunch of values to a Message object.
62 // 2. Then you stream the Message object to an ostream.
63 // This causes the text in the Message to be streamed
68 // testing::Message foo;
74 // Message is not intended to be inherited from. In particular, its
79 // latter (it causes an access violation if you do). The Message
82 class GTEST_API_ Message {
89 // Constructs an empty Message
    [all...]

Completed in 830 milliseconds

1 2 3 4 5 6 7 8 91011>>