RetroArch
Classes | Macros | Typedefs | Functions
lauxlib.c File Reference
#include "lprefix.h"
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "lua.h"
#include "lauxlib.h"
Include dependency graph for lauxlib.c:

Classes

struct  UBox
 
struct  LoadF
 
struct  LoadS
 

Macros

#define lauxlib_c
 
#define LUA_LIB
 
#define LEVELS1   10 /* size of the first part of the stack */
 
#define LEVELS2   11 /* size of the second part of the stack */
 
#define l_inspectstat(stat, what)   /* no op */
 
#define buffonstack(B)   ((B)->b != (B)->initb)
 
#define freelist   0
 

Typedefs

typedef struct UBox UBox
 
typedef struct LoadF LoadF
 
typedef struct LoadS LoadS
 

Functions

static int findfield (lua_State *L, int objidx, int level)
 
static int pushglobalfuncname (lua_State *L, lua_Debug *ar)
 
static void pushfuncname (lua_State *L, lua_Debug *ar)
 
static int lastlevel (lua_State *L)
 
LUALIB_API void luaL_traceback (lua_State *L, lua_State *L1, const char *msg, int level)
 
LUALIB_API int luaL_argerror (lua_State *L, int arg, const char *extramsg)
 
static int typeerror (lua_State *L, int arg, const char *tname)
 
static void tag_error (lua_State *L, int arg, int tag)
 
LUALIB_API void luaL_where (lua_State *L, int level)
 
LUALIB_API int luaL_error (lua_State *L, const char *fmt,...)
 
LUALIB_API int luaL_fileresult (lua_State *L, int stat, const char *fname)
 
LUALIB_API int luaL_execresult (lua_State *L, int stat)
 
LUALIB_API int luaL_newmetatable (lua_State *L, const char *tname)
 
LUALIB_API void luaL_setmetatable (lua_State *L, const char *tname)
 
LUALIB_API voidluaL_testudata (lua_State *L, int ud, const char *tname)
 
LUALIB_API voidluaL_checkudata (lua_State *L, int ud, const char *tname)
 
LUALIB_API int luaL_checkoption (lua_State *L, int arg, const char *def, const char *const lst[])
 
LUALIB_API void luaL_checkstack (lua_State *L, int space, const char *msg)
 
LUALIB_API void luaL_checktype (lua_State *L, int arg, int t)
 
LUALIB_API void luaL_checkany (lua_State *L, int arg)
 
LUALIB_API const char * luaL_checklstring (lua_State *L, int arg, size_t *len)
 
LUALIB_API const char * luaL_optlstring (lua_State *L, int arg, const char *def, size_t *len)
 
LUALIB_API lua_Number luaL_checknumber (lua_State *L, int arg)
 
LUALIB_API lua_Number luaL_optnumber (lua_State *L, int arg, lua_Number def)
 
static void interror (lua_State *L, int arg)
 
LUALIB_API lua_Integer luaL_checkinteger (lua_State *L, int arg)
 
LUALIB_API lua_Integer luaL_optinteger (lua_State *L, int arg, lua_Integer def)
 
static voidresizebox (lua_State *L, int idx, size_t newsize)
 
static int boxgc (lua_State *L)
 
static voidnewbox (lua_State *L, size_t newsize)
 
LUALIB_API char * luaL_prepbuffsize (luaL_Buffer *B, size_t sz)
 
LUALIB_API void luaL_addlstring (luaL_Buffer *B, const char *s, size_t l)
 
LUALIB_API void luaL_addstring (luaL_Buffer *B, const char *s)
 
LUALIB_API void luaL_pushresult (luaL_Buffer *B)
 
LUALIB_API void luaL_pushresultsize (luaL_Buffer *B, size_t sz)
 
LUALIB_API void luaL_addvalue (luaL_Buffer *B)
 
LUALIB_API void luaL_buffinit (lua_State *L, luaL_Buffer *B)
 
LUALIB_API char * luaL_buffinitsize (lua_State *L, luaL_Buffer *B, size_t sz)
 
LUALIB_API int luaL_ref (lua_State *L, int t)
 
LUALIB_API void luaL_unref (lua_State *L, int t, int ref)
 
static const char * getF (lua_State *L, void *ud, size_t *size)
 
static int errfile (lua_State *L, const char *what, int fnameindex)
 
static int skipBOM (LoadF *lf)
 
static int skipcomment (LoadF *lf, int *cp)
 
