HomeSort by relevance Sort by last modified time
    Searched refs:callstatus (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/skia/third_party/lua/src/
ldo.c 231 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 & ~(CIST_YPCALL | CIST_STAT)) | CIST_YIELDED
    [all...]
lstate.h 74 lu_byte callstatus; member in struct:CallInfo
106 #define isLua(ci) ((ci)->callstatus & CIST_LUA)
lvm.c 66 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 */
ldebug.c 241 ar->istailcall = (ci) ? ci->callstatus & CIST_TAIL : 0;
246 if (ci && !(ci->callstatus & CIST_TAIL) && isLua(ci->previous))
lstate.c 145 ci->callstatus = 0;
lapi.c 881 if (L->ci->callstatus & CIST_YIELDED) {
961 ci->callstatus |= CIST_YPCALL;
963 ci->callstatus &= ~CIST_YPCALL;

Completed in 390 milliseconds