Home
last modified time | relevance | path

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

/external/syslinux/com32/lua/src/
Dldo.c219 if (hook && L->allowhook) { in luaD_hook()
230 L->allowhook = 0; /* cannot call hooks inside a hook */ in luaD_hook()
235 lua_assert(!L->allowhook); in luaD_hook()
236 L->allowhook = 1; in luaD_hook()
470 L->allowhook = ci->u.c.old_allowhook; in recover()
599 lu_byte old_allowhooks = L->allowhook; in luaD_pcall()
609 L->allowhook = old_allowhooks; in luaD_pcall()
Dlstate.h167 lu_byte allowhook; member
Dlgc.c817 lu_byte oldah = L->allowhook; in GCTM()
819 L->allowhook = 0; /* stop debug hooks during GC metamethod */ in GCTM()
825 L->allowhook = oldah; /* restore hooks */ in GCTM()
Dlstate.c219 L->allowhook = 1; in preinit_state()
Dlapi.c957 ci->u.c.old_allowhook = L->allowhook; in lua_pcallk()