LUALIB_API int luaL_loadfilex (lua_State *L, const char *filename, const char *mode)
 
static const char * getS (lua_State *L, void *ud, size_t *size)
 
LUALIB_API int luaL_loadbufferx (lua_State *L, const char *buff, size_t size, const char *name, const char *mode)
 
LUALIB_API int luaL_loadstring (lua_State *L, const char *s)
 
LUALIB_API int luaL_getmetafield (lua_State *L, int obj, const char *event)
 
LUALIB_API int luaL_callmeta (lua_State *L, int obj, const char *event)
 
LUALIB_API lua_Integer luaL_len (lua_State *L, int idx)
 
LUALIB_API const char * luaL_tolstring (lua_State *L, int idx, size_t *len)
 
LUALIB_API void luaL_setfuncs (lua_State *L, const luaL_Reg *l, int nup)
 
LUALIB_API int luaL_getsubtable (lua_State *L, int idx, const char *fname)
 
LUALIB_API void luaL_requiref (lua_State *L, const char *modname, lua_CFunction openf, int glb)
 
LUALIB_API const char * luaL_gsub (lua_State *L, const char *s, const char *p, const char *r)
 
static voidl_alloc (void *ud, void *ptr, size_t osize, size_t nsize)
 
static int panic (lua_State *L)
 
LUALIB_API lua_StateluaL_newstate (void)
 
LUALIB_API void luaL_checkversion_ (lua_State *L, lua_Number ver, size_t sz)
 

Macro Definition Documentation

◆ buffonstack

#define buffonstack (   B)    ((B)->b != (B)->initb)

◆ freelist

#define freelist   0

◆ l_inspectstat

#define l_inspectstat (   stat,
  what 
)    /* no op */

◆ lauxlib_c

#define lauxlib_c

◆ LEVELS1

#define LEVELS1   10 /* size of the first part of the stack */

◆ LEVELS2

#define LEVELS2   11 /* size of the second part of the stack */

◆ LUA_LIB

#define LUA_LIB

Typedef Documentation

◆ LoadF

typedef struct LoadF LoadF

◆ LoadS

typedef struct LoadS LoadS

◆ UBox

typedef struct UBox UBox

Function Documentation

◆ boxgc()

static int boxgc ( lua_State L)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ errfile()

static int errfile ( lua_State L,
const char *  what,
int  fnameindex 
)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ findfield()

static int findfield ( lua_State L,
int  objidx,
int  level 
)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getF()

static const char* getF ( lua_State L,
void ud,
size_t *  size 
)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getS()

static const char* getS ( lua_State L,
void ud,
size_t *  size 
)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ interror()

static void interror ( lua_State L,
int  arg 
)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ l_alloc()

static void* l_alloc ( void ud,
void ptr,
size_t  osize,
size_t  nsize 
)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ lastlevel()

static int lastlevel ( lua_State L)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_addlstring()

