Searched refs:trace (Results 151 - 175 of 460) sorted by relevance

1234567891011>>

/freebsd-current/crypto/openssh/regress/
H A Dlogin-timeout.sh6 trace "test login grace time"
H A Dagent-ptrace.sh44 trace "start agent"
65 trace "kill agent"
H A Dputty-kex.sh20 trace "omitting unsupported KEX ${k}"
35 trace putty: ${kexmsg}
H A Dkeygen-comment.sh10 trace "fingerprinting $file"
23 trace "generating $t key in '$fmt' format"
43 trace "fingerprinting $t key using private key file"
H A Dkeygen-convert.sh18 trace "generating $t key"
23 trace "export $t private to rfc4716 public"
27 trace "export $t public to rfc4716 public"
34 trace "import $t rfc4716 public"
43 trace "set passphrase $t"
47 trace "export $t to public with passphrase"
H A Dforwarding.sh27 trace "start forwarding, fork to background"
31 trace "transfer over forwarded channels and check result"
40 trace "exit on -$d forward failure"
67 trace "simple clear forwarding"
70 trace "clear local forward"
84 trace "clear remote forward"
98 trace "stdio forwarding"
108 trace "config file: start forwarding, fork to background"
112 trace "config file: transfer over forwarded channels and check result"
120 trace "transfe
[all...]
H A Dcfgmatch.sh60 trace "match permitopen localhost"
67 trace "match permitopen proxy"
79 trace "match permitopen proxy w/key opts"
87 trace "match permitopen localhost"
99 trace "match permitopen proxy w/key opts"
112 trace "nomatch permitopen proxy w/key opts"
152 trace "test spec $spec"
H A Dmultiplex.sh9 trace "will use ProxyCommand $proxycmd"
31 trace "start master, fork to background"
42 trace "setenv over multiplexed connection"
51 trace "env passing over multiplexed connection"
62 trace "ssh transfer over multiplexed connection and check result"
68 trace "ssh transfer over multiplexed connection and check result"
74 trace "sftp transfer over multiplexed connection and check result"
81 trace "scp transfer over multiplexed connection and check result"
88 trace "forward over TCP/IP and check result"
98 trace "forwar
[all...]
H A Dbanner.sh10 trace "test missing banner file"
31 trace "test banner size $s"
38 trace "test suppress banner (-q)"
H A Dagent.sh11 trace "start agent, args ${EXTRA_AGENT_ARGS} -s"
33 trace "overwrite authorized keys"
80 trace "simple connect via agent"
88 trace "connect via agent using $t key"
101 trace "agent forwarding"
119 trace "agent forwarding different agent"
147 trace "connect via agent using $t key"
160 trace "delete all agent keys"
172 trace "readd keys"
199 trace "delet
[all...]
H A Dsshfp-connect.sh47 trace "sshfp connect $n good fingerprint"
60 trace "sshfp connect $n bad fingerprint"
H A Dagent-getpeereid.sh30 trace "start agent"
56 trace "kill agent"
/freebsd-current/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_debugging.cpp50 uptr AsanGetStack(uptr addr, uptr *trace, u32 size, u32 *thread_id, argument
66 if (trace && size) {
69 trace[i] = StackTrace::GetPreviousInstructionPc(stack.trace[i]);
132 uptr __asan_get_alloc_stack(uptr addr, uptr *trace, uptr size, u32 *thread_id) { argument
133 return AsanGetStack(addr, trace, size, thread_id, /* alloc_stack */ true);
137 uptr __asan_get_free_stack(uptr addr, uptr *trace, uptr size, u32 *thread_id) { argument
138 return AsanGetStack(addr, trace, size, thread_id, /* alloc_stack */ false);
/freebsd-current/sys/contrib/zstd/lib/common/
H A Dzstd_trace.h132 * @param trace The zstd tracing info.
136 ZSTD_Trace const* trace);
151 * @param trace The zstd tracing info.
155 ZSTD_Trace const* trace);
/freebsd-current/sys/contrib/dev/athk/
H A Dtrace.h65 #define TRACE_INCLUDE_FILE trace
68 #include <trace/define_trace.h>
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace.h43 const uptr *trace; member in struct:__sanitizer::StackTrace
52 StackTrace() : trace(nullptr), size(0), tag(0) {}
53 StackTrace(const uptr *trace, u32 size) : trace(trace), size(size), tag(0) {} argument
54 StackTrace(const uptr *trace, u32 size, u32 tag) argument
55 : trace(trace), size(size), tag(tag) {}
117 // Get the stack trace with the given pc and bp.
118 // The pc will be in the position 0 of the resulting stack trace
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.cpp84 Trace* trace = &thr->tctx->trace; local
85 if (trace->parts_allocated == max_parts ||
89 if (part && part->trace) {
90 Trace* trace1 = part->trace;
92 part->trace = nullptr;
102 if (trace->parts_allocated < max_parts) {
103 trace->parts_allocated++;
118 DCHECK(part->trace);
119 part->trace
149 auto trace = &tctx->trace; local
326 auto* trace = &thr->tctx->trace; local
910 Trace *trace = &thr->tctx->trace; local
959 Trace* trace = &thr->tctx->trace; local
[all...]
H A Dtsan_debugging.cpp57 static void CopyTrace(SymbolizedStack *first_frame, void **trace, argument
62 trace[i++] = (void *)frame->info.address;
100 int __tsan_get_report_stack(void *report, uptr idx, void **trace, argument
105 if (stack) CopyTrace(stack->frames, trace, trace_size);
111 int *size, int *write, int *atomic, void **trace,
121 if (mop->stack) CopyTrace(mop->stack->frames, trace, trace_size);
128 int *fd, int *suppressable, void **trace,
140 if (loc->stack) CopyTrace(loc->stack->frames, trace, trace_size);
156 int *destroyed, void **trace, uptr trace_size) {
163 if (mutex->stack) CopyTrace(mutex->stack->frames, trace, trace_siz
110 __tsan_get_report_mop(void *report, uptr idx, int *tid, void **addr, int *size, int *write, int *atomic, void **trace, uptr trace_size) argument
126 __tsan_get_report_loc(void *report, uptr idx, const char **type, void **addr, uptr *start, uptr *size, int *tid, int *fd, int *suppressable, void **trace, uptr trace_size) argument
155 __tsan_get_report_mutex(void *report, uptr idx, uptr *mutex_id, void **addr, int *destroyed, void **trace, uptr trace_size) argument
168 __tsan_get_report_thread(void *report, uptr idx, int *tid, tid_t *os_id, int *running, const char **name, int *parent_tid, void **trace, uptr trace_size) argument
244 __tsan_get_alloc_stack(uptr addr, uptr *trace, uptr size, int *thread_id, tid_t *os_id) argument
[all...]
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/sdt/
H A Dtst.sdtargs.d64 trace("test timed out");
/freebsd-current/contrib/wpa/src/utils/
H A DMakefile14 trace.o \
/freebsd-current/libexec/rtld-elf/
H A Ddebug.h54 #define trace() msg(_BASENAME_RTLD ": " __XSTRING(__LINE__) "\n") macro
/freebsd-current/sbin/routed/
H A DMakefile6 SRCS= if.c input.c main.c output.c parms.c radix.c rdisc.c table.c trace.c
/freebsd-current/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dtsan_interface.h193 /// mutexes, threads, unique thread IDs) and a stack trace of a <c>sleep()</c>
205 /// \param sleep_trace A buffer to store the stack trace of a <c>sleep()</c>
207 /// \param trace_size Size in bytes of the trace buffer.
218 /// \param trace A buffer to store the stack trace.
219 /// \param trace_size Size in bytes of the trace buffer.
222 void **trace,
234 /// \param trace A buffer to store the stack trace.
235 /// \param trace_size Size in bytes of the trace buffe
[all...]
/freebsd-current/usr.bin/banner/
H A Dbanner.c1011 static int debug, i, j, linen, max, nchars, pc, term, trace, x, y; variable
1027 trace = 1;
1109 if (trace)
1114 if (trace)
1127 if (trace)
1153 if (trace)
/freebsd-current/sys/contrib/dev/mediatek/mt76/mt7915/
H A Dcoredump.h12 struct trace { struct
46 struct trace t;
52 struct trace irq[60];

Completed in 130 milliseconds

1234567891011>>