Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dlapi.c326 default: api_check(L, 0, "invalid option"); in lua_compare()
642 api_check(L, ttistable(t), "table expected"); in lua_rawget()
652 api_check(L, ttistable(t), "table expected"); in lua_rawgeti()
664 api_check(L, ttistable(t), "table expected"); in lua_rawgetp()
774 api_check(L, ttistable(t), "table expected"); in lua_rawset()
788 api_check(L, ttistable(t), "table expected"); in lua_rawseti()
802 api_check(L, ttistable(t), "table expected"); in lua_rawsetp()
892 api_check(L, k == NULL || !isLua(L->ci), in lua_callk()
933 api_check(L, k == NULL || !isLua(L->ci), in lua_pcallk()
1118 api_check(L, ttistable(t), "table expected"); in lua_next()
[all …]
H A Dlapi.h14 #define api_incr_top(L) {L->top++; api_check(L, L->top <= L->ci->top, \
20 #define api_checknelems(L,n) api_check(L, (n) < (L->top - L->ci->func), \
H A Dlmem.c86 api_check(L, nsize > realosize, in luaM_realloc_()
H A Dllimits.h83 #define api_check(l,e,msg) luai_apicheck(l,(e) && msg) macro
H A Dldebug.c288 api_check(L, ttisfunction(func), "function expected"); in lua_getinfo()
H A Dldo.c585 api_check(L, k == NULL, "hooks cannot continue after yielding"); in lua_yieldk()