Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzcp_iter.c148 lua_pushcclosure(state, &zcp_clones_iter, 2); in zcp_clones_list()
231 lua_pushcclosure(state, &zcp_snapshots_iter, 2); in zcp_snapshots_list()
333 lua_pushcclosure(state, &zcp_children_iter, 2); in zcp_children_list()
413 lua_pushcclosure(state, &zcp_props_iter, 2); in zcp_props_list()
525 lua_pushcclosure(state, &zcp_list_func, 1); in zcp_load_list_lib()
H A Dzcp.c1089 lua_pushcclosure(state, zcp_debug_info.func, 0); in zcp_eval()
1091 lua_pushcclosure(state, zcp_exists_info.func, 0); in zcp_eval()
H A Dzcp_synctask.c551 lua_pushcclosure(state, &zcp_synctask_wrapper, 2); in zcp_load_synctask_lib()
H A Dzcp_get.c862 lua_pushcclosure(state, zcp_get_prop_info.func, 0); in zcp_load_get_lib()
/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dlcorolib.c93 lua_pushcclosure(L, luaB_auxwrap, 1); in luaB_cowrap()
H A Dlua.h213 LUA_API void (lua_pushcclosure) (lua_State *L, lua_CFunction fn, int n); variable
328 #define lua_pushcfunction(L,f) lua_pushcclosure(L, (f), 0)
H A Dlauxlib.c712 lua_pushcclosure(L, l->func, nup); /* closure with those upvalues */ in luaL_setfuncs()
H A Dlstrlib.c703 lua_pushcclosure(L, gmatch_aux, 3); in str_gmatch()
H A Dlapi.c554 LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) { in lua_pushcclosure() function