Home
last modified time | relevance | path

Searched refs:LUA_TFUNCTION (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dlobject.h49 #define LUA_TLCL (LUA_TFUNCTION | (0 << 4)) /* Lua closure */
50 #define LUA_TLCF (LUA_TFUNCTION | (1 << 4)) /* light C function */
51 #define LUA_TCCL (LUA_TFUNCTION | (2 << 4)) /* C closure */
140 #define ttisfunction(o) checktype(o, LUA_TFUNCTION)
141 #define ttisclosure(o) ((rttype(o) & 0x1F) == LUA_TFUNCTION)
H A Dlcorolib.c83 luaL_checktype(L, 1, LUA_TFUNCTION); in luaB_cocreate()
H A Dlua.h82 #define LUA_TFUNCTION 6 macro
330 #define lua_isfunction(L,n) (lua_type(L, (n)) == LUA_TFUNCTION)
H A Dlstate.h208 check_exp(novariant((o)->gch.tt) == LUA_TFUNCTION, &((o)->cl))
H A Dltablib.c252 luaL_checktype(L, 2, LUA_TFUNCTION); in sort()
H A Dlstrlib.c199 luaL_checktype(L, 1, LUA_TFUNCTION); in str_dump()
738 case LUA_TFUNCTION: { in add_value()
776 tr == LUA_TFUNCTION || tr == LUA_TTABLE, 3, in str_gsub()