| /f-stack/freebsd/contrib/openzfs/module/zfs/ |
| H A D | zcp_synctask.c | 131 const char *dsname = lua_tostring(state, 1); in zcp_synctask_destroy() 183 const char *dsname = lua_tostring(state, 1); in zcp_synctask_promote() 220 const char *dsname = lua_tostring(state, 1); in zcp_synctask_rollback() 254 const char *dsname = lua_tostring(state, 1); in zcp_synctask_snapshot() 355 const char *dsname = lua_tostring(state, 1); in zcp_synctask_inherit_prop() 356 const char *prop = lua_tostring(state, 2); in zcp_synctask_inherit_prop() 398 const char *source = lua_tostring(state, 1); in zcp_synctask_bookmark() 399 const char *new = lua_tostring(state, 2); in zcp_synctask_bookmark() 443 const char *dsname = lua_tostring(state, 1); in zcp_synctask_set_prop() 444 const char *prop = lua_tostring(state, 2); in zcp_synctask_set_prop() [all …]
|
| H A D | zcp_iter.c | 126 const char *snapname = lua_tostring(state, 1); in zcp_clones_list() 213 const char *fsname = lua_tostring(state, 1); in zcp_snapshots_list() 300 const char *fsname = lua_tostring(state, 1); in zcp_children_list() 403 const char *dsname = lua_tostring(state, 1); in zcp_user_props_list() 472 dataset_name = lua_tostring(state, 1); in zcp_system_props_list() 584 const char *dsname = lua_tostring(state, 1); in zcp_bookmarks_list() 677 const char *snapname = lua_tostring(state, 1); in zcp_holds_list()
|
| H A D | zcp.c | 141 msg = lua_tostring(state, 1); in zcp_error_handler() 259 key = lua_tostring(state, -2); in zcp_table_to_nvlist() 394 fnvlist_add_string(nvl, key, lua_tostring(state, index)); in zcp_lua_to_nvlist_impl() 655 dbgstring = lua_tostring(state, 1); in zcp_debug() 684 const char *dsname = lua_tostring(state, 1); in zcp_exists() 808 lua_tostring(state, -1)); in zcp_panic_cb() 1122 lua_tostring(state, -1)); in zcp_eval() 1375 "invalid kwarg '%s'", lua_tostring(state, -2)); in zcp_parse_table_args()
|
| H A D | zcp_get.c | 769 dataset_name = lua_tostring(state, 1); in zcp_get_prop() 770 property_name = lua_tostring(state, 2); in zcp_get_prop()
|
| /f-stack/app/redis-5.0.5/deps/lua/etc/ |
| H A D | min.c | 20 printf("%s",lua_tostring(L,i)); in print() 36 if (luaL_dofile(L,NULL)!=0) fprintf(stderr,"%s\n",lua_tostring(L,-1)); in main()
|
| /f-stack/app/redis-5.0.5/deps/lua/src/ |
| H A D | loadlib.c | 106 luaL_gsub(L, lua_tostring(L, -1), LUA_EXECDIR, buff); in setprogdir() 356 path = lua_tostring(L, -1); in findfile() 362 filename = luaL_gsub(L, lua_tostring(L, -1), LUA_PATH_MARK, name); in findfile() 376 lua_tostring(L, 1), filename, lua_tostring(L, -1)); in loaderror() 422 filename = findfile(L, lua_tostring(L, -1), "cpath"); in loader_Croot() 471 name, lua_tostring(L, -2)); in ll_require()
|
| H A D | lua.c | 67 const char *msg = lua_tostring(L, -1); in report() 156 p = lua_tostring(L, -1); in get_prompt() 202 status = luaL_loadbuffer(L, lua_tostring(L, 1), lua_strlen(L, 1), "=stdin"); in loadline() 229 lua_tostring(L, -1))); in dotty()
|
| H A D | luac.c | 169 if (luaL_loadfile(L,filename)!=0) fatal(lua_tostring(L,-1)); in pmain() 197 if (lua_cpcall(L,pmain,&s)!=0) fatal(lua_tostring(L,-1)); in main()
|
| H A D | lauxlib.c | 353 return lua_tostring(L, -1); in luaL_gsub() 545 const char *filename = lua_tostring(L, fnameindex) + 1; in errfile() 581 status = lua_load(L, getF, &lf, lua_tostring(L, -1)); in luaL_loadfile() 642 lua_tostring(L, -1)); in panic()
|
| H A D | liolib.c | 50 luaL_argerror(L, arg, lua_tostring(L, -1)); in fileerror() 202 const char *filename = lua_tostring(L, 1); in g_iofile() 352 const char *p = lua_tostring(L, n); in g_read()
|
| H A D | lbaselib.c | 40 s = lua_tostring(L, -1); /* get result */ in luaB_print() 360 if (lua_type(L, 1) == LUA_TSTRING && *lua_tostring(L, 1) == '#') { in luaB_select() 402 lua_pushstring(L, lua_tostring(L, 1)); in luaB_tostring()
|
| H A D | ldblib.c | 112 options = lua_tostring(L, -1); in db_getinfo() 311 fputs(lua_tostring(L, -1), stderr); in db_debug()
|
| H A D | luaconf.h | 280 add_history(lua_tostring(L, idx)); /* add it to history */
|
| H A D | lua.h | 279 #define lua_tostring(L,i) lua_tolstring(L, (i), NULL) macro
|
| H A D | lstrlib.c | 552 const char *p = lua_tostring(L, lua_upvalueindex(2)); in gmatch_aux()
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | scripting.c | 282 addReplyBulkCBuffer(c,(char*)lua_tostring(lua,-1),lua_strlen(lua,-1)); in luaReplyToRedisReply() 299 sds err = sdsnew(lua_tostring(lua,-1)); in luaReplyToRedisReply() 312 sds ok = sdsnew(lua_tostring(lua,-1)); in luaReplyToRedisReply() 1205 lua_tostring(lua,-1)); in luaCreateFunction() 1217 lua_tostring(lua,-1)); in luaCreateFunction() 1405 funcname, lua_tostring(lua,-1)); in evalGenericCommand() 2214 ldbLog(sdscatfmt(sdsempty(),"<error> %s",lua_tostring(lua,-1))); in ldbEval() 2225 ldbLog(sdscatfmt(sdsempty(),"<error> %s",lua_tostring(lua,-1))); in ldbEval()
|
| /f-stack/freebsd/contrib/openzfs/module/lua/ |
| H A D | lauxlib.c | 84 lua_pushfstring(L, "function " LUA_QS, lua_tostring(L, -1)); in pushfuncname() 159 ar.name = (pushglobalfuncname(L, &ar)) ? lua_tostring(L, -1) : "?"; in luaL_argerror() 771 return lua_tostring(L, -1); in luaL_gsub()
|
| H A D | lbaselib.c | 236 if (lua_type(L, 1) == LUA_TSTRING && *lua_tostring(L, 1) == '#') { in luaB_select()
|
| /f-stack/freebsd/contrib/openzfs/include/sys/lua/ |
| H A D | lua.h | 346 #define lua_tostring(L,i) lua_tolstring(L, (i), NULL) macro
|