Home
last modified time | relevance | path

Searched refs:log (Results 201 – 225 of 1601) sorted by relevance

12345678910>>...65

/freebsd/libexec/rc/rc.d/
H A Dsyslogd33 if [ ! -L /dev/log ] && ! check_jail jailed; then
34 ln -sf /var/run/log /dev/log
36 rm -f /var/run/log
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleThreadPlanStepThroughObjCTrampoline.cpp133 Log *log = GetLog(LLDBLog::Step); in ShouldStop() local
150 LLDB_LOGF(log, "Got target implementation of 0x0, stopping."); in ShouldStop()
155 LLDB_LOGF(log, in ShouldStop()
174 LLDB_LOGF(log, "Running to ObjC method implementation: 0x%" PRIx64, in ShouldStop()
186 LLDB_LOG(log, "Failed to deallocate the sel str at {0} - error: {1}", in ShouldStop()
189 LLDB_LOG(log, in ShouldStop()
194 LLDB_LOGF(log, in ShouldStop()
373 Log *log = GetLog(LLDBLog::Step); in ShouldStop() local
380 LLDB_LOGF(log, "ObjC Step through plan failed. Stepping out."); in ShouldStop()
411 LLDB_LOG(log, "Couldn't find target for message dispatch, continuing."); in ShouldStop()
H A DAppleObjCRuntimeV2.cpp1663 LLDB_LOG(log, in CreateSharedCacheImageHeaders()
1675 LLDB_LOG(log, in CreateSharedCacheImageHeaders()
1688 LLDB_LOG(log, in CreateSharedCacheImageHeaders()
2188 if (log) { in UpdateISAToDescriptorMap()
2194 if (log) { in UpdateISAToDescriptorMap()
2214 bool should_log = log && log->GetVerbose(); in ParseClassInfoArray()
2463 if (log) { in UpdateISAToDescriptorMap()
2469 if (log) { in UpdateISAToDescriptorMap()
2627 LLDB_LOG(log, in RealizedClassGenerationCountChanged()
2807 if (log) in CreateInstance()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThread.cpp730 LLDB_LOGF(log, in ShouldStop()
738 LLDB_LOGF(log, in ShouldStop()
749 LLDB_LOGF(log, in ShouldStop()
762 if (log) { in ShouldStop()
763 LLDB_LOGF(log, in ShouldStop()
926 log, in ShouldStop()
943 if (log) { in ShouldStop()
1072 if (log) { in PushPlan()
1086 if (log) { in PopPlan()
1197 LLDB_LOGF(log, in DiscardThreadPlansUpToPlan()
[all …]
/freebsd/tools/test/stress2/misc/
H A Dsyscall5.sh41 log=/tmp/syscall5.log
72 rm -f $log
90 echo "`date '+%T'` syscall $n ($name)" >> $log
99 rm -f $log $last
H A Dvm_fault_dontneed.sh55 log=/tmp/dtrace.$$
56 trap "rm -f $log" EXIT INT
58 -c "/tmp/vm_fault_dontneed $diskimage" > $log 2>&1
60 count=`grep vm_fault_dontneed $log | awk 'NF == 2 {print $NF}'`
63 { echo "vm_fault_dontneed count = $count"; s=1; cat $log; }
H A Dbuildkernel.sh49 log=$mntpoint/log
56 TARGET_ARCH=amd64 > $log 2>&1; s=$?
57 [ $s -ne 0 ] && tail -50 $log
H A Dburnin.sh51 log=/tmp/burnin.$d.log
53 echo "# `uname -a` $mode mode `hostname`" > $log
56 /tmp/burnin -r $runtime -d $mntpoint >> $log
58 ministat -A -C 2 -w 72 $log | tail -1 | awk '{if ($NF > .1) exit(1)}'
60 [ $s -ne 0 ] && ministat -C 2 -w 72 $log
66 rm -rf /tmp/burnin $log
H A Ddtrace.sh46 log=/tmp/dtrace.$$
47 trap "rm -f $log" EXIT INT
49 @rw[execname,probefunc] = count(); }' > $log 2>&1 &
59 tail -5 $log
/freebsd/tools/test/stress2/tools/
H A Dfail.sh32 log=/tmp/stress2.d/fail
34 [ -r $log ] || exit 1
36 egrep "^(`date +%Y%m%d`|`date -v-1d +%Y%m%d`)" $log | while read l; do
41 grep $f $log | tail -1
48 c=`grep -c $n $log`
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DLog.h168 Log *log = log_ptr.load(std::memory_order_relaxed); in GetLog() local
169 if (log && ((log->GetMask() & mask) != 0)) in GetLog()
170 return log; in GetLog()
342 #define LLDB_LOG(log, ...) \ argument
344 ::lldb_private::Log *log_private = (log); \
349 #define LLDB_LOGF(log, ...) \ argument
351 ::lldb_private::Log *log_private = (log); \
356 #define LLDB_LOGV(log, ...) \ argument
358 ::lldb_private::Log *log_private = (log); \
365 #define LLDB_LOG_ERROR(log, error, ...) \ argument
[all …]
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DUserExpression.cpp149 Log *log(GetLog(LLDBLog::Expressions | LLDBLog::Step)); in Evaluate() local
156 LLDB_LOG(log, "== [UserExpression::Evaluate] Passed a context object of " in Evaluate()
167 LLDB_LOG(log, "== [UserExpression::Evaluate] Passed a context object of " in Evaluate()
187 LLDB_LOG(log, "== [UserExpression::Evaluate] Passed a NULL target, can't " in Evaluate()
196 LLDB_LOG(log, "== [UserExpression::Evaluate] No process, but the policy is " in Evaluate()
257 LLDB_LOG(log, "== [UserExpression::Evaluate] Getting expression: {0} ==", in Evaluate()
262 LLDB_LOG(log, "== [UserExpression::Evaluate] Parsing expression {0} ==", in Evaluate()
368 LLDB_LOG(log, "== [UserExpression::Evaluate] Executing expression =="); in Evaluate()
375 LLDB_LOG(log, "== [UserExpression::Evaluate] Execution completed " in Evaluate()
389 LLDB_LOG(log, in Evaluate()
[all …]
H A DFunctionCaller.cpp248 Log *log = GetLog(LLDBLog::Step); in InsertFunction() local
249 LLDB_LOGF(log, "Call Address: 0x%" PRIx64 " Struct Address: 0x%" PRIx64 ".\n", in InsertFunction()
259 Log *log(GetLog(LLDBLog::Expressions | LLDBLog::Step)); in GetThreadPlanToCallFunction() local
261 LLDB_LOGF(log, in GetThreadPlanToCallFunction()
298 Log *log(GetLog(LLDBLog::Expressions | LLDBLog::Step)); in FetchFunctionResults() local
300 LLDB_LOGF(log, in FetchFunctionResults()
371 Log *log(GetLog(LLDBLog::Expressions | LLDBLog::Step)); in ExecuteFunction() local
373 LLDB_LOGF(log, in ExecuteFunction()
391 if (log) { in ExecuteFunction()
393 LLDB_LOGF(log, in ExecuteFunction()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JSON/
H A DObjectFileJSON.cpp60 Log *log = GetLog(LLDBLog::Symbols); in CreateInstance() local
67 LLDB_LOG_ERROR(log, json.takeError(), in CreateInstance()
75 LLDB_LOG_ERROR(log, root.getError(), in CreateInstance()
87 LLDB_LOG_ERROR(log, root.getError(), in CreateInstance()
118 Log *log = GetLog(LLDBLog::Symbols); in GetModuleSpecifications() local
125 LLDB_LOG_ERROR(log, json.takeError(), in GetModuleSpecifications()
133 LLDB_LOG_ERROR(log, root.getError(), in GetModuleSpecifications()
164 Log *log = GetLog(LLDBLog::Symbols); in ParseSymtab() local
169 LLDB_LOG_ERROR(log, symbol.takeError(), "invalid symbol: {0}"); in ParseSymtab()
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpointResourceList.cpp23 Log *log = GetLog(LLDBLog::Watchpoints); in Add() local
25 LLDB_LOGF(log, "WatchpointResourceList::Add(addr 0x%" PRIx64 " size %zu)", in Add()
34 Log *log = GetLog(LLDBLog::Watchpoints); in Remove() local
38 LLDB_LOGF(log, in Remove()
50 Log *log = GetLog(LLDBLog::Watchpoints); in RemoveByAddress() local
54 LLDB_LOGF(log, in RemoveByAddress()
/freebsd/share/examples/ipfilter/rules/
H A Dexample.126 # drop and log any IP packets with options set in them.
8 block in log all with ipopts
10 # log packets with BOTH ssrr and lsrr set
12 log in all with opt lsrr,ssrr
/freebsd/contrib/wpa/hostapd/logwatch/
H A DREADME2 readable summary. This directory has a configuration file and a log
3 analyzer script for parsing hostapd system log entries for logwatch.
6 /etc/log.d/conf/services/hostapd.conf
7 /etc/log.d/scripts/services/hostapd
/freebsd/crypto/openssh/regress/
H A Dputty-kex.sh30 2>${OBJ}/log/putty-kex-$k.log
34 kexmsg=`grep -E '^Doing.* key exchange' ${OBJ}/log/putty-kex-$k.log`
/freebsd/contrib/ofed/opensm/opensm/
H A Dosm_event_plugin.c86 OSM_LOG(&osm->log, OSM_LOG_ERROR, in osm_epi_construct()
96 OSM_LOG(&osm->log, OSM_LOG_ERROR, in osm_epi_construct()
105 OSM_LOG(&osm->log, OSM_LOG_ERROR, "Error loading plugin: " in osm_epi_construct()
114 OSM_LOG(&osm->log, OSM_LOG_ERROR, "Error loading plugin" in osm_epi_construct()
122 OSM_LOG(&osm->log, OSM_LOG_ERROR, in osm_epi_construct()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/COFF/
H A DObjectFileCOFF.cpp50 Log *log = GetLog(LLDBLog::Object); in CreateInstance() local
55 LLDB_LOG(log, in CreateInstance()
71 LLDB_LOG(log, in CreateInstance()
85 LLDB_LOG_ERROR(log, binary.takeError(), in CreateInstance()
91 LLDB_LOG(log, "ObjectFileCOFF::ObjectFileCOFF module = {1} ({2}), file = {3}", in CreateInstance()
117 Log *log = GetLog(LLDBLog::Object); in GetModuleSpecifications() local
118 LLDB_LOG_ERROR(log, binary.takeError(), in GetModuleSpecifications()
256 Log *log = GetLog(LLDBLog::Object); in ParseSymtab() local
275 LLDB_LOG_ERROR(log, NameOrErr.takeError(), in ParseSymtab()
296 LLDB_LOG(log, "ObjectFileCOFF::ParseSymtab processed {0} symbols", in ParseSymtab()
/freebsd/contrib/arm-optimized-routines/math/tools/
H A Dlog.sollya1 // polynomial for approximating log(1+x)
7 // |log(1+x)| > 0x1p-4 outside the interval
11 // find log(1+x)/x polynomial with minimal relative error
12 // (minimal relative error polynomial for log(1+x) is the same * x)
15 // f = log(1+x)/x; using taylor series
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugAranges.cpp44 Log *log = GetLog(DWARFLog::DebugInfo); in extract() local
45 LLDB_LOG_ERROR(log, std::move(error), in extract()
72 void DWARFDebugAranges::Dump(Log *log) const { in Dump()
73 if (log == nullptr) in Dump()
80 LLDB_LOG(log, "{0:x8}: [{1:x16} - {2:x16})", entry->data, in Dump()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangHost.cpp34 Log *log = GetLog(LLDBLog::Host); in VerifyClangPath() local
35 LLDB_LOGF(log, in VerifyClangPath()
52 Log *log = GetLog(LLDBLog::Host); in DefaultComputeClangResourceDirectory() local
75 LLDB_LOG(log, in DefaultComputeClangResourceDirectory()
166 Log *log = GetLog(LLDBLog::Host); in GetClangResourceDir() local
167 LLDB_LOGF(log, "GetClangResourceDir() => '%s'", in GetClangResourceDir()
/freebsd/tools/tools/commitsdb/
H A Dmake_commit_db60 my @log = <LOG>;
61 my $log = join "", @log;
65 my @entries = split /----------------------------\n/, $log;
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp95 Log *log = GetLog(LLDBLog::Platform); in PutFile() local
160 Log *log = GetLog(LLDBLog::Platform); in GetFile() local
367 Log *log = GetLog(LLDBLog::Platform); in Attach() local
384 if (log) { in Attach()
421 Log *log = GetLog(LLDBLog::Platform); in DebugProcess() local
422 LLDB_LOG(log, "target {0}", &target); in DebugProcess()
455 LLDB_LOG(log, "error: {0}", error); in DebugProcess()
459 LLDB_LOG(log, "successfully created process"); in DebugProcess()
465 if (log) { in DebugProcess()
472 LLDB_LOG(log, "{0}", stream.GetData()); in DebugProcess()
[all …]

12345678910>>...65