HomeSort by relevance Sort by last modified time
    Searched refs:Message (Results 26 - 50 of 3582) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/os/
IMessenger.aidl 20 import android.os.Message;
24 void send(in Message msg);
  /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/smack/src/org/jivesoftware/smack/filter/
MessageTypeFilter.java 23 import org.jivesoftware.smack.packet.Message;
27 * Filters for packets of a specific type of Message (e.g. CHAT).
29 * @see org.jivesoftware.smack.packet.Message.Type
34 private final Message.Type type;
37 * Creates a new message type filter using the specified message type.
39 * @param type the message type.
41 public MessageTypeFilter(Message.Type type) {
46 if (!(packet instanceof Message)) {
50 return ((Message) packet).getType().equals(this.type)
    [all...]
  /frameworks/opt/net/ims/src/java/com/android/ims/
ImsUtInterface.java 19 import android.os.Message;
109 public void queryCallBarring(int cbType, Message result);
115 public void queryCallForward(int condition, String number, Message result);
121 public void queryCallWaiting(Message result);
126 public void queryCLIR(Message result);
131 public void queryCLIP(Message result);
136 public void queryCOLR(Message result);
141 public void queryCOLP(Message result);
147 Message result, String[] barrList);
153 int timeSeconds, Message result)
    [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;
95 // // Parse the message
    [all...]
  /external/chromium_org/third_party/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
    [all...]
  /external/protobuf/gtest/test/
gtest-message_test.cc 32 // Tests for the Message class.
34 #include <gtest/gtest-message.h>
40 using ::testing::Message;
43 // A helper function that turns a Message into a C string.
44 const char* ToCString(const Message& msg) {
50 // Tests the testing::Message class
54 const Message msg;
60 const Message msg1("Hello");
61 const Message msg2(msg1);
65 // Tests constructing a Message from a C-string
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CommandsInterface.java 25 import android.os.Message;
128 void getImsRegistrationState(Message result);
209 * @param what User-defined message code.
250 * Register for NEW_SMS_ON_SIM unsolicited message
258 * Register for NEW_SMS_STATUS_REPORT unsolicited message
274 * Please note that the delivery of this message may be delayed several
283 * Represents the arrival of a USSD "notify" message, which may
295 * ((String[])(AsyncResult.result))[1] contains the USSD message
314 * Sets the handler for SIM/RUIM SMS storage full unsolicited message.
317 * @param h Handler for notification message
    [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);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
UsimDataDownloadCommands.java 21 import android.os.Message;
108 Message response) {
123 Message response) {
138 public synchronized void sendEnvelopeWithStatus(String contents, Message response) {
161 public void setSuppServiceNotifications(boolean enable, Message result) {
165 public void supplyIccPin(String pin, Message result) {
169 public void supplyIccPinForApp(String pin, String aid, Message result) {
173 public void supplyIccPuk(String puk, String newPin, Message result) {
177 public void supplyIccPukForApp(String puk, String newPin, String aid, Message result) {
181 public void supplyIccPin2(String pin2, Message result)
    [all...]
  /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/protobuf/gtest/include/gtest/
gtest-message.h 34 // This header file defines the Message class.
54 // The Message class works like an ostream repeater.
58 // 1. You stream a bunch of values to a Message object.
60 // 2. Then you stream the Message object to an ostream.
61 // This causes the text in the Message to be streamed
66 // testing::Message foo;
72 // Message is not intended to be inherited from. In particular, its
77 // latter (it causes an access violation if you do). The Message
80 class Message {
87 // Constructs an empty Message
    [all...]
  /ndk/sources/third_party/googletest/googletest/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;
  /frameworks/base/core/java/com/android/internal/util/
IState.java 19 import android.os.Message;
29 * Returned by processMessage to indicate the the message was processed.
34 * Returned by processMessage to indicate the the message was NOT processed.
49 * Called when a message is to be processed by the
61 * if the message wasn't processed.
63 boolean processMessage(Message msg);
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
MockHandler.java 20 import android.os.Message;
28 public boolean sendMessageAtTime(Message msg, long uptimeMillis) {
  /external/chromium_org/content/public/utility/
content_utility_client.h 19 virtual bool OnMessageReceived(const IPC::Message& message);
  /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...]
  /external/mesa3d/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/chromium_org/chrome/common/
content_settings_pattern_serializer.h 11 class Message;
19 // Serializes the pattern to an IPC message.
21 IPC::Message* m);
22 // Deserializes the pattern from the IPC message.
23 static bool ReadFromMessage(const IPC::Message* m, PickleIterator* iter,
  /external/chromium_org/ppapi/proxy/
resource_message_test_sink.h 28 virtual bool Send(IPC::Message* msg) OVERRIDE;
30 // Sets the reply message that will be returned to the next sync message sent.
32 void SetSyncReplyMessage(IPC::Message* reply_msg);
34 // Searches the queue for the first resource call message with a nested
35 // message matching the given ID. On success, returns true and populates the
36 // given params and nested message.
40 IPC::Message* nested_msg) const;
46 IPC::Message* nested_msg);
48 // Searches the queue for all resource call messages with a nested message
    [all...]

Completed in 3747 milliseconds

12 3 4 5 6 7 8 91011>>