Home
last modified time | relevance | path

Searched refs:luaD_rawrunprotected (Results 1 – 9 of 9) sorted by relevance

/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
Dldo.h43 LUAI_FUNC int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud);
Dldo.c135 int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud) { in luaD_rawrunprotected() function
553 status = luaD_rawrunprotected(L, resume_cb, L->top - nargs); in lua_resume()
559 status = luaD_rawrunprotected(L, unroll, NULL); /* run continuation */ in lua_resume()
613 status = luaD_rawrunprotected(L, func, u); in luaD_pcall()
Dlstate.c306 if (luaD_rawrunprotected(L, f_luaopen, NULL) != LUA_OK) { in lua_newstate()
Dlapi.c102 res = (luaD_rawrunprotected(L, &growstack, &size) == LUA_OK); in lua_checkstack()
/freebsd-12-stable/contrib/lua/src/
Dldo.h55 LUAI_FUNC int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud);
Dldo.c136 int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud) { in luaD_rawrunprotected() function
664 status = luaD_rawrunprotected(L, resume, &nargs); in lua_resume()
670 status = luaD_rawrunprotected(L, unroll, &status); in lua_resume()
729 status = luaD_rawrunprotected(L, func, u); in luaD_pcall()
Dlstate.c332 if (luaD_rawrunprotected(L, f_luaopen, NULL) != LUA_OK) { in lua_newstate()
Dltable.c359 if (luaD_rawrunprotected(L, auxsetnode, &asn) != LUA_OK) { /* mem. error? */ in luaH_resize()
Dlapi.c109 res = (luaD_rawrunprotected(L, &growstack, &n) == LUA_OK); in lua_checkstack()