Home
last modified time | relevance | path

Searched refs:DebugFlag (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/usr.sbin/mopd/mopd/
H A Dprocess.c46 extern int DebugFlag;
184 if (DebugFlag == DEBUG_ONELINE) { in mopSendASV()
188 if (DebugFlag >= DEBUG_HEADER) { in mopSendASV()
193 if (DebugFlag >= DEBUG_INFO) { in mopSendASV()
198 if (DebugFlag) { in mopSendASV()
288 if (DebugFlag == DEBUG_ONELINE) { in mopStartLoad()
292 if (DebugFlag >= DEBUG_HEADER) { in mopStartLoad()
297 if (DebugFlag >= DEBUG_INFO) { in mopStartLoad()
302 if (DebugFlag) { in mopStartLoad()
406 if (DebugFlag == DEBUG_ONELINE) { in mopNextLoad()
[all …]
H A Dmopd.c60 int DebugFlag = 0; /* print debugging messages */ variable
87 DebugFlag++; in main()
118 if ((!ForegroundFlag) && DebugFlag) in main()
122 if ((!ForegroundFlag) && (!DebugFlag)) { in main()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DDebug.cpp43 bool DebugFlag = false; variable
86 cl::location(DebugFlag));
104 DebugFlag = true; in operator =()
139 (!EnableDebugBuffering || !DebugFlag) ? 0 : DebugBufferSize) { in dbgs()
140 if (EnableDebugBuffering && DebugFlag && DebugBufferSize != 0) in dbgs()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DDebug.h65 do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType(TYPE)) { X; } \
79 extern bool DebugFlag;
/netbsd-src/usr.sbin/mopd/moptrace/
H A Dmoptrace.c60 int DebugFlag = 0; /* print debugging messages */ variable
85 DebugFlag++; in main()
/netbsd-src/usr.sbin/mopd/mopprobe/
H A Dmopprobe.c60 int DebugFlag = 0; /* print debugging messages */ variable
87 DebugFlag++; in main()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DCommandLine.rst877 // DebugFlag.h - Get access to the '-debug' command line option
880 // DebugFlag - This boolean is set to true if the '-debug' command line option
884 extern bool DebugFlag;
893 #define LLVM_DEBUG(X) do { if (DebugFlag) { X; } } while (0)
897 ``DebugFlag`` explicitly if they want to. Now we just need to be able to set
898 the ``DebugFlag`` boolean when the option is set. To do this, we pass an
904 bool DebugFlag; // the actual value
906 Debug("debug", cl::desc("Enable debug output"), cl::Hidden, cl::location(DebugFlag));
911 attribute, so that ``DebugFlag`` is automatically set.
1739 library. Examples of this include the ``llvm::DebugFlag`` exported by the
H A DProgrammersManual.rst1135 disable it directly in gdb. Just use "``set DebugFlag=0``" or "``set
1136 DebugFlag=1``" from the gdb if the program is running. If the program hasn't
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonGenInsert.cpp83 return DebugFlag && isCurrentDebugType(DEBUG_TYPE); in isDebug()
H A DHexagonConstPropagation.cpp2804 bool Debugging = DebugFlag && isCurrentDebugType(DEBUG_TYPE); in rewriteHexConstDefs()