Home
last modified time | relevance | path

Searched refs:luaL_optstring (Results 1 – 7 of 7) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlbaselib.c263 const char *fname = luaL_optstring(L, 1, NULL); in luaB_loadfile()
264 const char *mode = luaL_optstring(L, 2, NULL); in luaB_loadfile()
313 const char *mode = luaL_optstring(L, 3, "bt"); in luaB_load()
316 const char *chunkname = luaL_optstring(L, 2, s); in luaB_load()
320 const char *chunkname = luaL_optstring(L, 2, "=(load)"); in luaB_load()
337 const char *fname = luaL_optstring(L, 1, NULL); in luaB_dofile()
348 return luaL_error(L, "%s", luaL_optstring(L, 2, "assertion failed!")); in luaB_assert()
Dloslib.c81 const char *cmd = luaL_optstring(L, 1, NULL); in os_execute()
196 const char *s = luaL_optstring(L, 1, "%c"); in os_date()
280 const char *l = luaL_optstring(L, 1, NULL); in os_setlocale()
Dloadlib.c375 luaL_optstring(L, 3, "."), in ll_searchpath()
376 luaL_optstring(L, 4, LUA_DIRSEP)); in ll_searchpath()
Dliolib.c228 const char *mode = luaL_optstring(L, 2, "r"); in io_open()
248 const char *mode = luaL_optstring(L, 2, "r"); in io_popen()
Dldblib.c116 const char *options = luaL_optstring(L, arg+2, "flnStu"); in db_getinfo()
Dlauxlib.c322 const char *name = (def) ? luaL_optstring(L, narg, def) : in luaL_checkoption()
/device/linaro/bootloader/edk2/StdLib/Include/Lua/
Dlauxlib.h116 #define luaL_optstring(L,n,d) (luaL_optlstring(L, (n), (d), NULL)) macro