HomeSort by relevance Sort by last modified time
    Searched full:message (Results 276 - 300 of 20506) sorted by null

<<11121314151617181920>>

  /external/oauth/core/src/main/java/net/oauth/
OAuthException.java 31 * @param message
33 public OAuthException(String message) {
34 super(message);
45 * @param message
48 public OAuthException(String message, Throwable cause) {
49 super(message, cause);
  /external/webrtc/src/modules/audio_processing/test/
unittest.proto 5 message Test {
11 message Frame {
23 message Statistic {
30 message EchoMetrics {
39 message DelayMetrics {
49 message OutputData {
  /libcore/luni/src/main/java/java/util/concurrent/
BrokenBarrierException.java 24 * message.
30 * detail message.
32 * @param message the detail message
34 public BrokenBarrierException(String message) {
35 super(message);
CancellationException.java 21 * Constructs a {@code CancellationException} with no detail message.
27 * message.
29 * @param message the detail message
31 public CancellationException(String message) {
32 super(message);
TimeoutException.java 25 * message.
31 * message.
33 * @param message the detail message
35 public TimeoutException(String message) {
36 super(message);
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
AuthenticationFailedException.java 23 public AuthenticationFailedException(String message) {
24 super(MessagingException.AUTHENTICATION_FAILED, message);
27 public AuthenticationFailedException(int exceptionType, String message) {
28 super(exceptionType, message);
31 public AuthenticationFailedException(String message, Throwable throwable) {
32 super(MessagingException.AUTHENTICATION_FAILED, message, throwable);
  /external/chromium_org/third_party/protobuf/python/google/protobuf/pyext/
python-proto2.cc 43 #include <google/protobuf/message.h>
50 #define FIELD_BELONGS_TO_MESSAGE(field_descriptor, message) \
51 ((message)->GetDescriptor() == (field_descriptor)->containing_type())
189 struct CMessage* parent; // NULL if wasn't created from another message.
192 google::protobuf::Message* message; member in struct:google::protobuf::python::CMessage
203 "Adds a new message to a repeated composite field."),
209 "Returns the size of the message in bytes."),
211 "Clears a protocol message."),
213 "Clears a protocol message field by name.")
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/
irc.js 6 * an IRC message command and to close the connection respectively.
9 * being opened, a message being received and the connection being closed.
13 function log(message) { console.log(message); };
36 this.sendMessage = function(recipient, message) {
37 sendCommand(commands.PRIVMSG, [recipient], message);
44 this.disconnect = function(message) {
45 sendCommand(commands.QUIT, [], message);
62 this.onMessage = function(message) {
63 log("<< " + message);
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/
irc.js 6 * an IRC message command and to close the connection respectively.
9 * being opened, a message being received and the connection being closed.
13 function log(message) { console.log(message); };
36 this.sendMessage = function(recipient, message) {
37 sendCommand(commands.PRIVMSG, [recipient], message);
44 this.disconnect = function(message) {
45 sendCommand(commands.QUIT, [], message);
62 this.onMessage = function(message) {
63 log("<< " + message);
    [all...]
  /external/chromium_org/chrome/renderer/extensions/
console.cc 56 // Writes |message| to stack to show up in minidump, then crashes.
57 void CheckWithMinidump(const std::string& message) {
61 "e::console: %s", message.c_str());
62 CHECK(false) << message;
66 const std::string& message);
71 std::string message; local
74 message += " ";
75 message += *v8::String::AsciiValue(info[i]);
77 (*log_method)(v8::Context::GetCalling(), message); local
91 void Debug(content::RenderView* render_view, const std::string& message) {
    [all...]
  /external/srtp/test/
rtp.c 31 strncpy(sender->message.body, msg, len);
34 sender->message.header.seq = ntohs(sender->message.header.seq) + 1;
35 sender->message.header.seq = htons(sender->message.header.seq);
36 sender->message.header.ts = ntohl(sender->message.header.ts) + 1;
37 sender->message.header.ts = htonl(sender->message.header.ts);
40 stat = srtp_protect(sender->srtp_ctx, &sender->message.header, &pkt_len)
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
Exception.pm 13 if (exists $args->{message}) {
14 $exception_args{message} = $args->{message};
  /external/apache-http/src/org/apache/commons/logging/
LogConfigurationException.java 33 * Construct a new exception with <code>null</code> as its detail message.
43 * Construct a new exception with the specified detail message.
45 * @param message The detail message
47 public LogConfigurationException(String message) {
49 super(message);
56 * detail message.
68 * Construct a new exception with the specified detail message and cause.
70 * @param message The detail message
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/login/
screen_tpm_error.css 6 #tpm-error-message {
10 #oobe.tpm-error-message #step-logo {
14 #tpm-error-message-controls {
  /external/chromium_org/gpu/command_buffer/service/
disk_cache_proto.proto 3 message ShaderInfoProto {
10 message ShaderProto {
16 message GpuProgramProto {
  /external/chromium_org/ipc/
ipc_message.h 35 class IPC_EXPORT Message : public Pickle {
56 virtual ~Message();
58 Message();
60 // Initialize a message with a user-defined type, priority value, and
62 Message(int32 routing_id, uint32 type, PriorityValue priority);
64 // Initializes a message from a const block of data. The data is not copied;
65 // instead the data is merely referenced by this message. Only const methods
66 // should be used on the message when initialized this way.
67 Message(const char* data, int data_len);
69 Message(const Message& other)
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/message/
CompressedMessage.java 33 package com.jme3.network.message;
36 import com.jme3.network.Message;
47 private Message message; field in class:CompressedMessage
51 public CompressedMessage(Message msg) {
52 this.message = msg;
55 public void setMessage(Message message) {
56 this.message = message;
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldHttpRetryExceptionTest.java 25 String [] message = {"Test message", "", "Message", "~!@#$% &*(", null}; local
28 for(int i = 0; i < message.length; i++) {
29 HttpRetryException hre = new HttpRetryException(message[i],
31 assertEquals(message[i], hre.getReason());
38 String [] message = {"Test message", "", "Message", "~!@#$% &*(", null}; local
43 for(int i = 0; i < message.length; i++)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
msg.h 11 #define MSG_NOERROR 010000 /* no error if message is too big */
17 struct msg *msg_first; /* first message on queue,unused */
18 struct msg *msg_last; /* last message in queue,unused */
34 /* message buffer for msgsnd and msgrcv calls */
36 long mtype; /* type of message */
37 char mtext[1]; /* message text */
53 #define MSGMAX 8192 /* <= INT_MAX */ /* max size of message (bytes) */
54 #define MSGMNB 16384 /* <= INT_MAX */ /* default max size of a message queue */
57 #define MSGPOOL (MSGMNI*MSGMNB/1024) /* size in kilobytes of message pool */
58 #define MSGTQL MSGMNB /* number of system message headers *
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
msg.h 11 #define MSG_NOERROR 010000 /* no error if message is too big */
17 struct msg *msg_first; /* first message on queue,unused */
18 struct msg *msg_last; /* last message in queue,unused */
34 /* message buffer for msgsnd and msgrcv calls */
36 long mtype; /* type of message */
37 char mtext[1]; /* message text */
53 #define MSGMAX 8192 /* <= INT_MAX */ /* max size of message (bytes) */
54 #define MSGMNB 16384 /* <= INT_MAX */ /* default max size of a message queue */
57 #define MSGPOOL (MSGMNI*MSGMNB/1024) /* size in kilobytes of message pool */
58 #define MSGTQL MSGMNB /* number of system message headers *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
msg.h 11 #define MSG_NOERROR 010000 /* no error if message is too big */
17 struct msg *msg_first; /* first message on queue,unused */
18 struct msg *msg_last; /* last message in queue,unused */
34 /* message buffer for msgsnd and msgrcv calls */
36 long mtype; /* type of message */
37 char mtext[1]; /* message text */
53 #define MSGMAX 8192 /* <= INT_MAX */ /* max size of message (bytes) */
54 #define MSGMNB 16384 /* <= INT_MAX */ /* default max size of a message queue */
57 #define MSGPOOL (MSGMNI*MSGMNB/1024) /* size in kilobytes of message pool */
58 #define MSGTQL MSGMNB /* number of system message headers *
    [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/chromium/chrome/browser/debugger/
devtools_handler.cc 17 bool DevToolsHandler::OnMessageReceived(const IPC::Message& message) {
19 IPC_BEGIN_MESSAGE_MAP(DevToolsHandler, message)
34 void DevToolsHandler::OnForwardToAgent(const IPC::Message& message) {
36 render_view_host(), message); local
39 void DevToolsHandler::OnForwardToClient(const IPC::Message& message) {
41 render_view_host(), message); local
  /external/chromium/chrome/common/extensions/docs/examples/extensions/gmail/_locales/ca/
messages.json 1 {"gmailcheck_name":{"message":"Verificador de Google Mail"},"gmailcheck_description":{"message":"Mostra el nombre de missatges no llegits que hi ha a la vostra safata d'entrada de Google Mail. Tamb\u00e9 podeu fer clic al bot\u00f3 per obrir la safata d'entrada."},"gmailcheck_node_error":{"message":"Error: s'ha recuperat el feed, per\u00f2 no s'ha trobat cap node &lt;fullcount&gt;"},"gmailcheck_exception":{"message":"excepci\u00f3: $1","placeholders":{"1":{"content":"$1"}}}}
  /external/chromium/chrome/common/extensions/docs/examples/extensions/gmail/_locales/cs/
messages.json 1 {"gmailcheck_name":{"message":"Kontrola e-mailu Google"},"gmailcheck_description":{"message":"Zobraz\u00ed po\u010det nep\u0159e\u010dten\u00fdch zpr\u00e1v ve slo\u017ece Doru\u010den\u00e1 po\u0161ta slu\u017eby Google Mail. Kliknut\u00edm na tla\u010d\u00edtko tuto slo\u017eku otev\u0159ete."},"gmailcheck_node_error":{"message":"Chyba: Zdroj byl na\u010dten, nebyl v\u0161ak nalezen \u017e\u00e1dn\u00fd uzel &lt;fullcount&gt;."},"gmailcheck_exception":{"message":"v\u00fdjimka: $1","placeholders":{"1":{"content":"$1"}}}}

Completed in 2679 milliseconds

<<11121314151617181920>>