Home
last modified time | relevance | path

Searched refs:lua_iscfunction (Results 1 – 5 of 5) sorted by relevance

/redis-3.2.3/deps/lua/src/
H A Dlbaselib.c135 if (lua_iscfunction(L, -1)) /* is a C function? */ in luaB_getfenv()
154 else if (lua_iscfunction(L, -2) || lua_setfenv(L, -2) == 0) in luaB_setfenv()
578 luaL_argcheck(L, lua_isfunction(L, 1) && !lua_iscfunction(L, 1), 1, in luaB_cocreate()
H A Dlua.h137 LUA_API int (lua_iscfunction) (lua_State *L, int idx); variable
H A Dldblib.c183 if (lua_iscfunction(L, 1)) return 0; /* cannot touch C upvalues from Lua */ in auxupvalue()
H A Dloadlib.c511 lua_iscfunction(L, -1)) in setfenv()
H A Dlapi.c254 LUA_API int lua_iscfunction (lua_State *L, int idx) { in lua_iscfunction() function