Home
last modified time | relevance | path

Searched refs:lua_next (Results 1 – 7 of 7) sorted by relevance

/netbsd-src/sys/modules/lua/
H A Dlua.c220 LIST_REMOVE(s, lua_next); in lua_detach()
306 LIST_FOREACH(s, &lua_states, lua_next) in luaioctl()
310 LIST_FOREACH(s, &lua_states, lua_next) { in luaioctl()
320 LIST_FOREACH(s, &lua_states, lua_next) { in luaioctl()
343 LIST_FOREACH(s, &lua_states, lua_next) in luaioctl()
374 LIST_FOREACH(s, &lua_states, lua_next) in luaioctl()
409 LIST_FOREACH(s, &lua_states, lua_next) in luaioctl()
529 LIST_FOREACH(s, &lua_states, lua_next) in lua_require()
707 LIST_INSERT_HEAD(&lua_states, s, lua_next); in klua_newstate()
752 LIST_FOREACH_SAFE(s, &lua_states, lua_next, ns) in klua_close()
[all …]
H A Dluavar.h48 LIST_ENTRY(lua_state) lua_next;
/netbsd-src/external/bsd/lutok/dist/
H A Dstate.cpp89 const int more = lua_next(state, -2) != 0; in protected_next()
/netbsd-src/external/mit/lua/dist/src/
H A Dlbaselib.c274 if (lua_next(L, 1)) in luaB_next()
H A Dlua.h374 LUA_API int (lua_next) (lua_State *L, int idx); variable
H A Dlauxlib.c62 while (lua_next(L, -2)) { /* for each pair in table */ in findfield()
H A Dlapi.c1263 LUA_API int lua_next (lua_State *L, int idx) { in lua_next() function