Lines Matching refs:lua_State
61 typedef struct lua_State lua_State; typedef
110 typedef int (*lua_CFunction) (lua_State *L);
115 typedef int (*lua_KFunction) (lua_State *L, int status, lua_KContext ctx);
121 typedef const char * (*lua_Reader) (lua_State *L, void *ud, size_t *sz);
123 typedef int (*lua_Writer) (lua_State *L, const void *p, size_t sz, void *ud);
147 typedef void (*lua_Hook) (lua_State *L, lua_Debug *ar);
167 LUA_API lua_State *(lua_newstate) (lua_Alloc f, void *ud);
168 LUA_API void (lua_close) (lua_State *L);
169 LUA_API lua_State *(lua_newthread) (lua_State *L);
170 LUA_API int (lua_closethread) (lua_State *L, lua_State *from);
171 LUA_API int (lua_resetthread) (lua_State *L); /* Deprecated! */
173 LUA_API lua_CFunction (lua_atpanic) (lua_State *L, lua_CFunction panicf);
176 LUA_API lua_Number (lua_version) (lua_State *L);
182 LUA_API int (lua_absindex) (lua_State *L, int idx);
183 LUA_API int (lua_gettop) (lua_State *L);
184 LUA_API void (lua_settop) (lua_State *L, int idx);
185 LUA_API void (lua_pushvalue) (lua_State *L, int idx);
186 LUA_API void (lua_rotate) (lua_State *L, int idx, int n);
187 LUA_API void (lua_copy) (lua_State *L, int fromidx, int toidx);
188 LUA_API int (lua_checkstack) (lua_State *L, int n);
190 LUA_API void (lua_xmove) (lua_State *from, lua_State *to, int n);
197 LUA_API int (lua_isnumber) (lua_State *L, int idx);
198 LUA_API int (lua_isstring) (lua_State *L, int idx);
199 LUA_API int (lua_iscfunction) (lua_State *L, int idx);
200 LUA_API int (lua_isinteger) (lua_State *L, int idx);
201 LUA_API int (lua_isuserdata) (lua_State *L, int idx);
202 LUA_API int (lua_type) (lua_State *L, int idx);
203 LUA_API const char *(lua_typename) (lua_State *L, int tp);
206 LUA_API lua_Number (lua_tonumberx) (lua_State *L, int idx, int *isnum);
210 LUA_API lua_Integer (lua_tointegerx) (lua_State *L, int idx, int *isnum);
211 LUA_API int (lua_toboolean) (lua_State *L, int idx);
212 LUA_API const char *(lua_tolstring) (lua_State *L, int idx, size_t *len);
213 LUA_API lua_Unsigned (lua_rawlen) (lua_State *L, int idx);
214 LUA_API lua_CFunction (lua_tocfunction) (lua_State *L, int idx);
215 LUA_API void *(lua_touserdata) (lua_State *L, int idx);
216 LUA_API lua_State *(lua_tothread) (lua_State *L, int idx);
217 LUA_API const void *(lua_topointer) (lua_State *L, int idx);
250 LUA_API void (lua_arith) (lua_State *L, int op);
256 LUA_API int (lua_rawequal) (lua_State *L, int idx1, int idx2);
257 LUA_API int (lua_compare) (lua_State *L, int idx1, int idx2, int op);
263 LUA_API void (lua_pushnil) (lua_State *L);
265 LUA_API void (lua_pushnumber) (lua_State *L, lua_Number n);
269 LUA_API void (lua_pushinteger) (lua_State *L, lua_Integer n);
270 LUA_API const char *(lua_pushlstring) (lua_State *L, const char *s, size_t len);
271 LUA_API const char *(lua_pushstring) (lua_State *L, const char *s);
272 LUA_API const char *(lua_pushvfstring) (lua_State *L, const char *fmt,
274 LUA_API const char *(lua_pushfstring) (lua_State *L, const char *fmt, ...);
275 LUA_API void (lua_pushcclosure) (lua_State *L, lua_CFunction fn, int n);
276 LUA_API void (lua_pushboolean) (lua_State *L, int b);
277 LUA_API void (lua_pushlightuserdata) (lua_State *L, void *p);
278 LUA_API int (lua_pushthread) (lua_State *L);
284 LUA_API int (lua_getglobal) (lua_State *L, const char *name);
285 LUA_API int (lua_gettable) (lua_State *L, int idx);
286 LUA_API int (lua_getfield) (lua_State *L, int idx, const char *k);
287 LUA_API int (lua_geti) (lua_State *L, int idx, lua_Integer n);
288 LUA_API int (lua_rawget) (lua_State *L, int idx);
289 LUA_API int (lua_rawgeti) (lua_State *L, int idx, lua_Integer n);
290 LUA_API int (lua_rawgetp) (lua_State *L, int idx, const void *p);
292 LUA_API void (lua_createtable) (lua_State *L, int narr, int nrec);
293 LUA_API void *(lua_newuserdatauv) (lua_State *L, size_t sz, int nuvalue);
294 LUA_API int (lua_getmetatable) (lua_State *L, int objindex);
295 LUA_API int (lua_getiuservalue) (lua_State *L, int idx, int n);
301 LUA_API void (lua_setglobal) (lua_State *L, const char *name);
302 LUA_API void (lua_settable) (lua_State *L, int idx);
303 LUA_API void (lua_setfield) (lua_State *L, int idx, const char *k);
304 LUA_API void (lua_seti) (lua_State *L, int idx, lua_Integer n);
305 LUA_API void (lua_rawset) (lua_State *L, int idx);
306 LUA_API void (lua_rawseti) (lua_State *L, int idx, lua_Integer n);
307 LUA_API void (lua_rawsetp) (lua_State *L, int idx, const void *p);
308 LUA_API int (lua_setmetatable) (lua_State *L, int objindex);
309 LUA_API int (lua_setiuservalue) (lua_State *L, int idx, int n);
315 LUA_API void (lua_callk) (lua_State *L, int nargs, int nresults,
319 LUA_API int (lua_pcallk) (lua_State *L, int nargs, int nresults, int errfunc,
323 LUA_API int (lua_load) (lua_State *L, lua_Reader reader, void *dt,
326 LUA_API int (lua_dump) (lua_State *L, lua_Writer writer, void *data, int strip);
332 LUA_API int (lua_yieldk) (lua_State *L, int nresults, lua_KContext ctx,
334 LUA_API int (lua_resume) (lua_State *L, lua_State *from, int narg,
336 LUA_API int (lua_status) (lua_State *L);
337 LUA_API int (lua_isyieldable) (lua_State *L);
345 LUA_API void (lua_setwarnf) (lua_State *L, lua_WarnFunction f, void *ud);
346 LUA_API void (lua_warning) (lua_State *L, const char *msg, int tocont);
365 LUA_API int (lua_gc) (lua_State *L, int what, ...);
372 LUA_API int (lua_error) (lua_State *L);
374 LUA_API int (lua_next) (lua_State *L, int idx);
376 LUA_API void (lua_concat) (lua_State *L, int n);
377 LUA_API void (lua_len) (lua_State *L, int idx);
379 LUA_API size_t (lua_stringtonumber) (lua_State *L, const char *s);
381 LUA_API lua_Alloc (lua_getallocf) (lua_State *L, void **ud);
382 LUA_API void (lua_setallocf) (lua_State *L, lua_Alloc f, void *ud);
384 LUA_API void (lua_toclose) (lua_State *L, int idx);
385 LUA_API void (lua_closeslot) (lua_State *L, int idx);
480 LUA_API int (lua_getstack) (lua_State *L, int level, lua_Debug *ar);
481 LUA_API int (lua_getinfo) (lua_State *L, const char *what, lua_Debug *ar);
482 LUA_API const char *(lua_getlocal) (lua_State *L, const lua_Debug *ar, int n);
483 LUA_API const char *(lua_setlocal) (lua_State *L, const lua_Debug *ar, int n);
484 LUA_API const char *(lua_getupvalue) (lua_State *L, int funcindex, int n);
485 LUA_API const char *(lua_setupvalue) (lua_State *L, int funcindex, int n);
487 LUA_API void *(lua_upvalueid) (lua_State *L, int fidx, int n);
488 LUA_API void (lua_upvaluejoin) (lua_State *L, int fidx1, int n1,
491 LUA_API void (lua_sethook) (lua_State *L, lua_Hook func, int mask, int count);
492 LUA_API lua_Hook (lua_gethook) (lua_State *L);
493 LUA_API int (lua_gethookmask) (lua_State *L);
494 LUA_API int (lua_gethookcount) (lua_State *L);
496 LUA_API int (lua_setcstacklimit) (lua_State *L, unsigned int limit);