Home
last modified time | relevance | path

Searched refs:lua_pcall (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlua.c179 status = lua_pcall(L, narg, nres, base); in docall()
314 if (lua_pcall(L, lua_gettop(L)-1, 0, 0) != LUA_OK) in dotty()
491 status = lua_pcall(L, 2, 1, 0); in main()
Dldblib.c352 lua_pcall(L, 0, 0, 0)) in db_debug()
Dluac.c200 if (lua_pcall(L,2,0,0)!=LUA_OK) fatal(lua_tostring(L,-1)); in main()
/device/linaro/bootloader/edk2/StdLib/Include/Lua/
Dlauxlib.h125 (luaL_loadfile(L, fn) || lua_pcall(L, 0, LUA_MULTRET, 0))
128 (luaL_loadstring(L, s) || lua_pcall(L, 0, LUA_MULTRET, 0))
Dluaconf.h268 lua_pcall(L,1,0,0))
Dlua.h259 #define lua_pcall(L,n,r,f) lua_pcallk(L, (n), (r), (f), 0, NULL) macro