HomeSort by relevance Sort by last modified time
    Searched defs:message (Results 201 - 225 of 5333) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
NumberParseException.java 57 private String message; field in class:NumberParseException
59 public NumberParseException(ErrorType errorType, String message) {
60 super(message);
61 this.message = message;
74 return "Error type: " + errorType + ". " + message;
  /external/libusb/libusb/
hotplug.c 217 libusb_hotplug_message *message = calloc(1, sizeof(*message)); local
219 if (!message) {
220 usbi_err(ctx, "error allocating hotplug message");
224 message->event = event;
225 message->device = dev;
227 /* Take the event data lock and add this message to the list.
231 list_add_tail(&message->list, &ctx->hotplug_msgs);
  /external/llvm/lib/Object/
Error.cpp 28 std::string message(int ev) const override;
36 std::string _object_error_category::message(int EV) const { function in class:_object_error_category
54 llvm_unreachable("An enumerator of object_error does not have a message "
  /external/ltp/testcases/kernel/timers/timer_create/
timer_create02.c 46 * Log the errno and Issue a FAIL message.
47 * Otherwise, Issue a PASS message.
86 char *message[3] = { local
131 "passed" : "failed"), message[i]);
timer_create03.c 46 * Log the errno and Issue a FAIL message.
47 * Otherwise, Issue a PASS message.
94 char *message[] = { local
117 message[i]);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/
19-1.c 20 * The opened message queue descriptors are copied to the child process and
24 * -> Open a message queue descriptor.
25 * -> Send a message to this descriptor.
27 * -> Check if that the child's message count for this descriptor is 1.
28 * -> Unlink the message queue otherwise it will remain in the system.
30 * The test fails if the child reports 0 message count
53 static const char message[] = "I'm your father..."; variable
61 char rcv[sizeof(message)];
65 /* Create a message queue descriptor */
67 mqa.mq_msgsize = sizeof(message);
    [all...]
  /external/ltp/utils/sctp/func_tests/
test_1_to_1_initmsg_connect.c 64 char *message = "Hello World!\n"; local
106 test_sctp_sendmsg(sk1, message, strlen(message) + 1,
111 test_recv(sk2, buffer_rcv, (strlen(message) + 1), MSG_NOSIGNAL);
test_autoclose.c 70 char *message = "hello, world!\n"; local
108 /* Send the first message. This will create the association. */
114 outmessage.msg_iov->iov_base = message;
115 outmessage.msg_iov->iov_len = strlen(message) + 1;
117 test_sendmsg(sk1, &outmessage, 0, strlen(message)+1);
128 /* Get the communication up message on sk2. */
134 /* Get the communication up message on sk1. */
140 /* Get the first message which was sent. */
142 test_check_msg_data(&inmessage, error, strlen(message) + 1,
  /external/lzma/CPP/Common/
TextConfig.cpp 80 AString message; local
93 case 'n': message += '\n'; break;
94 case 't': message += '\t'; break;
95 case '\\': message += '\\'; break;
96 case '\"': message += '\"'; break;
97 default: message += '\\'; message += c; break;
101 message += c;
103 if (!ConvertUTF8ToUnicode(message, pair.String))
  /external/mockito/src/main/java/org/mockito/exceptions/verification/junit/
ArgumentsAreDifferent.java 17 private final String message; field in class:ArgumentsAreDifferent
20 public ArgumentsAreDifferent(String message, String wanted, String actual) {
21 super(message, wanted, actual);
22 this.message = message;
31 return message;
  /external/nist-sip/java/gov/nist/javax/sip/message/
Content.java 1 package gov.nist.javax.sip.message;
18 * sip message.
MultipartMimeContent.java 1 package gov.nist.javax.sip.message;
SIPDuplicateHeaderException.java 29 package gov.nist.javax.sip.message;
40 * 3. Discard the entire message by throwing an exception.
  /external/parameter-framework/upstream/test/tmpfile/
TmpFile.hpp 84 /** Throw an std::runtime_error with a message constructed from the context and std::errno.
90 auto message = context + ": (" + std::to_string(errno) + ") " + std::strerror(errno); local
91 throw std::runtime_error(message);
  /external/parameter-framework/upstream/test/tmpfile/windows/
TmpFile.cpp 50 FORMAT_MESSAGE_FROM_SYSTEM | // use system message tables to retrieve error text
79 auto message = std::string() + "Could not create a tmp file in \"" + directory + local
82 throw std::runtime_error(message);
  /external/proguard/src/proguard/gui/
MessageDialogRunnable.java 28 * This <code>Runnable</code> can show a message dialog.
35 private final Object message; field in class:MessageDialogRunnable
45 Object message,
52 message,
68 Object message,
73 this.message = message;
85 message,
  /external/protobuf/python/google/protobuf/pyext/
descriptor_database.cc 39 #include <google/protobuf/pyext/message.h>
72 CMessage* message = reinterpret_cast<CMessage*>(py_descriptor); local
74 message->message->GetDescriptor() == filedescriptor_descriptor) {
77 static_cast<FileDescriptorProto*>(message->message);
81 // Slow path: serialize the message. This allows to use databases which
127 // Find the file which defines an extension extending the given message type
extension_dict.h 47 class Message;
63 // This is the top-level C++ Message object that owns the whole
67 shared_ptr<Message> owner;
69 // Weak reference to parent message. Used to make sure
73 // Pointer to the C++ Message that this ExtensionDict extends.
75 Message* message; member in struct:google::protobuf::python::ExtensionDict
86 // Builds an Extensions dict for a specific message.
repeated_composite_container.h 50 class Message;
67 // done both on the 'message' and on the 'child_messages'
71 // When in the released state 'message', 'owner', 'parent', and
76 // This is the top-level C++ Message object that owns the whole
80 shared_ptr<Message> owner;
87 // A descriptor used to modify the underlying 'message'.
91 // Pointer to the C++ Message that contains this container. The
94 // If NULL, this message has been released from its parent (by
96 Message* message; member in struct:google::protobuf::python::RepeatedCompositeContainer
    [all...]
repeated_scalar_container.h 49 class Message;
64 // This is the top-level C++ Message object that owns the whole
68 shared_ptr<Message> owner;
70 // Pointer to the C++ Message that contains this container. The
72 Message* message; member in struct:google::protobuf::python::RepeatedScalarContainer
81 // field. Used together with the parent's message when making a
82 // default message instance mutable.
91 // Builds a RepeatedScalarContainer object, from a parent message and a
102 // Releases the messages in the container to a new message
    [all...]
  /external/protobuf/src/google/protobuf/
reflection_ops_unittest.cc 52 unittest::TestAllTypes message; local
54 TestUtil::SetAllFields(&message);
55 TestUtil::ExpectAllFieldsSet(message);
59 unittest::TestAllTypes message, message2; local
61 TestUtil::SetAllFields(&message);
63 ReflectionOps::Copy(message, &message2);
73 unittest::TestAllExtensions message, message2; local
75 TestUtil::SetAllExtensions(&message);
77 ReflectionOps::Copy(message, &message2);
83 unittest::TestOneof2 message, message2 local
98 unittest::TestAllTypes message, message2; local
125 unittest::TestAllExtensions message, message2; local
192 unittest::TestAllTypes message; local
202 unittest::TestAllTypes message; local
223 unittest::TestAllExtensions message; local
246 unittest::TestEmptyMessage message; local
255 unittest::TestOneof2 message; local
272 unittest::TestAllTypes message; local
303 unittest::TestAllExtensions message; local
338 unittest::TestRequired message; local
350 unittest::TestRequiredForeign message; local
378 unittest::TestAllExtensions message; local
406 unittest::TestRequiredOneof message; local
428 unittest::TestRequired message; local
433 unittest::TestRequiredForeign message; local
450 unittest::TestAllExtensions message; local
467 unittest::TestRequiredOneof message; local
    [all...]
  /external/python/cpython2/Lib/bsddb/test/
test_early_close.py 18 message='DB could not be closed in', variable
  /external/python/cpython2/Modules/_io/
_iomodule.h 78 PyObject *message; member in struct:__anon32712
  /external/python/cpython2/Parser/
intrcheck.c 124 static char message[] = local
131 fprintf(stderr, message);
133 write(2, message, strlen(message));
  /external/python/cpython3/Lib/test/test_email/
__init__.py 5 from email.message import Message
30 # Likewise, the default message object is Message.
31 message = Message variable in class:TestEmailBase
44 def _str_msg(self, string, message=None, policy=None):
47 if message is None:
48 message = self.message
    [all...]

Completed in 964 milliseconds

1 2 3 4 5 6 7 891011>>