Home
last modified time | relevance | path

Searched refs:lua_pushboolean (Results 1 – 18 of 18) sorted by relevance

/aosp_15_r20/external/lua/src/
H A Dlcorolib.c61 lua_pushboolean(L, 0); in luaB_coresume()
66 lua_pushboolean(L, 1); in luaB_coresume()
155 lua_pushboolean(L, lua_isyieldable(co)); in luaB_yieldable()
162 lua_pushboolean(L, ismain); in luaB_corunning()
174 lua_pushboolean(L, 1); in luaB_close()
178 lua_pushboolean(L, 0); in luaB_close()
H A Dlbaselib.c152 lua_pushboolean(L, lua_rawequal(L, 1, 2)); in luaB_rawequal()
208 lua_pushboolean(L, res); in luaB_collectgarbage()
220 lua_pushboolean(L, res); in luaB_collectgarbage()
441 lua_pushboolean(L, 0); /* first result (false) */ in finishpcall()
453 lua_pushboolean(L, 1); /* first result if no errors */ in luaB_pcall()
469 lua_pushboolean(L, 1); /* first result */ in luaB_xpcall()
H A Dldblib.c70 lua_pushboolean(L, 1); in db_getuservalue()
122 lua_pushboolean(L, v); in settabsb()
444 lua_pushboolean(L, 0); in db_setcstacklimit()
H A Dloslib.c150 lua_pushboolean(L, stat); /* true if there is a shell */ in os_execute()
222 lua_pushboolean(L, value); in setboolfield()
H A Dlua.c590 lua_pushboolean(L, 1); /* signal for libraries to ignore env. vars. */ in pmain()
614 lua_pushboolean(L, 1); /* signal no errors */ in pmain()
H A Dlauxlib.c248 lua_pushboolean(L, 1); in luaL_fileresult()
292 lua_pushboolean(L, 1); in luaL_execresult()
908 lua_pushboolean(L, 0); in luaL_setfuncs()
H A Dloadlib.c396 lua_pushboolean(L, 1); /* return 'true' */ in lookforfunc()
675 lua_pushboolean(L, 1); /* use true as result */ in ll_require()
H A Dlua.h242 LUA_API void (lua_pushboolean) (lua_State *L, int b); variable
H A Dlmathlib.c165 lua_pushboolean(L, (lua_Unsigned)a < (lua_Unsigned)b); in math_ult()
H A Dliolib.c362 lua_pushboolean(L, toclose); /* close/not close file when finished */ in aux_lines()
H A Dlapi.c581 LUA_API void lua_pushboolean (lua_State *L, int b) { in lua_pushboolean() function
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/upb/lua/
Ddef.c134 lua_pushboolean(L, upb_FieldDef_HasSubDef(f)); in lupb_FieldDef_HasSubDef()
146 lua_pushboolean(L, upb_FieldDef_IsExtension(f)); in lupb_FieldDef_IsExtension()
175 lua_pushboolean(L, upb_FieldDef_IsPacked(f)); in lupb_FieldDef_IsPacked()
481 lua_pushboolean(L, upb_MessageDef_IsMapEntry(m)); in lupb_MessageDef_IsMapEntry()
Dmsg.c343 lua_pushboolean(L, val.bool_val); in lupb_pushmsgval()
/aosp_15_r20/external/libtextclassifier/native/utils/intents/
H A Dintent-generator.cc75 lua_pushboolean(state_, enable_add_contact_intent_); in SetupExternalHook()
78 lua_pushboolean(state_, enable_search_intent_); in SetupExternalHook()
H A Djni-lua.cc194 lua_pushboolean(state_, false); in HandleUserRestrictionsCallback()
233 lua_pushboolean(state_, false); in HandleUserRestrictionsCallback()
235 lua_pushboolean(state_, status_or_permission.ValueOrDie()); in HandleUserRestrictionsCallback()
/aosp_15_r20/packages/services/Car/packages/ScriptExecutor/src/
DJniUtils.cpp80 lua_pushboolean(lua, boolValue); in pushBundleToLuaTable()
113 lua_pushboolean(lua, rawBooleanArray[i]); in pushBundleToLuaTable()
/aosp_15_r20/external/mesa3d/src/freedreno/decode/
H A Dscript.c187 lua_pushboolean(L, val.u); in pushdecval()
/aosp_15_r20/external/libtextclassifier/native/utils/
H A Dlua-utils.h125 void Push(const bool value) const { lua_pushboolean(state_, value); } in Push()