Searched refs:luaL_loadstring (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/sys/contrib/openzfs/include/sys/lua/
H A Dlauxlib.h72 LUALIB_API int (luaL_loadstring) (lua_State *L, const char *s);
116 (luaL_loadstring(L, s) || lua_pcall(L, 0, LUA_MULTRET, 0))
/freebsd-13-stable/contrib/lua/src/
H A Dlauxlib.h98 LUALIB_API int (luaL_loadstring) (lua_State *L, const char *s);
147 (luaL_loadstring(L, s) || lua_pcall(L, 0, LUA_MULTRET, 0))
H A Dlauxlib.c815 LUALIB_API int luaL_loadstring (lua_State *L, const char *s) { function
/freebsd-13-stable/contrib/lutok/
H A Dstate.cpp502 /// Wrapper around luaL_loadstring.
504 /// \param str The second parameter to luaL_loadstring.
506 /// \throw api_error If luaL_loadstring returns an error.
512 if (luaL_loadstring(_pimpl->lua_state, str.c_str()) != 0)
513 throw lutok::api_error::from_stack(*this, "luaL_loadstring");
H A Dstate_test.cpp71 luaL_loadstring(raw(state), (std::string("return ") + symbol).c_str());
570 REQUIRE_API_ERROR("luaL_loadstring", state.load_string("-"));
690 luaL_loadstring(raw(state), "function mul(a, b) return a * b; end");
/freebsd-13-stable/sys/contrib/openzfs/module/lua/
H A Dlauxlib.c547 LUALIB_API int luaL_loadstring (lua_State *L, const char *s) { function

Completed in 60 milliseconds