LUALIB_API void luaL_addlstring ( luaL_Buffer B,
const char *  s,
size_t  l 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_addstring()

LUALIB_API void luaL_addstring ( luaL_Buffer B,
const char *  s 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_addvalue()

LUALIB_API void luaL_addvalue ( luaL_Buffer B)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_argerror()

LUALIB_API int luaL_argerror ( lua_State L,
int  arg,
const char *  extramsg 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_buffinit()

LUALIB_API void luaL_buffinit ( lua_State L,
luaL_Buffer B 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_buffinitsize()

LUALIB_API char* luaL_buffinitsize ( lua_State L,
luaL_Buffer B,
size_t  sz 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_callmeta()

LUALIB_API int luaL_callmeta ( lua_State L,
int  obj,
const char *  event 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_checkany()

LUALIB_API void luaL_checkany ( lua_State L,
int  arg 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_checkinteger()

LUALIB_API lua_Integer luaL_checkinteger ( lua_State L,
int  arg 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_checklstring()

LUALIB_API const char* luaL_checklstring ( lua_State L,
int  arg,
size_t *  len 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_checknumber()

LUALIB_API lua_Number luaL_checknumber ( lua_State L,
int  arg 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_checkoption()

LUALIB_API int luaL_checkoption ( lua_State L,
int  arg,
const char *  def,
const char *const  lst[] 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_checkstack()

LUALIB_API void luaL_checkstack ( lua_State L,
int  space,
const char *  msg 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_checktype()

LUALIB_API void luaL_checktype ( lua_State L,
int  arg,
int  t 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_checkudata()

LUALIB_API void* luaL_checkudata ( lua_State L,
int  ud,
const char *  tname 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_checkversion_()

LUALIB_API void luaL_checkversion_ ( lua_State L,
lua_Number  ver,
size_t  sz 
)
Here is the call graph for this function:

◆ luaL_error()

LUALIB_API int luaL_error ( lua_State L,
const char *  fmt,
  ... 
)
Here is the call graph for this function:

◆ luaL_execresult()

LUALIB_API int luaL_execresult ( lua_State L,
int  stat 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_fileresult()

LUALIB_API int luaL_fileresult ( lua_State L,
int  stat,
const char *  fname 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_getmetafield()

LUALIB_API int luaL_getmetafield ( lua_State L,
int  obj,
const char *  event 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_getsubtable()

LUALIB_API int luaL_getsubtable ( lua_State L,
int  idx,
const char *  fname 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_gsub()

LUALIB_API const char* luaL_gsub ( lua_State L,
const char *  s,
const char *  p,
const char *  r 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_len()

LUALIB_API lua_Integer luaL_len ( lua_State L,
int  idx 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_loadbufferx()

LUALIB_API int luaL_loadbufferx ( lua_State L,
const char *  buff,
size_t  size,
const char *  name,
const char *  mode 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_loadfilex()

LUALIB_API int luaL_loadfilex ( lua_State L,
const char *  filename,
const char *  mode 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_loadstring()

LUALIB_API int luaL_loadstring ( lua_State L,
const char *  s 
)
Here is the call graph for this function:

◆ luaL_newmetatable()

LUALIB_API int luaL_newmetatable ( lua_State L,
const char *  tname 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_newstate()

LUALIB_API lua_State* luaL_newstate ( void  )
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_optinteger()

LUALIB_API lua_Integer luaL_optinteger ( lua_State L,
int  arg,
lua_Integer  def 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_optlstring()

LUALIB_API const char* luaL_optlstring ( lua_State L,
int  arg,
const char *  def,
size_t *  len 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_optnumber()

LUALIB_API lua_Number luaL_optnumber ( lua_State L,
int  arg,
lua_Number  def 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_prepbuffsize()

LUALIB_API char* luaL_prepbuffsize ( luaL_Buffer B,
size_t  sz 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_pushresult()

LUALIB_API void luaL_pushresult ( luaL_Buffer B)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_pushresultsize()

LUALIB_API void luaL_pushresultsize ( luaL_Buffer B,
size_t  sz 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_ref()

LUALIB_API int luaL_ref ( lua_State L,
int  t 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_requiref()

LUALIB_API void luaL_requiref ( lua_State L,
const char *  modname,
lua_CFunction  openf,
int  glb 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_setfuncs()

LUALIB_API void luaL_setfuncs ( lua_State L,
const luaL_Reg l,
int  nup 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_setmetatable()

LUALIB_API void luaL_setmetatable ( lua_State L,
const char *  tname 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_testudata()

LUALIB_API void* luaL_testudata ( lua_State L,
int  ud,
const char *  tname 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_tolstring()

LUALIB_API const char* luaL_tolstring ( lua_State L,
int  idx,
size_t *  len 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_traceback()

LUALIB_API void luaL_traceback ( lua_State L,
lua_State L1,
const char *  msg,
int  level 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ luaL_unref()

LUALIB_API void luaL_unref ( lua_State L,
int  t,
int  ref 
)
Here is the call graph for this function:

◆ luaL_where()

LUALIB_API void luaL_where ( lua_State L,
int  level 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ newbox()

static void* newbox ( lua_State L,
size_t  newsize 
)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ panic()

static int panic ( lua_State L)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ pushfuncname()

static void pushfuncname ( lua_State L,
lua_Debug ar 
)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ pushglobalfuncname()

static int pushglobalfuncname ( lua_State L,
lua_Debug ar 
)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ resizebox()

static void* resizebox ( lua_State L,
int  idx,
size_t  newsize 
)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ skipBOM()

static int skipBOM ( LoadF lf)
static
Here is the caller graph for this function:

◆ skipcomment()

static int skipcomment ( LoadF lf,
int *  cp 
)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ tag_error()

static void tag_error ( lua_State L,
int  arg,
int  tag 
)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ typeerror()

static int typeerror ( lua_State L,
int  arg,
const char *  tname 
)
static
Here is the call graph for this function:
Here is the caller graph for this function: