Searched refs:docall (Results 1 – 3 of 3) sorted by relevance
/civetweb-2.7.6/src/third_party/lua-5.1.5/src/ |
D | lua.c | 96 static int docall (lua_State *L, int narg, int clear) { in docall() function 135 int status = luaL_loadfile(L, name) || docall(L, 0, 1); in dofile() 141 int status = luaL_loadbuffer(L, s, strlen(s), name) || docall(L, 0, 1); in dostring() 149 return report(L, docall(L, 1, 1)); in dolibrary() 221 if (status == 0) status = docall(L, 0, 0); in dotty() 250 status = docall(L, narg, 0); in handle_script()
|
/civetweb-2.7.6/src/third_party/lua-5.2.4/src/ |
D | lua.c | 172 static int docall (lua_State *L, int narg, int nres) { in docall() function 212 if (status == LUA_OK) status = docall(L, 0, 0); in dofile() 219 if (status == LUA_OK) status = docall(L, 0, 0); in dostring() 228 status = docall(L, 1, 1); /* call 'require(name)' */ in dolibrary() 308 if (status == LUA_OK) status = docall(L, 0, LUA_MULTRET); in dotty() 337 status = docall(L, narg, LUA_MULTRET); in handle_script()
|
/civetweb-2.7.6/src/third_party/lua-5.3.5/src/ |
D | lua.c | 198 static int docall (lua_State *L, int narg, int nres) { in docall() function 240 if (status == LUA_OK) status = docall(L, 0, 0); in dochunk() 263 status = docall(L, 1, 1); /* call 'require(name)' */ in dolibrary() 411 status = docall(L, 0, LUA_MULTRET); in doREPL() 445 status = docall(L, n, LUA_MULTRET); in handle_script()
|