
Functions | |
| static int | vlclua_stream_read (lua_State *) |
| static int | vlclua_stream_readline (lua_State *) |
| static int | vlclua_stream_delete (lua_State *) |
| static int | vlclua_stream_add_filter (lua_State *L) |
| static int | vlclua_stream_new_inner (lua_State *L, stream_t *p_stream) |
| static int | vlclua_stream_new (lua_State *L) |
| static int | vlclua_memory_stream_new (lua_State *L) |
| void | luaopen_stream (lua_State *L) |
Variables | |
| static const luaL_Reg | vlclua_stream_reg [] |
| void luaopen_stream | ( | lua_State * | L | ) |
References vlclua_memory_stream_new(), and vlclua_stream_new().
Referenced by GetLuaState(), init(), Open_LuaIntf(), Open_LuaSD(), and probe_luascript().
| static int vlclua_memory_stream_new | ( | lua_State * | L | ) | [static] |
References p_stream, strdup(), stream_MemoryNew, vlclua_get_this(), and vlclua_stream_new_inner().
Referenced by luaopen_stream().
| static int vlclua_stream_add_filter | ( | lua_State * | L | ) | [static] |
References msg_Dbg, stream_FilterNew(), vlclua_error, and vlclua_get_this().
| static int vlclua_stream_delete | ( | lua_State * | L | ) | [static] |
| static int vlclua_stream_new | ( | lua_State * | L | ) | [static] |
References p_stream, stream_UrlNew, vlclua_get_this(), and vlclua_stream_new_inner().
Referenced by luaopen_stream().
References vlclua_stream_delete(), and vlclua_stream_reg.
Referenced by vlclua_memory_stream_new(), and vlclua_stream_new().
| static int vlclua_stream_read | ( | lua_State * | L | ) | [static] |
References stream_Read(), and vlclua_error.
| static int vlclua_stream_readline | ( | lua_State * | L | ) | [static] |
References stream_ReadLine().
const luaL_Reg vlclua_stream_reg[] [static] |
Initial value:
{
{ "read", vlclua_stream_read },
{ "readline", vlclua_stream_readline },
{ "addfilter", vlclua_stream_add_filter },
{ NULL, NULL }
}
Referenced by vlclua_stream_new_inner().
1.5.6