Lines Matching defs:message

36  *  _z_echo - Output an interactive message if interaction is enabled
37 * _z_echoDebug - Output a debugging message if debugging is enabled
39 * _z_program_error - Output an error message to the appropriate destinations
189 * Synopsis: Output an interactive message if interaction is enabled
190 * Description: Main method for outputting an interactive message; call to
191 * output interactive message if interation has not been disabled
194 * printf-style format for debugging message to be output
205 char message[MAX_MESSAGE_SIZE];
217 /* capture message */
220 (void) vsnprintf(message, sizeof (message), a_format, ap);
223 /* pass message to registered function */
225 (_z_global_data._z_echo)("%s", message);
230 * Synopsis: Output a debugging message if debugging is enabled
231 * Description: Main method for outputting a debugging message; call to
232 * output debugging message if debugging has been enabled
235 * printf-style format for debugging message to be output
239 * NOTE: format of message will be:
240 * # [ aaa bbb ccc ] message
253 char message[MAX_MESSAGE_SIZE];
265 /* capture message */
268 (void) vsnprintf(message, sizeof (message), a_format, ap);
271 /* pass message to registered function */
273 (_z_global_data._z_echo_debug)("%s", message);
340 * Description: Output an error message to the appropriate destinations
342 * printf-style format for debugging message to be output
346 * NOTE: format of message will be:
347 * [aaa: ] ERROR: message
349 * message - results of format and arguments
359 char message[MAX_MESSAGE_SIZE];
371 /* capture message */
374 (void) vsnprintf(message, sizeof (message), a_format, ap);
377 /* pass message to registered function */
379 (_z_global_data._z_progerr)(MSG_PROG_ERR, message);