Searched refs:lua_tostring (Results 1 – 11 of 11) sorted by relevance
/l4re-core-master/ned/server/src/ |
A D | lua.cc | 85 fprintf(stderr, "lua error: %s.\n", lua_tostring(l, -1)); in execute_lua_buf() 92 fprintf(stderr, "lua error: %s.\n", lua_tostring(l, -1)); in execute_lua_buf() 115 cmd.data, lua_tostring(_lua, -1)); in op_execute() 130 cmd.data, lua_tostring(_lua, -1)); in op_execute() 254 fprintf(stderr, "lua error: %s.\n", lua_tostring(L, -1)); in lua() 279 fprintf(stderr, "lua error: %s.\n", lua_tostring(L, -1)); in lua()
|
A D | lua_cap.cc | 76 type = lua_tostring(l, -1); in tostring() 117 for (char const *r = lua_tostring(l, 2); *r; ++r) in __set_mode_call()
|
A D | lua_exec.cc | 238 kernel = lua_tostring(_lua, -1); in launch_loader()
|
/l4re-core-master/lua/lib/contrib/src/ |
A D | loadlib.c | 186 luaL_gsub(L, lua_tostring(L, -1), LUA_EXEC_DIR, buff); in setprogdir() 503 pusherrornotfound(L, lua_tostring(L, -1)); /* create error message */ in searchpath() 527 path = lua_tostring(L, -1); in findfile() 541 lua_tostring(L, 1), filename, lua_tostring(L, -1)); in checkload() 595 filename = findfile(L, lua_tostring(L, -1), "cpath", LUA_CSUBSEP); in searcher_Croot() 639 luaL_error(L, "module '%s' not found:%s", name, lua_tostring(L, -1)); in findloader()
|
A D | lauxlib.c | 84 const char *name = lua_tostring(L, -1); in pushglobalfuncname() 102 lua_pushfstring(L, "function '%s'", lua_tostring(L, -1)); in pushfuncname() 187 ar.name = (pushglobalfuncname(L, &ar)) ? lua_tostring(L, -1) : "?"; in luaL_argerror() 197 typearg = lua_tostring(L, -1); /* use the given type name */ in luaL_typeerror() 735 const char *filename = lua_tostring(L, fnameindex) + 1; in errfile() 800 status = lua_load(L, getF, &lf, lua_tostring(L, -1), mode); in luaL_loadfilex() 908 const char *kind = (tt == LUA_TSTRING) ? lua_tostring(L, -1) : in luaL_tolstring() 1006 return lua_tostring(L, -1); in luaL_gsub() 1022 const char *msg = lua_tostring(L, -1); in panic()
|
A D | lua.c | 122 const char *msg = lua_tostring(L, -1); in report() 134 const char *msg = lua_tostring(L, 1); in msghandler() 505 const char *line = lua_tostring(L, -1); /* original line */ in addreturn() 568 lua_tostring(L, -1))); in l_print()
|
A D | lbaselib.c | 52 lua_warning(L, lua_tostring(L, i), 1); in luaB_warn() 53 lua_warning(L, lua_tostring(L, n), 0); /* close warning */ in luaB_warn() 419 if (lua_type(L, 1) == LUA_TSTRING && *lua_tostring(L, 1) == '#') { in luaB_select()
|
A D | luac.c | 151 if (lua_load(L,reader,&i,"=(" PROGNAME ")",NULL)!=LUA_OK) fatal(lua_tostring(L,-1)); in combine() 180 if (luaL_loadfile(L,filename)!=LUA_OK) fatal(lua_tostring(L,-1)); in pmain() 208 if (lua_pcall(L,2,0,0)!=LUA_OK) fatal(lua_tostring(L,-1)); in main()
|
A D | liolib.c | 320 const char *filename = lua_tostring(L, 1); in g_iofile() 646 return luaL_error(L, "%s", lua_tostring(L, -n + 1)); in io_readline()
|
A D | ldblib.c | 438 const char *msg = lua_tostring(L, arg + 1); in db_traceback()
|
A D | lua.h | 387 #define lua_tostring(L,i) lua_tolstring(L, (i), NULL) macro
|
Completed in 24 milliseconds