Lines Matching defs:L
68 #define l_pushtime(L,t) lua_pushinteger(L,(lua_Integer)(t)) argument
69 #define l_gettime(L,arg) luaL_checkinteger(L, arg) argument
74 #define l_pushtime(L,t) lua_pushnumber(L,(lua_Number)(t)) argument
75 #define l_gettime(L,arg) luaL_checknumber(L, arg) argument
142 static int os_execute (lua_State *L) { in os_execute()
156 static int os_remove (lua_State *L) { in os_remove()
162 static int os_rename (lua_State *L) { in os_rename()
169 static int os_tmpname (lua_State *L) { in os_tmpname()
180 static int os_getenv (lua_State *L) { in os_getenv()
186 static int os_clock (lua_State *L) { in os_clock()
209 static void setfield (lua_State *L, const char *key, int value, int delta) { in setfield()
219 static void setboolfield (lua_State *L, const char *key, int value) { in setboolfield()
230 static void setallfields (lua_State *L, struct tm *stm) { in setallfields()
243 static int getboolfield (lua_State *L, const char *key) { in getboolfield()
251 static int getfield (lua_State *L, const char *key, int d, int delta) { in getfield()
274 static const char *checkoption (lua_State *L, const char *conv, in checkoption()
293 static time_t l_checktime (lua_State *L, int arg) { in l_checktime()
304 static int os_date (lua_State *L) { in os_date()
346 static int os_time (lua_State *L) { in os_time()
372 static int os_difftime (lua_State *L) { in os_difftime()
382 static int os_setlocale (lua_State *L) { in os_setlocale()
394 static int os_exit (lua_State *L) { in os_exit()
426 LUAMOD_API int luaopen_os (lua_State *L) { in luaopen_os()