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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/os/
Message.aidl 20 parcelable Message;
IMessenger.aidl 20 import android.os.Message;
24 void send(in Message msg);
  /external/chromium/third_party/libjingle/source/talk/base/
messagehandler.h 33 struct Message;
41 virtual void OnMessage(Message* msg) = 0;
  /external/protobuf/src/google/protobuf/
reflection_ops.h 41 #include <google/protobuf/message.h>
49 // methods of the Message interface, though they are likely to be
50 // slower than implementations tailored for the specific message type.
53 // the Message interface.
58 static void Copy(const Message& from, Message* to);
59 static void Merge(const Message& from, Message* to);
60 static void Clear(Message* message);
    [all...]
generated_message_reflection.h 43 #include <google/protobuf/message.h>
79 // - Singular Message fields are stored as a pointer to a Message. These
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
    [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;
95 // // Parse the message
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/sip/
SipCommandInterface.java 21 import android.os.Message;
40 public void getIccCardStatus(Message result) {
43 public void supplyIccPin(String pin, Message result) {
46 public void supplyIccPuk(String puk, String newPin, Message result) {
49 public void supplyIccPin2(String pin, Message result) {
52 public void supplyIccPuk2(String puk, String newPin2, Message result) {
55 public void changeIccPin(String oldPin, String newPin, Message result) {
58 public void changeIccPin2(String oldPin2, String newPin2, Message result) {
62 String newPwd, Message result) {
65 public void supplyNetworkDepersonalization(String netpin, Message result)
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
BlockingRpcChannel.java 46 Message callBlockingMethod(
49 Message request,
50 Message responsePrototype) throws ServiceException;
RpcChannel.java 59 * decides the types of the {@code Message} objects, not the callee. The
68 Message request,
69 Message responsePrototype,
70 RpcCallback<Message> done);
BlockingService.java 51 Message callBlockingMethod(Descriptors.MethodDescriptor method,
53 Message request) throws ServiceException;
58 Message getRequestPrototype(Descriptors.MethodDescriptor method);
63 Message getResponsePrototype(Descriptors.MethodDescriptor method);
Service.java 38 * its exact type at compile time (analogous to the Message interface).
86 Message request,
87 RpcCallback<Message> done);
91 * particular subclass of {@code Message}. {@code getRequestPrototype()}
93 * call {@code Message.newBuilderForType()} on this instance to
101 * Message request =
107 Message getRequestPrototype(Descriptors.MethodDescriptor method);
111 * message. {@code getResponsePrototype()} is generally not needed because
112 * the {@code Service} implementation constructs the response message itself,
116 Message getResponsePrototype(Descriptors.MethodDescriptor method)
    [all...]
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
UsimDataDownloadCommands.java 21 import android.os.Message;
107 Message response) {
122 Message response) {
137 public synchronized void sendEnvelopeWithStatus(String contents, Message response) {
160 public void setSuppServiceNotifications(boolean enable, Message result) {
164 public void supplyIccPin(String pin, Message result) {
168 public void supplyIccPinForApp(String pin, String aid, Message result) {
172 public void supplyIccPuk(String puk, String newPin, Message result) {
176 public void supplyIccPukForApp(String puk, String newPin, String aid, Message result) {
180 public void supplyIccPin2(String pin2, Message result)
    [all...]
  /frameworks/base/opengl/libs/GLES2_dbg/src/
caller.h 18 const glesv2debugger::Message & cmd,
19 glesv2debugger::Message & msg, const int * const prevRet)
26 const glesv2debugger::Message & cmd,
27 glesv2debugger::Message & msg, const int * const prevRet)
34 const glesv2debugger::Message & cmd,
35 glesv2debugger::Message & msg, const int * const prevRet)
42 const glesv2debugger::Message & cmd,
43 glesv2debugger::Message & msg, const int * const prevRet)
50 const glesv2debugger::Message & cmd,
51 glesv2debugger::Message & msg, const int * const prevRet
    [all...]
debugger_message.pb.cpp 15 delete Message::default_instance_;
24 Message::default_instance_ = new Message();
25 Message::default_instance_->InitAsDefaultInstance();
239 const Message_Function Message::glActiveTexture;
240 const Message_Function Message::glAttachShader;
241 const Message_Function Message::glBindAttribLocation;
242 const Message_Function Message::glBindBuffer;
243 const Message_Function Message::glBindFramebuffer;
244 const Message_Function Message::glBindRenderbuffer
    [all...]
  /external/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...]
  /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...]
  /external/chromium/sdch/open-vcdiff/src/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...]
  /external/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...]
  /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...]
  /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/testing/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...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
MessageDateComparator.java 21 public class MessageDateComparator implements Comparator<Message> {
22 public int compare(Message o1, Message o2) {
  /external/chromium/chrome/common/
common_param_traits.h 16 class Message;
21 static void Write(Message* m, const param_type& p);
22 static bool Read(const Message* m, void** iter, param_type* p);
29 static void Write(Message* m, const param_type& p);
30 static bool Read(const Message* m, void** iter, param_type* p);

Completed in 496 milliseconds

1 2 3 4 5 6 7 8 91011>>