Home
last modified time | relevance | path

Searched refs:lua_strlen (Results 1 – 6 of 6) sorted by relevance

/f-stack/freebsd/contrib/openzfs/include/sys/lua/
H A Dluaconf.h292 #define lua_strlen(L,i) lua_rawlen(L, (i)) macro
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dluaconf.h279 if (lua_strlen(L,idx) > 0) /* non-empty line? */ \
H A Dlauxlib.c414 size_t toplen = lua_strlen(L, -1); in adjuststack()
416 size_t l = lua_strlen(L, -(toget+1)); in adjuststack()
H A Dlua.c202 status = luaL_loadbuffer(L, lua_tostring(L, 1), lua_strlen(L, 1), "=stdin"); in loadline()
H A Dlua.h262 #define lua_strlen(L,i) lua_objlen(L, (i)) macro
/f-stack/app/redis-5.0.5/src/
H A Dscripting.c282 addReplyBulkCBuffer(c,(char*)lua_tostring(lua,-1),lua_strlen(lua,-1)); in luaReplyToRedisReply()