Lines Matching defs:L

30 static int pushresult (lua_State *L, int i, const char *filename) {  in pushresult()
54 #define tofilep(L) ((FILE **)luaL_checkudata(L, 1, LUA_FILEHANDLE)) argument
55 #define tofileProxy(L) ((Lua::LuaFileProxy **)luaL_checkudata(L, 1, LUA_FILEHANDLE)) argument
57 static int io_type (lua_State *L) { in io_type()
74 static Lua::LuaFileProxy *tofile (lua_State *L) { in tofile()
87 static Lua::LuaFileProxy **newfile (lua_State *L) { in newfile()
99 static int io_noclose (lua_State *L) { in io_noclose()
109 static int io_pclose (lua_State *L) { in io_pclose()
123 static int io_fclose (lua_State *L) { in io_fclose()
141 static int io_close (lua_State *L) { in io_close()
153 static int io_gc (lua_State *L) { in io_gc()
163 static int io_tostring (lua_State *L) { in io_tostring()
176 static int io_open (lua_State *L) { in io_open()
189 static int io_popen (lua_State *L) { in io_popen()
201 static int io_tmpfile (lua_State *L) { in io_tmpfile()
237 static int io_input (lua_State *L) { in io_input()
243 static int io_output (lua_State *L) { in io_output()
252 static void aux_lines (lua_State *L, int idx, int toclose) { in aux_lines()
259 static int f_lines (lua_State *L) { in f_lines()
266 static int io_lines (lua_State *L) { in io_lines()
399 static int io_read (lua_State *L) { in io_read()
405 static int f_read (lua_State *L) { in f_read()
411 static int io_readline (lua_State *L) { in io_readline()
436 static int g_write (lua_State *L, Lua::LuaFileProxy *f, int arg) { in g_write()
458 static int io_write (lua_State *L) { in io_write()
464 static int f_write (lua_State *L) { in f_write()
469 static int f_seek (lua_State *L) { in f_seek()
488 static int f_setvbuf (lua_State *L) { in f_setvbuf()
503 static int io_flush (lua_State *L) { in io_flush()
509 static int f_flush (lua_State *L) { in f_flush()
545 static void createmeta (lua_State *L) { in createmeta()
565 static void newfenv (lua_State *L, lua_CFunction cls) { in newfenv()
572 LUALIB_API int luaopen_io (lua_State *L) { in luaopen_io()