Home
last modified time | relevance | path

Searched refs:lua_isfunction (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dldblib.c123 else if (lua_isfunction(L, arg+1)) { in db_getinfo()
168 if (lua_isfunction(L, arg + 1)) { /* function argument? */ in db_getlocal()
265 if (lua_isfunction(L, -1)) { in hookf()
Dloadlib.c496 if (lua_isfunction(L, -2)) /* did it find a loader? */ in findloader()
561 if (lua_isfunction(L, i)) { /* avoid 'calling' extra info. */ in dooptions()
/device/linaro/bootloader/edk2/StdLib/Include/Lua/
Dlua.h331 #define lua_isfunction(L,n) (lua_type(L, (n)) == LUA_TFUNCTION) macro