ladybird/DevTools/UserspaceEmulator
asynts d5ffb51a83 AK: Don't add newline for outf/dbgf/warnf.
In the future all (normal) output should be written by any of the
following functions:

    out    (currently called new_out)
    outln
    dbg    (currently called new_dbg)
    dbgln
    warn   (currently called new_warn)
    warnln

However, there are still a ton of uses of the old out/warn/dbg in the
code base so the new functions are called new_out/new_warn/new_dbg. I am
going to rename them as soon as all the other usages are gone (this
might take a while.)

I also added raw_out/raw_dbg/raw_warn which don't do any escaping,
this should be useful if no formatting is required and if the input
contains tons of curly braces. (I am not entirely sure if this function
will stay, but I am adding it for now.)
2020-10-04 17:04:55 +02:00
..
CMakeLists.txt UserspaceEmulator: Set the process and thread name to "(UE) Executable" 2020-07-27 19:10:18 +02:00
Emulator.cpp AK: Don't add newline for outf/dbgf/warnf. 2020-10-04 17:04:55 +02:00
Emulator.h UserspaceEmulator: Implement the getsid() syscall 2020-09-28 23:34:55 +02:00
main.cpp Meta+Kernel: Make clang-format-10 clean 2020-09-25 21:18:17 +02:00
MallocTracer.cpp AK: Don't add newline for outf/dbgf/warnf. 2020-10-04 17:04:55 +02:00
MallocTracer.h UserspaceEmulator: Report heap buffer overflows :^) 2020-08-01 09:44:19 +02:00
MmapRegion.cpp AK: Don't add newline for outf/dbgf/warnf. 2020-10-04 17:04:55 +02:00
MmapRegion.h UserspaceEmulator+LibX86: Add support for 64-bit memory reads and writes (#3584) 2020-09-23 20:45:43 +02:00
SharedBufferRegion.cpp UserspaceEmulator+LibX86: Add support for 64-bit memory reads and writes (#3584) 2020-09-23 20:45:43 +02:00
SharedBufferRegion.h UserspaceEmulator+LibX86: Add support for 64-bit memory reads and writes (#3584) 2020-09-23 20:45:43 +02:00
SimpleRegion.cpp UserspaceEmulator+LibX86: Add support for 64-bit memory reads and writes (#3584) 2020-09-23 20:45:43 +02:00
SimpleRegion.h UserspaceEmulator+LibX86: Add support for 64-bit memory reads and writes (#3584) 2020-09-23 20:45:43 +02:00
SoftCPU.cpp AK: Don't add newline for outf/dbgf/warnf. 2020-10-04 17:04:55 +02:00
SoftCPU.h UserspaceEmulator+LibX86: Clean up some obnoxious template spam 2020-09-23 21:15:01 +02:00
SoftMMU.cpp AK: Don't add newline for outf/dbgf/warnf. 2020-10-04 17:04:55 +02:00
SoftMMU.h UserspaceEmulator+LibX86: Add support for 64-bit memory reads and writes (#3584) 2020-09-23 20:45:43 +02:00
ValueWithShadow.h AK+Format: Do some housekeeping in the format implementation. 2020-10-02 20:48:19 +02:00