Home
last modified time | relevance | path

Searched refs:luaL_loadfile (Results 1 – 9 of 9) sorted by relevance

/freebsd-src/contrib/lua/src/
H A Dlauxlib.h95 #define luaL_loadfile(L,f) luaL_loadfilex(L,f,NULL) macro
145 (luaL_loadfile(L, fn) || lua_pcall(L, 0, LUA_MULTRET, 0))
H A Dlua.c202 return dochunk(L, luaL_loadfile(L, name)); in dofile()
253 status = luaL_loadfile(L, fname); in handle_script()
H A Dlbaselib.c418 if (l_unlikely(luaL_loadfile(L, fname) != LUA_OK)) in luaB_dofile()
H A Dloadlib.c550 return checkload(L, (luaL_loadfile(L, filename) == LUA_OK), filename); in searcher_Lua()
H A Dluac.c179 if (luaL_loadfile(L,filename)!=LUA_OK) fatal(lua_tostring(L,-1)); in pmain()
H A Dltests.c1520 luaL_loadfile(L1, luaL_checkstring(L1, getnum)); in runC()
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DLua.cpp145 int error = luaL_loadfile(m_lua_state, filename.data()) || in LoadModule()
/freebsd-src/sys/contrib/openzfs/include/sys/lua/
H A Dlauxlib.h112 (luaL_loadfile(L, fn) || lua_pcall(L, 0, LUA_MULTRET, 0))
/freebsd-src/contrib/lutok/
H A Dstate.cpp497 if (luaL_loadfile(_pimpl->lua_state, file.c_str()) != 0) in load_file()