Searched refs:LW (Results 1 - 25 of 42) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_utils.cpp125 LogWriter *LW = reinterpret_cast<LogWriter *>(InternalAlloc(sizeof(LogWriter))); variable
126 new (LW) LogWriter(Vmo);
127 return LW;
130 void LogWriter::Close(LogWriter *LW) { argument
131 LW->~LogWriter();
132 InternalFree(LW);
188 LogWriter *LW = allocate<LogWriter>();
189 new (LW) LogWriter(Fd);
190 return LW;
193 void LogWriter::Close(LogWriter *LW) {
[all...]
H A Dxray_basic_logging.cpp88 LogWriter* LW = LogWriter::Open(); variable
89 if (LW == nullptr)
90 return LW;
112 LW->WriteAll(reinterpret_cast<char *>(&Header),
114 return LW;
119 static LogWriter *LW = nullptr; variable
120 pthread_once(&OnceInit, +[] { LW = getLog(); });
121 return LW;
161 LogWriter *LW = getGlobalLog(); variable
162 if (LW
261 LogWriter *LW = getGlobalLog(); variable
[all...]
H A Dxray_profiling.cpp244 LogWriter *LW = LogWriter::Open(); variable
245 if (LW == nullptr) {
252 LW->WriteAll(reinterpret_cast<const char *>(B.Data),
257 LogWriter::Close(LW);
H A Dxray_fdr_logging.cpp341 LogWriter *LW = LogWriter::Open(); variable
342 if (LW == nullptr) {
350 LW->WriteAll(reinterpret_cast<char *>(&Header),
374 LW->WriteAll(reinterpret_cast<char *>(&ExtentsRecord),
377 LW->WriteAll(reinterpret_cast<char *>(B.Data),
/freebsd-13-stable/contrib/kyua/utils/logging/
H A Dmacros.hpp64 #define LW(message) utils::logging::log(utils::logging::level_warning, \ macro
H A Dmacros_test.cpp98 LW("Warning message");
/freebsd-13-stable/contrib/kyua/utils/signals/
H A Dmisc.cpp99 LW(e.what());
H A Dprogrammer.cpp107 LW("Destroying still-programmed signals::programmer object");
H A Dtimer.cpp445 LW("Auto-destroying still-programmed signals::timer object");
456 LW("Expired timer never fired; the code never called unprogram()!");
542 LW(F("Firing expired timer on destruction (was to fire on %s)") %
H A Dinterrupts.cpp206 LW("Destroying still-programmed signals::interrupts_handler object");
/freebsd-13-stable/contrib/kyua/utils/sqlite/
H A Dtransaction.cpp76 LW(F("Error while rolling back a transaction: %s") % e.what());
/freebsd-13-stable/contrib/kyua/utils/fs/
H A Dauto_cleaners.cpp67 LW(F("Failed to auto-cleanup directory '%s': %s") % _directory %
179 LW(F("Failed to auto-cleanup file '%s': %s") % _file %
/freebsd-13-stable/contrib/kyua/utils/
H A Dstacktrace.cpp182 LW("The builtin path to GDB is bogus, which probably indicates a bug "
247 LW(F("getrlimit should not have failed but got: %s") %
252 LW("getrlimit returned 0 for RLIMIT_CORE rlim_max; cannot raise "
261 LW(F("setrlimit should not have failed but got: %s") %
297 LW(F("Failed to open %s to append GDB's output") %
H A Dmemory.cpp147 LW("Don't know how to query the physical memory");
H A Dsanity.cpp120 LW(F("Could not install crash handler for signal %s: %s") %
H A Denv.cpp132 LW(F("Invalid value '%s' in HOME environment variable: %s") %
/freebsd-13-stable/contrib/kyua/cli/
H A Dconfig.cpp114 LW(F("Failed to load user-specific configuration file '%s': %s") %
218 LW(F("Ignoring failure to load configuration because the requested "
H A Dmain_test.cpp291 LW("Mock warning message");
315 LW("Mock warning message");
339 LW("Mock warning message");
/freebsd-13-stable/contrib/kyua/store/
H A Dlayout.cpp97 LW(F("Failed to open store dir %s: %s") % store_dir % e.what());
240 LW("HOME not defined; creating store database in current "
/freebsd-13-stable/contrib/kyua/utils/process/
H A Disolation.cpp146 LW("Failed to reset one or more signals to their default behavior");
H A Dexecutor.cpp349 LW(F("Implicitly cleaning up exit_handle for exec_handle %s; "
569 LW("Implicitly cleaning up executor; ignoring errors!");
594 LW(F("Failed to wait for PID %s") % pid);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVExpandPseudoInsts.cpp164 SecondOpcode = STI.is64Bit() ? RISCV::LD : RISCV::LW;
179 unsigned SecondOpcode = STI.is64Bit() ? RISCV::LD : RISCV::LW;
/freebsd-13-stable/contrib/llvm-project/lld/ELF/Arch/
H A DRISCV.cpp48 LW = 0x2003, enumerator in enum:Op
160 uint32_t load = config->is64 ? LD : LW;
179 write32le(buf + 4, itype(config->is64 ? LD : LW, X_T3, X_T3, lo12(offset)));
/freebsd-13-stable/contrib/kyua/engine/
H A Datf.cpp133 LW("Test case list wrote to stderr: " + stderr_contents);
/freebsd-13-stable/contrib/kyua/utils/cmdline/
H A Dui.cpp274 LW(message);

Completed in 195 milliseconds

12