| /freebsd-13-stable/sys/contrib/openzfs/module/lua/ |
| HD | README.zfs | 23 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 35 The Lua runtime is considered stable software. Channel programs don't need much 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 45 The version of the Lua runtime we're using in ZFS has been modified in a variety 49 1. "Normal" Lua uses floating point for all numbers it stores, but those aren't 52 2. Some of the Lua standard libraries do file I/O or spawn processes, but 55 3. The "normal" Lua runtime handles errors by failing fatally, but since this [all …]
|
| /freebsd-13-stable/contrib/file/magic/Magdir/ |
| HD | lua | 4 # 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-13-stable/contrib/libucl/m4/ |
| HD | ax_lua.m4 | 14 # Detect a Lua interpreter, optionally specifying a minimum and maximum 15 # version number. Set up important Lua paths, such as the directories in 18 # Also detect Lua headers and libraries. The Lua version contained in the 19 # header is checked to match the Lua interpreter version exactly. When 20 # searching for Lua libraries, the version number is used as a suffix. 21 # This is done with the goal of supporting multiple Lua installs (5.1, 47 # AX_PROG_LUA: Search for the Lua interpreter, and set up important Lua 48 # paths. Adds precious variable LUA, which may contain the path of the Lua 52 # If MINIMUM-VERSION is supplied, then only Lua interpreters with a 54 # TOO-BIG-VERSION is also supplied, then only Lua interpreters with a [all …]
|
| /freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/ |
| HD | Lua.cpp | 34 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()
|
| HD | Lua.h | 29 class Lua { 31 Lua(); 32 ~Lua();
|
| HD | ScriptInterpreterLua.h | 21 class Lua; variable 77 Lua &GetLua(); 103 std::unique_ptr<Lua> m_lua;
|
| HD | ScriptInterpreterLua.cpp | 148 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-13-stable/contrib/lutok/ |
| HD | NEWS | 19 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.
|
| HD | README | 1 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
|
| HD | lutok.pc.in | 5 Description: Lightweight C++ API for Lua
|
| /freebsd-13-stable/contrib/lua/src/ |
| HD | luaconf.h.dist | 3 ** Configuration file for Lua 17 ** General Configuration File for Lua 22 ** be changed directly here, either because they affect the Lua 24 ** connected to Lua, such as C libraries, will be compiled with the 34 ** System Configuration: macros to adapt (if needed) Lua to some 41 ** Define it if you want Lua to avoid the use of a few C99 features 48 ** By default, Lua on Windows use (some) specific Windows features 89 @@ LUA_32BITS enables Lua with 32-bit integers and 32-bit floats. 95 @@ LUA_C89_NUMBERS ensures that Lua uses the largest types available for 105 @@ LUA_INT_TYPE defines the type for Lua integers. [all …]
|
| /freebsd-13-stable/contrib/llvm-project/lldb/bindings/lua/ |
| HD | lua-wrapper.swig | 5 // 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'.
|
| HD | lua.swig | 20 #include "../source/Plugins/ScriptInterpreter/Lua/SWIGLuaBridge.h"
|
| HD | lua-typemaps.swig | 7 // 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-13-stable/contrib/lua/ |
| HD | README | 2 This is Lua 5.4.2, released on 13 Nov 2020. 5 further information about Lua, see doc/readme.html.
|
| /freebsd-13-stable/contrib/libucl/ |
| HD | CMakeLists.txt | 63 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")
|
| HD | ChangeLog.md | 99 - 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-13-stable/stand/uboot/ |
| HD | version | 1 3.0: Lua scripts API stability
|
| /freebsd-13-stable/stand/powerpc/ofw/ |
| HD | version | 1 3.0: Lua scripts API stability
|
| /freebsd-13-stable/stand/kboot/ |
| HD | version | 1 3.0: Lua scripts API stability
|
| /freebsd-13-stable/stand/userboot/userboot/ |
| HD | version | 1 3.0: Lua scripts API stability
|
| /freebsd-13-stable/stand/efi/loader/ |
| HD | version | 1 3.0: Lua scripts API stability
|
| /freebsd-13-stable/stand/i386/loader/ |
| HD | version | 1 3.0: Lua scripts API stability
|
| /freebsd-13-stable/share/timedef/ |
| HD | ga_IE.UTF-8.src | 32 Lua
|
| /freebsd-13-stable/contrib/mandoc/ |
| HD | msec.in | 28 LINE("3lua", "Lua Library Functions Manual")
|