Searched refs:callstatus (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dldo.c231 ci->callstatus |= CIST_HOOKED;
239 ci->callstatus &= ~CIST_HOOKED;
249 ci->callstatus |= CIST_TAIL;
313 ci->callstatus = 0;
340 ci->callstatus = CIST_LUA;
406 if (ci->callstatus & CIST_YPCALL) { /* was inside a pcall? */
407 ci->callstatus &= ~CIST_YPCALL; /* finish 'lua_pcall' */
413 if (!(ci->callstatus & CIST_STAT)) /* no call status? */
416 ci->callstatus = (ci->callstatus
[all...]
H A Dlstate.h74 lu_byte callstatus; member in struct:CallInfo
106 #define isLua(ci) ((ci)->callstatus & CIST_LUA)
H A Dlvm.c66 if (ci->callstatus & CIST_HOOKYIELD) { /* called hook last time? */
67 ci->callstatus &= ~CIST_HOOKYIELD; /* erase mark */
86 ci->callstatus |= CIST_HOOKYIELD; /* mark that it yielded */
719 ci->callstatus |= CIST_REENTRY;
746 oci->callstatus |= CIST_TAIL; /* function was tail called */
757 if (!(ci->callstatus & CIST_REENTRY)) /* 'ci' still the called one */
H A Dldebug.c241 ar->istailcall = (ci) ? ci->callstatus & CIST_TAIL : 0;
246 if (ci && !(ci->callstatus & CIST_TAIL) && isLua(ci->previous))
H A Dlstate.c145 ci->callstatus = 0;
H A Dlapi.c881 if (L->ci->callstatus & CIST_YIELDED) {
961 ci->callstatus |= CIST_YPCALL;
963 ci->callstatus &= ~CIST_YPCALL;

Completed in 165 milliseconds