Home
last modified time | relevance | path

Searched refs:pcall (Results 1 – 24 of 24) sorted by relevance

/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
H A Dtst.lib_table.lua34 function pcall(f, ...) function
86 assert(not pcall(unpack, {}, 0, 2^31-1))
87 assert(not pcall(unpack, {}, 1, 2^31-1))
88 assert(not pcall(unpack, {}, -(2^31), 2^31-1))
89 assert(not pcall(unpack, {}, -(2^31 - 1), 2^31-1))
90 assert(pcall(unpack, {}, 2^31-1, 0))
91 assert(pcall(unpack, {}, 2^31-1, 1))
92 pcall(unpack, {}, 1, 2^31)
117 local s, e = pcall(table.sort, t, f)
/freebsd/tools/lua/
H A Dtemplate.lua40 local pcall = pcall
111 ok, newtab = pcall(require, "table.new")
296 local ok, err = pcall(render, ...)
302 local ok, output = pcall(process, ...)
310 local ok, output = pcall(process, ...)
633 local ok, a, b = pcall(template[k], ...)
/freebsd/contrib/lutok/
H A Doperations.cpp86 s.pcall(nargs, nresults == -1 ? LUA_MULTRET : nresults, in do_file()
126 s.pcall(nargs, nresults == -1 ? LUA_MULTRET : nresults, in do_string()
H A Dstate.hpp112 void pcall(const int, const int, const int);
H A DNEWS65 `pcall` call.
H A Dstate_test.cpp691 state.pcall(0, 0, 0); in ATF_TEST_CASE_BODY()
697 state.pcall(2, 1, 0); in ATF_TEST_CASE_BODY()
708 REQUIRE_API_ERROR("lua_pcall", state.pcall(0, 0, 0)); in ATF_TEST_CASE_BODY()
H A Dstate.cpp643 lutok::state::pcall(const int nargs, const int nresults, const int errfunc) in pcall() function in lutok::state
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPrintfRuntimeBinding.cpp287 CallInst *pcall = CallInst::Create(PrintfAllocFn, alloc_args, in lowerPrintfForGpu() local
297 auto *cmp = cast<ICmpInst>(Builder.CreateICmpNE(pcall, zeroIntPtr, "")); in lowerPrintfForGpu()
313 I8Ty, pcall, ConstantInt::get(Ctx, APInt(32, 0)), "PrintBuffID", in lowerPrintfForGpu()
324 BufferIdx = GetElementPtrInst::Create(I8Ty, pcall, in lowerPrintfForGpu()
/freebsd/contrib/lutok/examples/
H A Dhello.cpp55 state.pcall(1, 0, 0); in main()
/freebsd/sys/tools/syscalls/scripts/
H A Dsyscall_mk.lua12 local script = not pcall(debug.getlocal, 4, 1) -- TRUE if script.
H A Dsyscalls_map.lua13 local script = not pcall(debug.getlocal, 4, 1) -- TRUE if script.
H A Dlibsys_h.lua13 local script = not pcall(debug.getlocal, 4, 1) -- TRUE if script.
H A Dsyscall_h.lua12 local script = not pcall(debug.getlocal, 4, 1) -- TRUE if script.
H A Dsyscalls.lua12 local script = not pcall(debug.getlocal, 4, 1) -- TRUE if script.
H A Dsyscall_json.lua10 local script = not pcall(debug.getlocal, 4, 1) -- TRUE if script.
H A Dinit_sysent.lua12 local script = not pcall(debug.getlocal, 4, 1) -- TRUE if script.
H A Dsystrace_args.lua12 local script = not pcall(debug.getlocal, 4, 1) -- TRUE if script.
H A Dsysproto_h.lua11 local script = not pcall(debug.getlocal, 4, 1) -- TRUE if script.
/freebsd/tools/build/options/
H A Dmakeman.lua421 local ret, errobj = pcall(function()
493 local res, err = pcall(load(buf, "child", "t", child_env))
782 local ret, errobj = pcall(main, tmpdir)
/freebsd/sys/tools/syscalls/core/
H A Dscarg.lua70 local status, type = pcall(function()
/freebsd/sys/dev/smbus/
H A Dsmbus_if.m122 METHOD int pcall {
/freebsd/contrib/lyaml/lib/lyaml/
H A Dinit.lua322 local ok, event = pcall(self.next)
/freebsd/contrib/lyaml/build-aux/
H A Dluke347 local ok,err=pcall(chunk)if not ok then
613 end,next=next,open=io.open,pack=pack,pcall=pcall,pop=function(seq)local n,r=seq.n or len(seq)r,seq[…
/freebsd/stand/lua/
H A Dconfig.lua560 local res, err = pcall(load(text, name, "t", cfg_env))