Home
last modified time | relevance | path

Searched refs:luaL_error (Results 1 – 11 of 11) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlstrlib.c115 return luaL_error(L, "resulting string too large"); in str_rep()
144 return luaL_error(L, "string slice too long"); in str_byte()
180 return luaL_error(L, "unable to dump given function"); in str_dump()
229 return luaL_error(ms->L, "invalid capture index %%%d", l + 1); in check_capture()
238 return luaL_error(ms->L, "invalid pattern capture"); in capture_to_close()
246 luaL_error(ms->L, "malformed pattern (ends with " LUA_QL("%%") ")"); in classend()
253 luaL_error(ms->L, "malformed pattern (missing " LUA_QL("]") ")"); in classend()
328 luaL_error(ms->L, "malformed pattern " in matchbalance()
378 if (level >= LUA_MAXCAPTURES) luaL_error(ms->L, "too many captures"); in start_capture()
412 luaL_error(ms->L, "pattern too complex"); in match()
[all …]
Dltablib.c60 return luaL_error(L, "wrong number of arguments to " LUA_QL("insert")); in tinsert()
87 luaL_error(L, "invalid value (%s) at index %d in table for " in addfield()
144 return luaL_error(L, "too many results to unpack"); in unpack()
218 if (i>=u) luaL_error(L, "invalid order function for sorting"); in auxsort()
223 if (j<=l) luaL_error(L, "invalid order function for sorting"); in auxsort()
Dlauxlib.c156 return luaL_error(L, "bad argument #%d (%s)", narg, extramsg); in luaL_argerror()
161 return luaL_error(L, "calling " LUA_QS " on bad self (%s)", in luaL_argerror()
166 return luaL_error(L, "bad argument #%d to " LUA_QS " (%s)", in luaL_argerror()
196 LUALIB_API int luaL_error (lua_State *L, const char *fmt, ...) { in luaL_error() function
338 luaL_error(L, "stack overflow (%s)", msg); in luaL_checkstack()
340 luaL_error(L, "stack overflow"); in luaL_checkstack()
445 luaL_error(L, "buffer too large"); in luaL_prepbuffsize()
731 luaL_error(L, "object length is not a number"); in luaL_len()
819 luaL_error(L, "name conflict for module " LUA_QS, modname); in luaL_pushmodule()
947 luaL_error(L, "multiple Lua VMs detected"); in luaL_checkversion_()
[all …]
Dloadlib.c174 luaL_error(L, "unable to get ModuleFileName"); in setprogdir()
393 luaL_error(L, LUA_QL("package.%s") " must be a string", pname); in findfile()
404 return luaL_error(L, "error loading module " LUA_QS in checkload()
484 luaL_error(L, LUA_QL("package.searchers") " must be a table"); in findloader()
491 luaL_error(L, "module " LUA_QS " not found:%s", in findloader()
551 luaL_error(L, LUA_QL("module") " not called from a Lua function"); in set_env()
Dliolib.c70 luaL_error(L, LUA_QL("popen") " not supported"), (FILE*)0)
157 luaL_error(L, "attempt to use a closed file"); in tofile()
222 luaL_error(L, "cannot open file " LUA_QS " (%s)", fname, strerror(errno)); in opencheck()
268 luaL_error(L, "standard %s file is closed", findex + strlen(IO_PREFIX)); in getiofile()
489 return luaL_error(L, "file is already closed"); in io_readline()
500 return luaL_error(L, "%s", lua_tostring(L, -n + 1)); in io_readline()
Dlbaselib.c35 return luaL_error(L, in luaB_print()
118 return luaL_error(L, "cannot change a protected metatable"); in luaB_setmetatable()
303 luaL_error(L, "reader function must return a string"); in generic_reader()
348 return luaL_error(L, "%s", luaL_optstring(L, 2, "assertion failed!")); in luaB_assert()
Dloslib.c110 return luaL_error(L, "unable to generate a unique filename"); in os_tmpname()
163 return luaL_error(L, "field " LUA_QS " missing in date table", key); in getfield()
Dlbitlib.c161 luaL_error(L, "trying to access non-existent bits"); in fieldargs()
Dlmathlib.c220 default: return luaL_error(L, "wrong number of arguments"); in math_random()
Dlua.c97 luaL_error(L, "interrupted!"); in lstop()
/device/linaro/bootloader/edk2/StdLib/Include/Lua/
Dlauxlib.h60 LUALIB_API int (luaL_error) (lua_State *L, const char *fmt, ...); variable