MCPcopy Create free account
hub / github.com/Snapchat/KeyDB / lua_pushlstring

Function lua_pushlstring

deps/lua/src/lapi.c:445–451  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

443
444
445LUA_API void lua_pushlstring (lua_State *L, const char *s, size_t len) {
446 lua_lock(L);
447 luaC_checkGC(L);
448 setsvalue2s(L, L->top, luaS_newlstr(L, s, len));
449 api_incr_top(L);
450 lua_unlock(L);
451}
452
453
454LUA_API void lua_pushstring (lua_State *L, const char *s) {

Callers 15

luaSetGlobalArrayFunction · 0.85
ldbRedisFunction · 0.85
str_subFunction · 0.85
push_onecaptureFunction · 0.85
add_valueFunction · 0.85
b_unpackFunction · 0.85
luaL_findtableFunction · 0.85
emptybufferFunction · 0.85
json_encodeFunction · 0.85

Calls 1

luaS_newlstrFunction · 0.85

Tested by 1

test_eofFunction · 0.68