Lines Matching refs:err
19 static const char *dlua_errstr(int err)
21 switch(err) {
139 int err = lua_pcall(script->L, 0, 0, 0);
140 if (err != 0) {
180 int err;
195 if ((err = luaL_loadstring(script->L, str)) != 0) {
197 dlua_errstr(err));
209 int err;
228 if ((err = luaL_loadfile(script->L, file)) != 0) {
230 file, dlua_errstr(err));
243 int err;
256 if ((err = lua_load(script->L, dlua_reader, script, filename, 0)) < 0) {
258 filename, dlua_errstr(err));