Lines Matching refs:message
1036 static void warnfoff (void *ud, const char *message, int tocont);
1037 static void warnfon (void *ud, const char *message, int tocont);
1038 static void warnfcont (void *ud, const char *message, int tocont);
1045 static int checkcontrol (lua_State *L, const char *message, int tocont) { in checkcontrol() argument
1046 if (tocont || *(message++) != '@') /* not a control message? */ in checkcontrol()
1049 if (strcmp(message, "off") == 0) in checkcontrol()
1051 else if (strcmp(message, "on") == 0) in checkcontrol()
1058 static void warnfoff (void *ud, const char *message, int tocont) { in warnfoff() argument
1059 checkcontrol((lua_State *)ud, message, tocont); in warnfoff()
1067 static void warnfcont (void *ud, const char *message, int tocont) { in warnfcont() argument
1069 lua_writestringerror("%s", message); /* write message */ in warnfcont()
1079 static void warnfon (void *ud, const char *message, int tocont) { in warnfon() argument
1080 if (checkcontrol((lua_State *)ud, message, tocont)) /* control message? */ in warnfon()
1083 warnfcont(ud, message, tocont); /* finish processing */ in warnfon()