Home
last modified time | relevance | path

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

/external/lua/src/
Dldo.c255 if (hook && L->allowhook) { /* make sure there is a hook */ in luaD_hook()
266 L->allowhook = 0; /* cannot call hooks inside a hook */ in luaD_hook()
271 lua_assert(!L->allowhook); in luaD_hook()
272 L->allowhook = 1; in luaD_hook()
590 L->allowhook = getoah(ci->callstatus); /* restore original 'allowhook' */ in recover()
725 lu_byte old_allowhooks = L->allowhook; in luaD_pcall()
735 L->allowhook = old_allowhooks; in luaD_pcall()
Dlstate.h201 lu_byte allowhook; member
Dlgc.c815 lu_byte oldah = L->allowhook; in GCTM()
817 L->allowhook = 0; /* stop debug hooks during GC metamethod */ in GCTM()
825 L->allowhook = oldah; /* restore hooks */ in GCTM()
Dlstate.c233 L->allowhook = 1; in preinit_thread()
Dlapi.c979 setoah(ci->callstatus, L->allowhook); /* save value of 'allowhook' */ in lua_pcallk()