Searched defs:Message (Results 1 - 7 of 7) sorted by relevance

/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitReader.cpp32 std::string Message; local
35 &Message));
38 *OutMessage = strdup(Message.c_str());
52 std::string Message; local
55 &Message));
58 *OutMessage = strdup(Message.c_str());
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitReader.cpp32 std::string Message; local
35 &Message));
38 *OutMessage = strdup(Message.c_str());
52 std::string Message; local
55 &Message));
58 *OutMessage = strdup(Message.c_str());
/frameworks/compile/slang/
H A Dslang_rs_export_var.cpp33 const char *Message) {
37 DiagEngine->getCustomDiagID(clang::DiagnosticsEngine::Error, Message));
31 ReportVarError(RSContext *Context, const clang::SourceLocation Loc, const char *Message) argument
H A Dslang.cpp169 void Slang::LLVMErrorHandler(void *UserData, const std::string &Message, argument
174 DiagEngine->Report(clang::diag::err_fe_error_backend) << Message;
H A Dslang_rs_export_type.cpp92 const char *Message,
106 DiagEngine->getCustomDiagID(clang::DiagnosticsEngine::Error, Message))
111 DiagEngine->getCustomDiagID(clang::DiagnosticsEngine::Error, Message))
89 ReportTypeError(clang::DiagnosticsEngine *DiagEngine, const clang::NamedDecl *ND, const clang::RecordDecl *TopLevelRecord, const char *Message, unsigned int TargetAPI = 0) argument
/frameworks/native/services/surfaceflinger/
H A DMessageQueue.cpp45 void MessageBase::handleMessage(const Message&) { argument
54 mQueue.mLooper->sendMessage(this, Message(MessageQueue::REFRESH));
60 mQueue.mLooper->sendMessage(this, Message(MessageQueue::INVALIDATE));
66 mQueue.mLooper->sendMessage(this, Message(MessageQueue::TRANSACTION));
70 void MessageQueue::Handler::handleMessage(const Message& message) {
136 const Message dummyMessage;
/frameworks/base/core/java/android/os/
H A DMessage.java27 * <p class="note">While the constructor of Message is public, the best way to get
28 * one of these is to call {@link #obtain Message.obtain()} or one of the
32 public final class Message implements Parcelable { class in inherits:Parcelable
94 /*package*/ Message next;
97 private static Message sPool;
103 * Return a new Message instance from the global pool. Allows us to
106 public static Message obtain() {
109 Message m = sPool;
116 return new Message();
123 * @return A Message objec
428 public Message() { method in class:Message
[all...]

Completed in 388 milliseconds