Searched refs:tocont (Results 1 – 6 of 6) sorted by relevance
| /src/contrib/lua/src/ |
| H A D | lauxlib.c | 1057 static void warnfoff (void *ud, const char *message, int tocont); 1058 static void warnfon (void *ud, const char *message, int tocont); 1059 static void warnfcont (void *ud, const char *message, int tocont); 1066 static int checkcontrol (lua_State *L, const char *message, int tocont) { in checkcontrol() argument 1067 if (tocont || *(message++) != '@') /* not a control message? */ in checkcontrol() 1079 static void warnfoff (void *ud, const char *message, int tocont) { in warnfoff() argument 1080 checkcontrol((lua_State *)ud, message, tocont); in warnfoff() 1088 static void warnfcont (void *ud, const char *message, int tocont) { in warnfcont() argument 1091 if (tocont) /* not the last part? */ in warnfcont() 1100 static void warnfon (void *ud, const char *message, int tocont) { in warnfon() argument [all …]
|
| H A D | lua.h | 131 typedef void (*lua_WarnFunction) (void *ud, const char *msg, int tocont); 323 LUA_API void (lua_warning) (lua_State *L, const char *msg, int tocont);
|
| H A D | lstate.c | 426 void luaE_warning (lua_State *L, const char *msg, int tocont) { in luaE_warning() argument 429 wf(G(L)->ud_warn, msg, tocont); in luaE_warning()
|
| H A D | lstate.h | 402 LUAI_FUNC void luaE_warning (lua_State *L, const char *msg, int tocont);
|
| H A D | ltests.c | 94 static void warnf (void *ud, const char *msg, int tocont) { in warnf() argument 100 if (!lasttocont && !tocont && *msg == '@') { /* control message? */ in warnf() 118 lasttocont = tocont; in warnf() 122 if (!tocont) { /* message finished? */ in warnf()
|
| H A D | lapi.c | 1335 void lua_warning (lua_State *L, const char *msg, int tocont) { in lua_warning() argument 1337 luaE_warning(L, msg, tocont); in lua_warning()
|