Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/UE4SS-RE/RE-UE4SS
/ functions
Functions
2,594 in github.com/UE4SS-RE/RE-UE4SS
⨍
Functions
2,594
◇
Types & classes
549
↓ 1 callers
Function
addreturn
** Try to compile line on the stack as 'return <line>;'; on return, stack ** has either compiled chunk or original line (if compilation failed). */
deps/first/LuaRaw/src/lua.c:511
↓ 1 callers
Function
addtoclib
** registry.CLIBS[path] = plib -- for queries ** registry.CLIBS[#CLIBS + 1] = plib -- also keep a list of all libraries */
deps/first/LuaRaw/src/loadlib.c:349
↓ 1 callers
Function
auxgetinfo
deps/first/LuaRaw/src/ldebug.c:327
↓ 1 callers
Function
auxsort
** Quicksort algorithm (recursive function) */
deps/first/LuaRaw/src/ltablib.c:345
↓ 1 callers
Function
b_str2int
deps/first/LuaRaw/src/lbaselib.c:60
↓ 1 callers
Function
boolF
** Add a false to list of constants and return its index. */
deps/first/LuaRaw/src/lcode.c:625
↓ 1 callers
Function
boolT
** Add a true to list of constants and return its index. */
deps/first/LuaRaw/src/lcode.c:635
↓ 1 callers
Function
breakstat
** Break statement. Semantically equivalent to "goto break". */
deps/first/LuaRaw/src/lparser.c:1437
↓ 1 callers
Function
callclosemethod
** Call closing method for object 'obj' with error message 'err'. The ** boolean 'yy' controls whether the call is yieldable. ** (This function assume
deps/first/LuaRaw/src/lfunc.c:108
↓ 1 callers
Method
can_process_events
UE4SS/include/UE4SSProgram.hpp:209
↓ 1 callers
Function
capture_to_close
deps/first/LuaRaw/src/lstrlib.c:395
↓ 1 callers
Function
changedline
** Check whether new instruction 'newpc' is in a different line from ** previous instruction 'oldpc'. More often than not, 'newpc' is only ** one or a
deps/first/LuaRaw/src/ldebug.c:841
↓ 1 callers
Function
checkHeader
deps/first/LuaRaw/src/lundump.c:290
↓ 1 callers
Function
check_capture
deps/first/LuaRaw/src/lstrlib.c:386
↓ 1 callers
Function
check_conflict
** check whether, in an assignment to an upvalue/local variable, the ** upvalue/local variable is begin used in a previous assignment to a ** table. I
deps/first/LuaRaw/src/lparser.c:1330
↓ 1 callers
Method
check_ignore_forward_declaration
UE4SS/src/SDKGenerator/Generator.cpp:280
↓ 1 callers
Function
checkclib
** return registry.CLIBS[path] */
deps/first/LuaRaw/src/loadlib.c:335
↓ 1 callers
Function
checkclosemth
** Check whether object at given level has a close metamethod and raise ** an error if not. */
deps/first/LuaRaw/src/lfunc.c:126
↓ 1 callers
Function
checkoption
deps/first/LuaRaw/src/loslib.c:274
↓ 1 callers
Function
checkrepeated
** Check whether there is already a label with the given 'name'. */
deps/first/LuaRaw/src/lparser.c:1447
↓ 1 callers
Function
checktoclose
deps/first/LuaRaw/src/lparser.c:1717
↓ 1 callers
Function
choosePivot
** Choose an element in the middle (2nd-3th quarters) of [lo,up] ** "randomized" by 'rnd' */
deps/first/LuaRaw/src/ltablib.c:334
↓ 1 callers
Method
cleanup_device
UE4SS/src/GUI/DX11.cpp:52
↓ 1 callers
Function
close_all_default_devices
deps/first/DynamicOutput/src/Output.cpp:48
↓ 1 callers
Method
close_current_file
deps/first/File/src/FileType/WinFile.cpp:311
↓ 1 callers
Function
closelistfield
deps/first/LuaRaw/src/lparser.c:867
↓ 1 callers
Function
codebitwise
** Code bitwise operations; they are all associative, so the function ** tries to put an integer constant as the 2nd operand (a K operand). */
deps/first/LuaRaw/src/lcode.c:1484
↓ 1 callers
Function
codeclosure
** codes instruction to create new closure in parent function. ** The OP_CLOSURE instruction uses the last available register, ** so that, if it invok
deps/first/LuaRaw/src/lparser.c:721
↓ 1 callers
Function
codecommutative
** Code commutative operators ('+', '*'). If first operand is a ** numeric constant, change order of operands to try to use an ** immediate or K opera
deps/first/LuaRaw/src/lcode.c:1466
↓ 1 callers
Function
codeconcat
** Create code for '(e1 .. e2)'. ** For '(e1 .. e2.1 .. e2.2)' (which is '(e1 .. (e2.1 .. e2.2))', ** because concatenation is right associative), mer
deps/first/LuaRaw/src/lcode.c:1640
↓ 1 callers
Function
codeeq
** Emit code for equality comparisons ('==', '~='). ** 'e1' was already put as RK by 'luaK_infix'. */
deps/first/LuaRaw/src/lcode.c:1540
↓ 1 callers
Function
codenot
** Code 'not e', doing constant folding. */
deps/first/LuaRaw/src/lcode.c:1186
↓ 1 callers
Function
codesJ
** Format and emit an 'isJ' instruction. */
deps/first/LuaRaw/src/lcode.c:429
↓ 1 callers
Function
codeunexpval
** Emit code for unary expressions that "produce values" ** (everything but 'not'). ** Expression to produce final result will be encoded in 'e'. */
deps/first/LuaRaw/src/lcode.c:1359
↓ 1 callers
Function
collectargs
** Traverses all arguments from 'argv', returning a mask with those ** needed before running any Lua code (or an error code if it finds ** any invalid
deps/first/LuaRaw/src/lua.c:275
↓ 1 callers
Function
collectvalidlines
deps/first/LuaRaw/src/ldebug.c:290
↓ 1 callers
Function
combine
deps/first/LuaRaw/src/luac.c:143
↓ 1 callers
Function
computesizes
** Compute the optimal size for the array part of table 't'. 'nums' is a ** "count array" where 'nums[i]' is the number of integers in the table ** be
deps/first/LuaRaw/src/ltable.c:389
↓ 1 callers
Function
const2exp
** Convert a constant in 'v' into an expression description 'e' */
deps/first/LuaRaw/src/lcode.c:692
↓ 1 callers
Function
construct_fname
UE4SS/src/LuaType/LuaUObject.cpp:359
↓ 1 callers
Function
construct_handle
deps/first/File/src/File.cpp:5
↓ 1 callers
Function
construct_uclass
UE4SS/src/LuaType/LuaUObject.cpp:365
↓ 1 callers
Function
copy_transform
(src, dst, transformer)
docs-export/export.py:23
↓ 1 callers
Function
correctgraylists
** Correct all gray lists, coalescing them into 'grayagain'. */
deps/first/LuaRaw/src/lgc.c:1179
↓ 1 callers
Function
correctpointers
** Correct pointers to objects inside 'allgc' list when ** object 'o' is being removed from the list. */
deps/first/LuaRaw/src/lgc.c:999
↓ 1 callers
Function
correctstack
** {================================================================== ** Stack reallocation ** ======================================================
deps/first/LuaRaw/src/ldo.c:160
↓ 1 callers
Method
create_device
UE4SS/src/GUI/DX11.cpp:47
↓ 1 callers
Method
create_window
UE4SS/src/GUI/Windows.cpp:37
↓ 1 callers
Function
createargtable
** Create the 'arg' table, which stores all arguments from the ** command line ('argv'). It should be aligned so that, at index 0, ** it has 'argv[scr
deps/first/LuaRaw/src/lua.c:181
↓ 1 callers
Function
createclibstable
** create table CLIBS to keep track of loaded C libraries, ** setting a finalizer to close all libraries when closing state. */
deps/first/LuaRaw/src/loadlib.c:730
↓ 1 callers
Function
createmeta
deps/first/LuaRaw/src/liolib.c:784
↓ 1 callers
Function
createmetatable
deps/first/LuaRaw/src/lstrlib.c:1852
↓ 1 callers
Function
createsearcherstable
deps/first/LuaRaw/src/loadlib.c:710
↓ 1 callers
Method
derives_from_function
UE4SS/include/LuaType/LuaUObject.hpp:103
↓ 1 callers
Method
deserialize
UE4SS/src/SettingsManager.cpp:43
↓ 1 callers
Function
dll_process_attached
We're still inside DllMain so be careful what you do here
UE4SS/src/main_ue4ss_rewritten.cpp:105
↓ 1 callers
Function
dll_process_attached
We're still inside DllMain so be careful what you do here
UVTD/src/main.cpp:99
↓ 1 callers
Function
doargs
deps/first/LuaRaw/src/luac.c:76
↓ 1 callers
Method
does_field_exist
deps/first/LuaMadeSimple/src/LuaMadeSimple.cpp:187
↓ 1 callers
Function
dofilecont
deps/first/LuaRaw/src/lbaselib.c:409
↓ 1 callers
Function
dolibrary
** Receives 'globname[=modname]' and runs 'globname = require(modname)'. */
deps/first/LuaRaw/src/lua.c:213
↓ 1 callers
Function
dumpCode
deps/first/LuaRaw/src/ldump.c:100
↓ 1 callers
Function
dumpConstants
deps/first/LuaRaw/src/ldump.c:108
↓ 1 callers
Function
dumpDebug
deps/first/LuaRaw/src/ldump.c:154
↓ 1 callers
Function
dumpHeader
deps/first/LuaRaw/src/ldump.c:197
↓ 1 callers
Function
dumpProtos
deps/first/LuaRaw/src/ldump.c:134
↓ 1 callers
Function
dumpUpvalues
deps/first/LuaRaw/src/ldump.c:143
↓ 1 callers
Function
dump_json_array_pair
UE4SS/src/GUI/ImGuiUtility.cpp:164
↓ 1 callers
Function
dump_json_array_value
UE4SS/src/GUI/ImGuiUtility.cpp:203
↓ 1 callers
Function
dump_json_integer_pair
UE4SS/src/GUI/ImGuiUtility.cpp:182
↓ 1 callers
Function
dump_json_integer_value
UE4SS/src/GUI/ImGuiUtility.cpp:224
↓ 1 callers
Function
dump_json_object_pair
UE4SS/src/GUI/ImGuiUtility.cpp:151
↓ 1 callers
Function
dump_json_object_value
UE4SS/src/GUI/ImGuiUtility.cpp:187
↓ 1 callers
Function
dump_json_string_pair
UE4SS/src/GUI/ImGuiUtility.cpp:177
↓ 1 callers
Function
dump_json_string_value
UE4SS/src/GUI/ImGuiUtility.cpp:219
↓ 1 callers
Method
dump_native_packages
UE4SS/src/SDKGenerator/UEHeaderGenerator.cpp:3654
↓ 1 callers
Function
dump_stack
dumpstack function from: https://stackoverflow.com/questions/59091462/from-c-how-can-i-print-the-contents-of-the-lua-stack/59097940#59097940 it's been
deps/first/LuaMadeSimple/src/LuaMadeSimple.cpp:829
↓ 1 callers
Method
enable
UE4SS/src/CrashDumper.cpp:82
↓ 1 callers
Function
end_capture
deps/first/LuaRaw/src/lstrlib.c:548
↓ 1 callers
Function
equalkey
** Check whether key 'k1' is equal to the key in node 'n2'. This ** equality is raw, so there are no metamethods. Floats with integer ** values have b
deps/first/LuaRaw/src/ltable.c:216
↓ 1 callers
Function
errorlimit
deps/first/LuaRaw/src/lparser.c:74
↓ 1 callers
Method
exec
deps/first/IniParser/include/IniParser/Experimental.hpp:59
↓ 1 callers
Method
exec_message_loop
UE4SS/src/GUI/Windows.cpp:74
↓ 1 callers
Method
exit_requested
UE4SS/src/GUI/GLFW3_OpenGL3.cpp:108
↓ 1 callers
Function
exprstat
deps/first/LuaRaw/src/lparser.c:1794
↓ 1 callers
Function
f_close
deps/first/LuaRaw/src/liolib.c:222
↓ 1 callers
Function
field
deps/first/LuaRaw/src/lparser.c:902
↓ 1 callers
Function
filterpc
deps/first/LuaRaw/src/ldebug.c:455
↓ 1 callers
Function
finaltarget
** return the final target of a jump (skipping jumps to jumps) */
deps/first/LuaRaw/src/lcode.c:1787
↓ 1 callers
Method
find_or_nullptr
UE4SS/src/LuaType/LuaCustomProperty.cpp:29
↓ 1 callers
Function
findfield
** Search for 'objidx' in table at index -1. ('objidx' must be an ** absolute index.) Return 1 + string at top if it found a good name. */
deps/first/LuaRaw/src/lauxlib.c:52
↓ 1 callers
Function
findindex
** returns the index of a 'key' for table traversals. First goes all ** elements in the array part, then elements in the hash part. The ** beginning o
deps/first/LuaRaw/src/ltable.c:329
↓ 1 callers
Function
findlast
** find last 'next' field in list 'p' list (to add elements in its end) */
deps/first/LuaRaw/src/lgc.c:952
↓ 1 callers
Function
findloader
deps/first/LuaRaw/src/loadlib.c:624
↓ 1 callers
Function
findpcall
** Try to find a suspended protected call (a "recover point") for the ** given thread. */
deps/first/LuaRaw/src/ldo.c:727
↓ 1 callers
Function
findsetreg
** Try to find last instruction before 'lastpc' that modified register 'reg'. */
deps/first/LuaRaw/src/ldebug.c:465
↓ 1 callers
Function
findvararg
deps/first/LuaRaw/src/ldebug.c:184
↓ 1 callers
Function
finishCcall
** Completes the execution of a C function interrupted by an yield. ** The interruption must have happened while the function was either ** closing it
deps/first/LuaRaw/src/ldo.c:681
↓ 1 callers
Function
finishpcallk
** Finish the job of 'lua_pcallk' after it was interrupted by an yield. ** (The caller, 'finishCcall', does the final call to 'adjustresults'.) ** The
deps/first/LuaRaw/src/ldo.c:647
↓ 1 callers
Method
fire_dll_load
UE4SS/src/Mod/CppMod.cpp:147
← previous
next →
901–1,000 of 2,594, ranked by callers