Searched refs:message (Results 1 - 7 of 7) sorted by relevance

/system/core/include/ctest/
H A Dctest.h36 #define assertTrue(value, message) assertTrueWithSource(value, __FILE__, __LINE__, message);
41 #define assertFalse(value, message) assertTrueWithSource(!value, __FILE__, __LINE__, message);
43 /** Fails a test with the given message. */
44 #define fail(message) assertTrueWithSource(0, __FILE__, __LINE__, message);
64 void assertTrueWithSource(int value, const char* file, int line, char* message);
/system/core/include/cutils/
H A Dmq.h28 /** A message. */
40 * @param destination to which the message was sent
41 * @param message the message to hear
43 typedef void MqMessageListener(MqDestination* destination, MqMessage* message);
64 /** Sends a message to a destination. */
65 void mqSendMessage(MqMessage* message, MqDestination* destination);
72 * @param messageListener function to call when a message is recieved
H A Dlogprint.h51 const char * message; member in struct:AndroidLogEntry_t
124 * Formats a log message into a buffer
/system/core/libctest/
H A Dctest.c150 void assertTrueWithSource(int value, const char* file, int line, char* message) { argument
155 suite->testNames[suite->currentTest], message);
/system/core/liblog/
H A Dlogprint.c359 * format: <priority:1><tag:N>\0<message:N>\0
366 * The message may have been truncated by the kernel log driver.
367 * When that happens, we must null-terminate the message ourselves.
392 fprintf(stderr, "+++ LOG: malformed log message\n");
396 // incoming message not null-terminated; force it
403 entry->message = buf->msg + msgStart;
687 entry->message = messageBuf;
693 * Formats a log message into a buffer
738 * Construct a buffer containing the log header and log message.
817 // we're just wrapping message wit
[all...]
/system/security/softkeymaster/
H A Dkeymaster_openssl.cpp86 char message[256]; local
87 ERR_error_string_n(error, message, sizeof(message));
88 ALOGE("OpenSSL error in %s %d: %s", location, error, message);
/system/security/keystore/
H A Dkeystore.cpp851 * network order. Thus the maximum length of a message is 65535 bytes. */
857 static int recv_message(int sock, uint8_t* message, int length) { argument
870 int n = recv(sock, &message[offset], length - offset, 0);
889 static void send_message(int sock, const uint8_t* message, int length) { argument
892 send(sock, message, length, 0);

Completed in 388 milliseconds