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

<<11121314151617181920>>

  /external/apache-harmony/x-net/src/test/impl/java/org/apache/harmony/xnet/tests/provider/jsse/
HelloRequestTest.java 34 HelloRequest message = new HelloRequest(); local
35 assertEquals("incorrect type", Handshake.HELLO_REQUEST, message
37 assertEquals("incorrect HelloRequest", 0, message.length());
40 message.send(out);
42 assertEquals("incorrect out data length", message.length(),
47 HelloRequest message_2 = new HelloRequest(in, message.length());
48 assertEquals("incorrect message decoding", 0, message_2.length());
52 new HelloRequest(in, message.length() - 1);
60 new HelloRequest(in, message.length() + 3);
ServerHelloDoneTest.java 40 ServerHelloDone message = new ServerHelloDone(); local
41 assertEquals("incorrect type", Handshake.SERVER_HELLO_DONE, message
43 assertEquals("incorrect ServerHelloDone", 0, message.length());
46 message.send(out);
48 assertEquals("incorrect out data length", message.length(),
53 ServerHelloDone message_2 = new ServerHelloDone(in, message.length());
54 assertEquals("incorrect message decoding", 0, message_2.length());
58 new ServerHelloDone(in, message.length() - 1);
66 new ServerHelloDone(in, message.length() + 3);
  /external/apache-http/src/org/apache/http/client/
ClientProtocolException.java 54 public ClientProtocolException(String message, Throwable cause) {
55 super(message);
  /external/apache-http/src/org/apache/http/impl/client/
TunnelRefusedException.java 43 public TunnelRefusedException(final String message, final HttpResponse response) {
44 super(message);
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
ExtCRLException.java 10 ExtCRLException(String message, Throwable cause)
12 super(message);
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/
ExtCertificateEncodingException.java 10 ExtCertificateEncodingException(String message, Throwable cause)
12 super(message);
  /external/chromium/chrome/browser/automation/
chrome_frame_automation_provider.h 27 virtual bool OnMessageReceived(const IPC::Message& message);
30 // This function is called when we receive an invalid message type.
31 virtual void OnUnhandledMessage(const IPC::Message& message);
33 // Returns true if the message received is a valid chrome frame message.
  /external/chromium/chrome/browser/debugger/
devtools_remote.h 21 virtual void HandleMessage(const DevToolsRemoteMessage& message) = 0;
41 virtual void Send(const DevToolsRemoteMessage& message) = 0;
  /external/chromium/chrome/browser/extensions/
extension_message_handler.h 25 virtual bool OnMessageReceived(const IPC::Message& message);
28 // Message handlers.
29 void OnPostMessage(int port_id, const std::string& message);
  /external/chromium/chrome/browser/ui/gtk/
process_singleton_dialog.h 17 // lock. This runs the message loop itself as the browser message loop has not
22 static void ShowAndRun(const std::string& message);
25 explicit ProcessSingletonDialog(const std::string& message);
  /external/chromium/testing/gmock/src/
gmock-internal-utils.cc 79 const string& message) {
85 message.c_str()) = Message();
124 // Prints the given message to stdout iff 'severity' >= the level
131 void Log(LogSeverity severity, const string& message,
146 // Pre-pends a new-line to message if it doesn't start with one.
147 if (message.empty() || message[0] != '\n') {
150 std::cout << message; local
161 // Appends a new-line to message if it doesn't end with one
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
ParserException.java 12 public ParserException(@SuppressWarnings("hiding") Token token, String message)
14 super(message);
  /external/qemu/distrib/sdl-1.2.12/src/video/gem/
SDL_gemevents.c 51 static int do_messages(_THIS, short *message);
106 /* Message event ? */
169 static int do_messages(_THIS, short *message)
175 switch (message[0]) {
182 wind_set(message[3],WF_CURRXYWH,message[4],message[5],message[6],message[7]);
185 wind_set(message[3],WF_TOP,message[4],0,0,0)
    [all...]
  /external/srtp/include/
rtp_priv.h 60 rtp_msg_t message; member in struct:rtp_sender_ctx_t
67 rtp_msg_t message; member in struct:rtp_receiver_ctx_t
  /external/webkit/Source/WebCore/inspector/
InspectorClient.cpp 43 bool InspectorClient::doDispatchMessageOnFrontendPage(Page* frontendPage, const String& message)
57 dispatchToFrontend += message;
  /external/webkit/Source/WebCore/storage/
IDBDatabaseError.idl 32 attribute DOMString message;
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
MessageSender.h 36 template<typename U> bool send(const U& message)
38 return send(message, static_cast<T*>(this)->destinationID());
41 template<typename U> bool send(const U& message, uint64_t destinationID)
44 argumentEncoder->encode(message);
57 template<typename U> bool sendSync(const U& message, const typename U::Reply& reply, double timeout = Connection::NoTimeout)
59 return sendSync(message, reply, static_cast<T*>(this)->destinationID(), timeout);
62 template<typename U> bool sendSync(const U& message, const typename U::Reply& reply, uint64_t destinationID, double timeout = Connection::NoTimeout)
67 return connection->sendSync(message, reply, destinationID, timeout);
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
preparechangelogforrevert.py 40 message = "Unreviewed, rolling out %s.\n" % join_with_separators(['r' + str(revision) for revision in revision_list])
42 message += "%s\n" % urls.view_revision_url(revision)
44 message += "%s\n" % bug_url
46 message += "\n"
48 message += "%s\n\n" % reason
49 return message
56 message = self._message_for_revert(state["revision_list"], state["reason"], bug_url)
58 # FIXME: Seems we should prepare the message outside of changelogs.py and then just pass in
60 ChangeLog(changelog_path).update_with_unreviewed_message(message)
  /frameworks/base/core/java/android/net/http/
Timer.java 34 public void mark(String message) {
37 HttpLog.v(message + " " + (now - mLast) + " total " + (now - mStart));
  /frameworks/base/drm/common/
DrmInfoEvent.cpp 22 DrmInfoEvent::DrmInfoEvent(int uniqueId, int infoType, const String8 message)
25 mMessage(message) {
  /frameworks/base/keystore/java/android/security/
KeyChainException.java 33 * trace and the specified detail message.
36 * the detail message for this exception.
44 * trace, the specified detail message and the specified cause.
46 * @param message
47 * the detail message for this exception.
51 public KeyChainException(String message, Throwable cause) {
52 super(message, cause);
  /frameworks/base/sax/java/android/sax/
BadXmlException.java 23 * An XML parse exception which includes the line number in the message.
27 public BadXmlException(String message, Locator locator) {
28 super(message, locator);
  /frameworks/base/test-runner/src/android/test/
ComparisonFailure.java 28 public ComparisonFailure(String message, String expected, String actual) {
29 mComparison = new junit.framework.ComparisonFailure(message, expected, actual);
  /libcore/luni/src/main/java/java/io/
IOException.java 38 * message filled in.
41 * the detail message for this exception.
48 * Constructs a new instance of this class with detail message and cause
51 * @param message
52 * The detail message for the exception.
57 public IOException(String message, Throwable cause) {
58 super(message, cause);
  /libcore/luni/src/main/java/java/lang/
IllegalArgumentException.java 37 * trace and the specified detail message.
40 * the detail message for this exception.
48 * trace, the specified detail message and the specified cause.
50 * @param message
51 * the detail message for this exception.
56 public IllegalArgumentException(String message, Throwable cause) {
57 super(message, cause);

Completed in 1650 milliseconds

<<11121314151617181920>>