Lines Matching defs:L

59 #define l_pushtime(L,t)		lua_pushinteger(L,(lua_Integer)(t))  argument
60 #define l_gettime(L,arg) luaL_checkinteger(L, arg) argument
65 #define l_pushtime(L,t) lua_pushnumber(L,(lua_Number)(t)) argument
66 #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()
272 static const char *checkoption (lua_State *L, const char *conv, in checkoption()
291 static time_t l_checktime (lua_State *L, int arg) { in l_checktime()
302 static int os_date (lua_State *L) { in os_date()
344 static int os_time (lua_State *L) { in os_time()
370 static int os_difftime (lua_State *L) { in os_difftime()
380 static int os_setlocale (lua_State *L) { in os_setlocale()
392 static int os_exit (lua_State *L) { in os_exit()
424 LUAMOD_API int luaopen_os (lua_State *L) { in luaopen_os()