Searched refs:tocont (Results 1 – 5 of 5) sorted by relevance
/l4re-core-master/lua/lib/contrib/src/ |
A D | lauxlib.c | 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() 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 1070 if (tocont) /* not the last part? */ in warnfcont() 1079 static void warnfon (void *ud, const char *message, int tocont) { in warnfon() argument [all …]
|
A D | lstate.c | 417 void luaE_warning (lua_State *L, const char *msg, int tocont) { in luaE_warning() argument 420 wf(G(L)->ud_warn, msg, tocont); in luaE_warning()
|
A D | lua.h | 131 typedef void (*lua_WarnFunction) (void *ud, const char *msg, int tocont); 312 LUA_API void (lua_warning) (lua_State *L, const char *msg, int tocont);
|
A D | lstate.h | 398 LUAI_FUNC void luaE_warning (lua_State *L, const char *msg, int tocont);
|
A D | lapi.c | 1327 void lua_warning (lua_State *L, const char *msg, int tocont) { in lua_warning() argument 1329 luaE_warning(L, msg, tocont); in lua_warning()
|
Completed in 13 milliseconds