Lines Matching defs:message

53    /* at which severity levels (mesa_debug_severity) is the message enabled */
80 /* length as given by the user - if message was explicitly null terminated,
83 GLcharARB *message;
88 * Debug message log. It works like a ring buffer.
182 * Handles generating a GL_ARB_debug_output message ID generated by the GL or
190 * across all contexts for that message (which seems like a desirable
206 if (msg->message != (char*)out_of_memory)
207 free(msg->message);
208 msg->message = NULL;
221 assert(!msg->message && !msg->length);
226 msg->message = malloc(length+1);
227 if (msg->message) {
228 (void) strncpy(msg->message, buf, (size_t)length);
229 msg->message[length] = '\0';
241 msg->message = out_of_memory;
530 * Sets the state of the given message source/type/ID tuple.
548 * Set the state of all message IDs found in the given intersection of
552 * This requires both setting the state of all previously seen message
555 * yet-unknown message IDs that may be used in the future will be
594 * Returns if the given message source/type/ID tuple is enabled.
650 * Return the oldest debug message out of the log.
899 * Insert a debug message. The mutex is assumed to be locked, and will be
933 /* add debug message to queue */
940 * Log a client or driver debug message.
1136 len = strlen(msg->message);
1142 assert(msg->message[len] == '\0');
1143 (void) strncpy(messageLog, msg->message, (size_t)len+1);
1238 const GLchar *message)
1260 if (!validate_length(ctx, callerstr, length, message))
1264 length = strlen(message);
1276 /* pop reuses the message details from push so we store this */
1283 length, message);
1291 message);
1323 gdmessage->message = NULL;
1331 msg.length, msg.message);