Searched refs:lua_tostring (Results 1 – 8 of 8) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | lua.c | 72 add_history(lua_tostring(L, idx)); /* add it to history */ 137 const char *msg = lua_tostring(L, -1); in report() 151 const char *msg = (lua_type(L, -1) == LUA_TSTRING) ? lua_tostring(L, -1) in finalreport() 161 const char *msg = lua_tostring(L, 1); in traceback() 238 p = lua_tostring(L, -1); in get_prompt() 317 lua_tostring(L, -1))); in dotty()
|
D | loadlib.c | 177 luaL_gsub(L, lua_tostring(L, -1), LUA_EXEC_DIR, buff); in setprogdir() 358 const char *filename = luaL_gsub(L, lua_tostring(L, -1), in searchpath() 391 path = lua_tostring(L, -1); in findfile() 406 lua_tostring(L, 1), filename, lua_tostring(L, -1)); in checkload() 452 filename = findfile(L, lua_tostring(L, -1), "cpath", LUA_CSUBSEP); in searcher_Croot() 492 name, lua_tostring(L, -1)); in findloader()
|
D | ldblib.c | 125 options = lua_tostring(L, -1); in db_getinfo() 353 luai_writestringerror("%s\n", lua_tostring(L, -1)); in db_debug() 362 const char *msg = lua_tostring(L, arg + 1); in db_traceback()
|
D | lauxlib.c | 90 lua_pushfstring(L, "function " LUA_QS, lua_tostring(L, -1)); in pushfuncname() 165 ar.name = (pushglobalfuncname(L, &ar)) ? lua_tostring(L, -1) : "?"; in luaL_argerror() 589 const char *filename = lua_tostring(L, fnameindex) + 1; in errfile() 654 status = lua_load(L, getF, &lf, lua_tostring(L, -1), mode); in luaL_loadfilex() 915 return lua_tostring(L, -1); in luaL_gsub() 932 lua_tostring(L, -1)); in panic()
|
D | luac.c | 144 if (lua_load(L,reader,&i,"=(" PROGNAME ")",NULL)!=LUA_OK) fatal(lua_tostring(L,-1)); in combine() 172 if (luaL_loadfile(L,filename)!=LUA_OK) fatal(lua_tostring(L,-1)); in pmain() 200 if (lua_pcall(L,2,0,0)!=LUA_OK) fatal(lua_tostring(L,-1)); in main()
|
D | liolib.c | 275 const char *filename = lua_tostring(L, 1); in g_iofile() 442 const char *p = lua_tostring(L, n); in g_read() 500 return luaL_error(L, "%s", lua_tostring(L, -n + 1)); in io_readline()
|
D | lbaselib.c | 355 if (lua_type(L, 1) == LUA_TSTRING && *lua_tostring(L, 1) == '#') { in luaB_select()
|
/device/linaro/bootloader/edk2/StdLib/Include/Lua/ |
D | lua.h | 346 #define lua_tostring(L,i) lua_tolstring(L, (i), NULL) macro
|