| /freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ |
| H A D | zcp_synctask.c | 122 const char *dsname = lua_tostring(state, 1); in zcp_synctask_destroy() 174 const char *dsname = lua_tostring(state, 1); in zcp_synctask_promote() 210 const char *dsname = lua_tostring(state, 1); in zcp_synctask_rollback() 244 const char *dsname = lua_tostring(state, 1); in zcp_synctask_snapshot()
|
| H A D | zcp_iter.c | 123 const char *snapname = lua_tostring(state, 1); in zcp_clones_list() 212 const char *fsname = lua_tostring(state, 1); in zcp_snapshots_list() 313 const char *fsname = lua_tostring(state, 1); in zcp_children_list() 394 const char *dsname = lua_tostring(state, 1); in zcp_props_list() 462 dataset_name = lua_tostring(state, 1); in zcp_system_props_list()
|
| H A D | zcp.c | 159 msg = lua_tostring(state, 1); in zcp_error_handler() 277 key = lua_tostring(state, -2); in zcp_table_to_nvlist() 412 fnvlist_add_string(nvl, key, lua_tostring(state, index)); in zcp_lua_to_nvlist_impl() 673 dbgstring = lua_tostring(state, 1); in zcp_debug() 702 const char *dsname = lua_tostring(state, 1); in zcp_exists() 818 lua_tostring(state, -1)); in zcp_panic_cb() 1116 lua_tostring(state, -1)); in zcp_eval() 1352 "invalid kwarg '%s'", lua_tostring(state, -2)); in zcp_parse_table_args()
|
| H A D | zcp_get.c | 821 dataset_name = lua_tostring(state, 1); in zcp_get_prop() 822 property_name = lua_tostring(state, 2); in zcp_get_prop()
|
| /freebsd-12.1/contrib/lua/src/ |
| H A D | loadlib.c | 177 luaL_gsub(L, lua_tostring(L, -1), LUA_EXEC_DIR, buff); in setprogdir() 444 const char *filename = luaL_gsub(L, lua_tostring(L, -1), in searchpath() 477 path = lua_tostring(L, -1); in findfile() 491 lua_tostring(L, 1), filename, lua_tostring(L, -1)); in checkload() 545 filename = findfile(L, lua_tostring(L, -1), "cpath", LUA_CSUBSEP); in searcher_Croot() 581 luaL_error(L, "module '%s' not found:%s", name, lua_tostring(L, -1)); in findloader()
|
| H A D | lua.c | 168 const char *msg = lua_tostring(L, -1); in report() 180 const char *msg = lua_tostring(L, 1); in msghandler() 276 p = lua_tostring(L, -1); in get_prompt() 333 const char *line = lua_tostring(L, -1); /* original line */ in addreturn() 396 lua_tostring(L, -1))); in l_print()
|
| H A D | lauxlib.c | 78 const char *name = lua_tostring(L, -1); in pushglobalfuncname() 96 lua_pushfstring(L, "function '%s'", lua_tostring(L, -1)); in pushfuncname() 176 ar.name = (pushglobalfuncname(L, &ar)) ? lua_tostring(L, -1) : "?"; in luaL_argerror() 186 typearg = lua_tostring(L, -1); /* use the given type name */ in typeerror() 662 const char *filename = lua_tostring(L, fnameindex) + 1; in errfile() 727 status = lua_load(L, getF, &lf, lua_tostring(L, -1), mode); in luaL_loadfilex() 835 const char *kind = (tt == LUA_TSTRING) ? lua_tostring(L, -1) : in luaL_tolstring() 1004 return lua_tostring(L, -1); in luaL_gsub() 1021 lua_tostring(L, -1)); in panic()
|
| H A D | luac.c | 147 if (lua_load(L,reader,&i,"=(" PROGNAME ")",NULL)!=LUA_OK) fatal(lua_tostring(L,-1)); in combine() 175 if (luaL_loadfile(L,filename)!=LUA_OK) fatal(lua_tostring(L,-1)); in pmain() 203 if (lua_pcall(L,2,0,0)!=LUA_OK) fatal(lua_tostring(L,-1)); in main()
|
| H A D | ldblib.c | 411 lua_writestringerror("%s\n", lua_tostring(L, -1)); in db_debug() 420 const char *msg = lua_tostring(L, arg + 1); in db_traceback()
|
| H A D | liolib.c | 305 const char *filename = lua_tostring(L, 1); in g_iofile() 606 return luaL_error(L, "%s", lua_tostring(L, -n + 1)); in io_readline()
|
| H A D | lbaselib.c | 387 if (lua_type(L, 1) == LUA_TSTRING && *lua_tostring(L, 1) == '#') { in luaB_select()
|
| H A D | lua.h | 366 #define lua_tostring(L,i) lua_tolstring(L, (i), NULL) macro
|
| /freebsd-12.1/contrib/libucl/lua/ |
| H A D | lua_ucl.c | 117 out = lua_tostring (fd->L, -1); in lua_ucl_userdata_emitter() 381 obj = ucl_object_fromstring_common (lua_tostring (L, idx), 0, 0); in ucl_object_lua_fromelt() 611 type = lua_ucl_str_to_parse_type (lua_tostring (L, 3)); in lua_ucl_parser_parse_string() 838 const char *strtype = lua_tostring (L, 2); in lua_ucl_object_tostring() 880 path = lua_tostring (L, 3); in lua_ucl_object_validate() 1114 const char *strtype = lua_tostring (L, 2); in lua_ucl_to_format()
|
| /freebsd-12.1/stand/liblua/ |
| H A D | lutils.c | 221 str = lua_tostring(L, 1); in lua_openfile() 224 mode = lua_tostring(L, 2); in lua_openfile()
|
| H A D | lfs.c | 303 member = lua_tostring(L, 2); in lua_attributes()
|
| /freebsd-12.1/stand/common/ |
| H A D | interp_lua.c | 125 const char *errstr = lua_tostring(luap, -1); in interp_init()
|
| /freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/ |
| H A D | lauxlib.c | 85 lua_pushfstring(L, "function " LUA_QS, lua_tostring(L, -1)); in pushfuncname() 160 ar.name = (pushglobalfuncname(L, &ar)) ? lua_tostring(L, -1) : "?"; in luaL_argerror() 772 return lua_tostring(L, -1); in luaL_gsub()
|
| H A D | lbaselib.c | 242 if (lua_type(L, 1) == LUA_TSTRING && *lua_tostring(L, 1) == '#') { in luaB_select()
|
| H A D | lua.h | 345 #define lua_tostring(L,i) lua_tolstring(L, (i), NULL) macro
|