Lines Matching refs:lua_State

54 typedef struct lua_State lua_State;
56 typedef int (*lua_CFunction) (lua_State *L);
62 typedef const char * (*lua_Reader) (lua_State *L, void *ud, size_t *sz);
64 typedef int (*lua_Writer) (lua_State *L, const void* p, size_t sz, void* ud);
131 LUA_API lua_State *(lua_newstate) (lua_Alloc f, void *ud);
132 LUA_API void (lua_close) (lua_State *L);
133 LUA_API lua_State *(lua_newthread) (lua_State *L);
135 LUA_API lua_CFunction (lua_atpanic) (lua_State *L, lua_CFunction panicf);
138 LUA_API const lua_Number *(lua_version) (lua_State *L);
144 LUA_API int (lua_absindex) (lua_State *L, int idx);
145 LUA_API int (lua_gettop) (lua_State *L);
146 LUA_API void (lua_settop) (lua_State *L, int idx);
147 LUA_API void (lua_pushvalue) (lua_State *L, int idx);
148 LUA_API void (lua_remove) (lua_State *L, int idx);
149 LUA_API void (lua_insert) (lua_State *L, int idx);
150 LUA_API void (lua_replace) (lua_State *L, int idx);
151 LUA_API void (lua_copy) (lua_State *L, int fromidx, int toidx);
152 LUA_API int (lua_checkstack) (lua_State *L, int sz);
154 LUA_API void (lua_xmove) (lua_State *from, lua_State *to, int n);
161 LUA_API int (lua_isnumber) (lua_State *L, int idx);
162 LUA_API int (lua_isstring) (lua_State *L, int idx);
163 LUA_API int (lua_iscfunction) (lua_State *L, int idx);
164 LUA_API int (lua_isuserdata) (lua_State *L, int idx);
165 LUA_API int (lua_type) (lua_State *L, int idx);
166 LUA_API const char *(lua_typename) (lua_State *L, int tp);
168 LUA_API lua_Number (lua_tonumberx) (lua_State *L, int idx, int *isnum);
169 LUA_API lua_Integer (lua_tointegerx) (lua_State *L, int idx, int *isnum);
170 LUA_API lua_Unsigned (lua_tounsignedx) (lua_State *L, int idx, int *isnum);
171 LUA_API int (lua_toboolean) (lua_State *L, int idx);
172 LUA_API const char *(lua_tolstring) (lua_State *L, int idx, size_t *len);
173 LUA_API size_t (lua_rawlen) (lua_State *L, int idx);
174 LUA_API lua_CFunction (lua_tocfunction) (lua_State *L, int idx);
175 LUA_API void *(lua_touserdata) (lua_State *L, int idx);
176 LUA_API lua_State *(lua_tothread) (lua_State *L, int idx);
177 LUA_API const void *(lua_topointer) (lua_State *L, int idx);
192 LUA_API void (lua_arith) (lua_State *L, int op);
198 LUA_API int (lua_rawequal) (lua_State *L, int idx1, int idx2);
199 LUA_API int (lua_compare) (lua_State *L, int idx1, int idx2, int op);
205 LUA_API void (lua_pushnil) (lua_State *L);
206 LUA_API void (lua_pushnumber) (lua_State *L, lua_Number n);
207 LUA_API void (lua_pushinteger) (lua_State *L, lua_Integer n);
208 LUA_API void (lua_pushunsigned) (lua_State *L, lua_Unsigned n);
209 LUA_API const char *(lua_pushlstring) (lua_State *L, const char *s, size_t l);
210 LUA_API const char *(lua_pushstring) (lua_State *L, const char *s);
211 LUA_API const char *(lua_pushvfstring) (lua_State *L, const char *fmt,
213 LUA_API const char *(lua_pushfstring) (lua_State *L, const char *fmt, ...);
214 LUA_API void (lua_pushcclosure) (lua_State *L, lua_CFunction fn, int n);
215 LUA_API void (lua_pushboolean) (lua_State *L, int b);
216 LUA_API void (lua_pushlightuserdata) (lua_State *L, void *p);
217 LUA_API int (lua_pushthread) (lua_State *L);
223 LUA_API void (lua_getglobal) (lua_State *L, const char *var);
224 LUA_API void (lua_gettable) (lua_State *L, int idx);
225 LUA_API void (lua_getfield) (lua_State *L, int idx, const char *k);
226 LUA_API void (lua_rawget) (lua_State *L, int idx);
227 LUA_API void (lua_rawgeti) (lua_State *L, int idx, int n);
228 LUA_API void (lua_rawgetp) (lua_State *L, int idx, const void *p);
229 LUA_API void (lua_createtable) (lua_State *L, int narr, int nrec);
230 LUA_API void *(lua_newuserdata) (lua_State *L, size_t sz);
231 LUA_API int (lua_getmetatable) (lua_State *L, int objindex);
232 LUA_API void (lua_getuservalue) (lua_State *L, int idx);
238 LUA_API void (lua_setglobal) (lua_State *L, const char *var);
239 LUA_API void (lua_settable) (lua_State *L, int idx);
240 LUA_API void (lua_setfield) (lua_State *L, int idx, const char *k);
241 LUA_API void (lua_rawset) (lua_State *L, int idx);
242 LUA_API void (lua_rawseti) (lua_State *L, int idx, int n);
243 LUA_API void (lua_rawsetp) (lua_State *L, int idx, const void *p);
244 LUA_API int (lua_setmetatable) (lua_State *L, int objindex);
245 LUA_API void (lua_setuservalue) (lua_State *L, int idx);
251 LUA_API void (lua_callk) (lua_State *L, int nargs, int nresults, int ctx,
255 LUA_API int (lua_getctx) (lua_State *L, int *ctx);
257 LUA_API int (lua_pcallk) (lua_State *L, int nargs, int nresults, int errfunc,
261 LUA_API int (lua_load) (lua_State *L, lua_Reader reader, void *dt,
265 LUA_API int (lua_dump) (lua_State *L, lua_Writer writer, void *data);
271 LUA_API int (lua_yieldk) (lua_State *L, int nresults, int ctx,
274 LUA_API int (lua_resume) (lua_State *L, lua_State *from, int narg);
275 LUA_API int (lua_status) (lua_State *L);
294 LUA_API int (lua_gc) (lua_State *L, int what, int data);
301 LUA_API int (lua_error) (lua_State *L);
303 LUA_API int (lua_next) (lua_State *L, int idx);
305 LUA_API void (lua_concat) (lua_State *L, int n);
306 LUA_API void (lua_len) (lua_State *L, int idx);
308 LUA_API lua_Alloc (lua_getallocf) (lua_State *L, void **ud);
309 LUA_API void (lua_setallocf) (lua_State *L, lua_Alloc f, void *ud);
379 typedef void (*lua_Hook) (lua_State *L, lua_Debug *ar);
382 LUA_API int (lua_getstack) (lua_State *L, int level, lua_Debug *ar);
383 LUA_API int (lua_getinfo) (lua_State *L, const char *what, lua_Debug *ar);
384 LUA_API const char *(lua_getlocal) (lua_State *L, const lua_Debug *ar, int n);
385 LUA_API const char *(lua_setlocal) (lua_State *L, const lua_Debug *ar, int n);
386 LUA_API const char *(lua_getupvalue) (lua_State *L, int funcindex, int n);
387 LUA_API const char *(lua_setupvalue) (lua_State *L, int funcindex, int n);
389 LUA_API void *(lua_upvalueid) (lua_State *L, int fidx, int n);
390 LUA_API void (lua_upvaluejoin) (lua_State *L, int fidx1, int n1,
393 LUA_API int (lua_sethook) (lua_State *L, lua_Hook func, int mask, int count);
394 LUA_API lua_Hook (lua_gethook) (lua_State *L);
395 LUA_API int (lua_gethookmask) (lua_State *L);
396 LUA_API int (lua_gethookcount) (lua_State *L);