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

1 2 3 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/LLVM/lib/MC/
MCLoggingStreamer.cpp 31 void LogCall(const char *Function, const Twine &Message) {
32 OS << Function << ": " << Message << "\n";
  /external/swiftshader/third_party/LLVM/tools/llvm-ld/
llvm-ld.cpp 132 /// PrintAndExit - Prints a message to standard error and exits with error code
135 /// Message - The message to print to standard error.
137 static void PrintAndExit(const std::string &Message, Module *M, int errcode = 1) {
138 errs() << progname << ": " << Message << "\n";
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
SourceMgr.h 152 /// Emit a message about the specified location with the specified string.
178 /// \param Msg If non-null, the kind of message (e.g., "error") which is
179 /// prefixed to the message.
186 /// custom formatted message.
234 std::string Message, LineContents;
245 Message(Msg) {}
260 StringRef getMessage() const { return Message; }
  /external/webrtc/webrtc/base/
messagequeue.h 33 struct Message;
36 // MessageQueueManager does cleanup of of message queues
131 struct Message {
132 Message() {
145 typedef std::list<Message> MessageList;
152 DelayedMessage(int delay, uint32_t trigger, uint32_t num, const Message& msg)
163 Message msg_;
187 // 1) A message is available (returns true)
190 virtual bool Get(Message *pmsg, int cmsWait = kForever,
192 virtual bool Peek(Message *pmsg, int cmsWait = 0)
    [all...]
  /frameworks/base/core/java/android/os/
Message.java 25 * Defines a message containing a description and arbitrary data object that can be
29 * <p class="note">While the constructor of Message is public, the best way to get
30 * one of these is to call {@link #obtain Message.obtain()} or one of the
34 public final class Message implements Parcelable {
36 * User-defined message code so that the recipient can identify
37 * what this message is about. Each {@link Handler} has its own name-space
38 * for message codes, so you do not need to worry about yours conflicting
59 * {@link Messenger} to send the message across processes this can only
70 * Optional Messenger where replies to this message can be sent. The
77 * Optional field indicating the uid that sent the message. This i
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/charging/
WirelessChargingAnimation.java 25 import android.os.Message;
135 public void handleMessage(Message msg) {
162 mHandler.sendMessageDelayed(Message.obtain(mHandler, HIDE), duration);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
WifiSignalController.java 26 import android.os.Message;
141 public void handleMessage(Message msg) {
145 mWifiChannel.sendMessage(Message.obtain(this,
  /frameworks/base/services/core/java/com/android/server/lights/
LightsService.java 23 import android.os.Message;
87 mH.sendMessageDelayed(Message.obtain(mH, 1, this), onMS);
209 public void handleMessage(Message msg) {
  /frameworks/native/libs/vr/libpdx/private/pdx/
service.h 31 * Reserved message opcodes used by libpdx. The reserved opcodes start at the
41 // System message sent when a new client channel is open.
43 // System message sent when a channel is closed.
68 * Message class represents an RPC message, and implicitly the blocked sender
69 * waiting for a response. Every message should get a reply, at some point
71 * indefinitely. In order to enforce this and prevent leaking message ids,
72 * Message automatically replies with an error to the client on destruction,
75 * 1. The service calls one of the reply methods before the Message is
77 * 2. The responsibility for the message is moved to another instance o
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiTrafficPoller.java 30 import android.os.Message;
110 Message.obtain(mTrafficHandler, ADD_CLIENT, client).sendToTarget();
115 Message.obtain(mTrafficHandler, REMOVE_CLIENT, client).sendToTarget();
131 public void handleMessage(Message msg) {
145 sendMessageDelayed(Message.obtain(this, TRAFFIC_STATS_POLL,
160 sendMessageDelayed(Message.obtain(this, TRAFFIC_STATS_POLL,
181 Message msg;
184 msg = Message.obtain(mTrafficHandler,
187 msg = Message.obtain(mTrafficHandler,
225 Message msg = Message.obtain()
    [all...]
  /hardware/interfaces/confirmationui/support/include/android/hardware/confirmationui/support/
msg_formatting.h 102 class Message {};
121 using PromptUserConfirmationMsg = Message<PromptUserConfirmation_t, hidl_string, hidl_vec<uint8_t>,
123 using PromptUserConfirmationResponse = Message<ResponseCode>;
124 using DeliverSecureInputEventMsg = Message<DeliverSecureInputEvent_t, HardwareAuthToken>;
125 using DeliverSecureInputEventRespose = Message<ResponseCode>;
126 using AbortMsg = Message<Abort_t>;
127 using ResultMsg = Message<ResponseCode, hidl_vec<uint8_t>, hidl_vec<uint8_t>>;
268 inline std::tuple<ReadStream, HardwareAuthToken> read(Message<HardwareAuthToken>, ReadStream in_) {
310 inline std::tuple<ReadStream, ResponseCode> read(Message<ResponseCode>, ReadStream in) {
318 inline std::tuple<ReadStream, hidl_vec<uint8_t>> read(Message<hidl_vec<uint8_t>>, ReadStream in)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
Message.java 27 * Object representation of message received in messages listing
30 * {@link Client#EVENT_GET_MESSAGES_LISTING} callback message.
32 public class Message {
68 Message(HashMap<String, String> attrs) throws IllegalArgumentException {
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/
Message.java 23 public abstract class Message implements Part, Body {
24 public static final Message[] EMPTY_ARRAY = new Message[0];
87 // Always use these instead of getHeader("Message-ID") or setHeader("Message-ID");
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Message.java 22 public abstract class Message implements Part, Body {
23 public static final Message[] EMPTY_ARRAY = new Message[0];
86 // Always use these instead of getHeader("Message-ID") or setHeader("Message-ID");
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
Message.java 20 package org.apache.james.mime4j.message;
37 * Represents a MIME message. The following code parses a stream into a
38 * <code>Message</code> object.
41 * Message msg = new Message(new BufferedInputStream(
47 * @version $Id: Message.java,v 1.3 2004/10/02 12:41:11 ntherning Exp $
49 public class Message extends Entity implements Body {
52 * Creates a new empty <code>Message</code>.
54 public Message() {
58 * Parses the specified MIME message stream into a <code>Message</code
    [all...]
  /packages/services/Car/service/src/com/android/car/hal/
HalClient.java 29 import android.os.Message;
206 public void handleMessage(Message msg) {
222 Log.e(CarLog.TAG_HAL, "Unexpected message: " + msg.what);
225 Log.e(CarLog.TAG_HAL, "Message failed: " + msg.what);
239 mHandler.sendMessage(Message.obtain(
245 mHandler.sendMessage(Message.obtain(
251 mHandler.sendMessage(Message.obtain(
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 137 /// All the context information will be kept on the error message.
139 /// error message, using the << operator.
152 struct Message {
157 std::vector<Message> Messages;
163 /// Each error only shows the error message without any context.
169 /// Each error message contains the full context.
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
SourceMgr.h 158 /// Emit a message about the specified location with the specified string.
184 /// \param Msg If non-null, the kind of message (e.g., "error") which is
185 /// prefixed to the message.
192 /// custom formatted message.
239 std::string Message, LineContents;
248 : Filename(filename), LineNo(-1), ColumnNo(-1), Kind(Knd), Message(Msg) {}
263 StringRef getMessage() const { return Message; }
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 137 /// All the context information will be kept on the error message.
139 /// error message, using the << operator.
152 struct Message {
157 std::vector<Message> Messages;
163 /// Each error only shows the error message without any context.
169 /// Each error message contains the full context.
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
SourceMgr.h 158 /// Emit a message about the specified location with the specified string.
184 /// \param Msg If non-null, the kind of message (e.g., "error") which is
185 /// prefixed to the message.
192 /// custom formatted message.
239 std::string Message, LineContents;
248 : Filename(filename), LineNo(-1), ColumnNo(-1), Kind(Knd), Message(Msg) {}
263 StringRef getMessage() const { return Message; }
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 137 /// All the context information will be kept on the error message.
139 /// error message, using the << operator.
152 struct Message {
157 std::vector<Message> Messages;
163 /// Each error only shows the error message without any context.
169 /// Each error message contains the full context.
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
SourceMgr.h 158 /// Emit a message about the specified location with the specified string.
184 /// \param Msg If non-null, the kind of message (e.g., "error") which is
185 /// prefixed to the message.
192 /// custom formatted message.
239 std::string Message, LineContents;
248 : Filename(filename), LineNo(-1), ColumnNo(-1), Kind(Knd), Message(Msg) {}
263 StringRef getMessage() const { return Message; }
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 137 /// All the context information will be kept on the error message.
139 /// error message, using the << operator.
152 struct Message {
157 std::vector<Message> Messages;
163 /// Each error only shows the error message without any context.
169 /// Each error message contains the full context.
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
SourceMgr.h 159 /// Emit a message about the specified location with the specified string.
185 /// \param Msg If non-null, the kind of message (e.g., "error") which is
186 /// prefixed to the message.
193 /// custom formatted message.
240 std::string Message, LineContents;
249 : Filename(filename), LineNo(-1), ColumnNo(-1), Kind(Knd), Message(Msg) {}
264 StringRef getMessage() const { return Message; }
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 137 /// All the context information will be kept on the error message.
139 /// error message, using the << operator.
152 struct Message {
157 std::vector<Message> Messages;
163 /// Each error only shows the error message without any context.
169 /// Each error message contains the full context.

Completed in 609 milliseconds

1 2 3 4 5 6 7 8 91011>>