Home
last modified time | relevance | path

Searched refs:Lua (Results 1 – 25 of 36) sorted by relevance

12

/freebsd-14.2/sys/contrib/openzfs/module/lua/
H A DREADME.zfs23 This README describes the Lua interpreter source code that lives in the ZFS
28 For a description of the Lua language and features exposed by ZFS channel
36 complicated logic, so updates to the Lua runtime from upstream are viewed as
38 such, the Lua runtime in ZFS should be updated on an as-needed basis for
42 Modifications to Lua
52 2. Some of the Lua standard libraries do file I/O or spawn processes, but
56 version of Lua runs inside the kernel we must handle these failures and
57 return meaningful error codes to userland. We have customized the Lua
75 How to use this Lua interpreter
78 From the above, it should be clear that this is not a general-purpose Lua
[all …]
/freebsd-14.2/contrib/file/magic/Magdir/
H A Dlua4 # lua: file(1) magic for Lua scripting language
8 # Lua scripts
9 0 search/1/w #!\ /usr/bin/lua Lua script text executable
11 0 search/1/w #!\ /usr/local/bin/lua Lua script text executable
13 0 search/1 #!/usr/bin/env\ lua Lua script text executable
15 0 search/1 #!\ /usr/bin/env\ lua Lua script text executable
18 # Lua bytecode
19 0 string \033Lua Lua bytecode,
/freebsd-14.2/contrib/libucl/m4/
H A Dax_lua.m418 # Also detect Lua headers and libraries. The Lua version contained in the
47 # AX_PROG_LUA: Search for the Lua interpreter, and set up important Lua
117 # the Lua interpreter's version number. Lua headers with mismatched
199 dnl Find a Lua interpreter.
215 AC_MSG_ERROR([not a Lua interpreter])
221 [ dnl Check if this is a Lua interpreter.
226 AC_MSG_ERROR([not a Lua interpreter])
263 [ dnl Query Lua for its version number.
280 dnl which OS platform Lua thinks this is.
496 AC_MSG_CHECKING([for Lua headers in])
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DLua.cpp34 Lua::Lua() : m_lua_state(luaL_newstate()) { in Lua() function in Lua
42 Lua::~Lua() { in ~Lua()
47 llvm::Error Lua::Run(llvm::StringRef buffer) { in Run()
62 llvm::Error Lua::RegisterBreakpointCallback(void *baton, const char *body) { in RegisterBreakpointCallback()
79 Lua::CallBreakpointCallback(void *baton, lldb::StackFrameSP stop_frame_sp, in CallBreakpointCallback()
90 llvm::Error Lua::RegisterWatchpointCallback(void *baton, const char *body) { in RegisterWatchpointCallback()
107 Lua::CallWatchpointCallback(void *baton, lldb::StackFrameSP stop_frame_sp, in CallWatchpointCallback()
116 llvm::Error Lua::CheckSyntax(llvm::StringRef buffer) { in CheckSyntax()
133 llvm::Error Lua::LoadModule(llvm::StringRef filename) { in LoadModule()
161 llvm::Error Lua::ChangeIO(FILE *out, FILE *err) { in ChangeIO()
H A DLua.h29 class Lua {
31 Lua();
32 ~Lua();
H A DScriptInterpreterLua.h21 class Lua; variable
77 Lua &GetLua();
103 std::unique_ptr<Lua> m_lua;
H A DScriptInterpreterLua.cpp148 m_lua(std::make_unique<Lua>()) {} in ScriptInterpreterLua()
285 Lua &lua = lua_interpreter->GetLua(); in BreakpointCallbackFunction()
313 Lua &lua = lua_interpreter->GetLua(); in WatchpointCallbackFunction()
402 Lua &ScriptInterpreterLua::GetLua() { return *m_lua; } in GetLua()
/freebsd-14.2/contrib/lutok/
H A DNEWS19 given that it depends on the specific Lua operation. Being explicit
32 * Issue 1: Added support for Lua 5.2 while maintaining support for Lua
34 interface in this new version and thus support both Lua releases.
35 However, because of incompatible changes to the Lua API, this release
38 * Issue 3: Tweaked configure to look for Lua using the pkg-config names
60 * Acknowledged that Lua 5.2 is currently not supported.
H A DREADME1 Lutok is a lightweight C++ API library for Lua.
3 Lutok provides thin C++ wrappers around the Lua C API to ease the
4 interaction between C++ and Lua. These wrappers make intensive use of
6 errors by means of exceptions and ensure that the Lua stack is always
12 order to implement error-safe C++ wrappers on top of a Lua C binary
14 that go against the original spirit of the Lua C API and thus degrade
H A Dlutok.pc.in5 Description: Lightweight C++ API for Lua
/freebsd-14.2/contrib/lua/src/
H A Dluaconf.h.dist3 ** Configuration file for Lua
17 ** General Configuration File for Lua
34 ** System Configuration: macros to adapt (if needed) Lua to some
91 @@ LUA_INT_TYPE defines the type for Lua integers.
92 @@ LUA_FLOAT_TYPE defines the type for Lua floats.
186 ** Lua libraries.
580 ** (All uses in Lua have only one format item.)
681 /* shorter names for Lua's own use */
723 ** Lua).
728 @@ LUAI_MAXSTACK limits the size of the Lua stack.
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/bindings/lua/
H A Dlua-wrapper.swig5 // This function is called from Lua::CallBreakpointCallback
17 // Push the Lua wrappers
26 // Call into the Lua callback passing 'sb_frame' and 'sb_bp_loc'.
44 // This function is called from Lua::CallWatchpointCallback
52 // Push the Lua wrappers
56 // Call into the Lua callback passing 'sb_frame' and 'sb_wp'.
H A Dlua.swig20 #include "../source/Plugins/ScriptInterpreter/Lua/SWIGLuaBridge.h"
H A Dlua-typemaps.swig7 // In Lua 5.3 and beyond the VM supports integers, so we need to remap
69 // different LLDB APIs across languages (C++, Python, Lua...).
195 // It should accept a Lua table of strings, for stuff like "argv" and "envp".
/freebsd-14.2/contrib/lua/
H A DREADME2 This is Lua 5.4.6, released on 02 May 2023.
5 further information about Lua, see doc/readme.html.
/freebsd-14.2/contrib/libucl/
H A DCMakeLists.txt63 DOC "Lua library"
90 DOC "Lua library"
115 DOC "Lua library"
255 MESSAGE(FATAL_ERROR "Lua not found, lua support is required")
265 MESSAGE(FATAL_ERROR "Lua not found, lua support is required")
H A DChangeLog.md99 - Allow to emit msgpack from Lua
100 - Performance improvements in Lua API
101 - Allow to pass opaque objects in Lua API for transparent C passthrough
/freebsd-14.2/stand/uboot/
H A Dversion1 3.0: Lua scripts API stability
/freebsd-14.2/stand/kboot/kboot/
H A Dversion1 3.0: Lua scripts API stability
/freebsd-14.2/stand/powerpc/ofw/
H A Dversion1 3.0: Lua scripts API stability
/freebsd-14.2/stand/userboot/userboot/
H A Dversion1 3.0: Lua scripts API stability
/freebsd-14.2/stand/efi/loader/
H A Dversion1 3.0: Lua scripts API stability
H A Dversion.veriexec1 3.0: Lua scripts API stability
/freebsd-14.2/stand/i386/loader/
H A Dversion1 3.0: Lua scripts API stability
/freebsd-14.2/share/timedef/
H A Dga_IE.UTF-8.src32 Lua

12