Searched refs:do_trace (Results 1 – 8 of 8) sorted by relevance
/external/u-boot/cmd/ |
D | trace.c | 80 int do_trace(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) in do_trace() function 112 trace, 4, 1, do_trace,
|
/external/ltp/testcases/kernel/controllers/freezer/ |
D | vfork.c | 230 int do_trace(pid_t child, int num_children) in do_trace() function 371 exit_status = do_trace(child, ++num_vforks); in main()
|
/external/curl/lib/ |
D | openldap.c | 227 static int do_trace = 0; in ldap_connect() local 229 do_trace = (env && strtol(env, NULL, 10) > 0); in ldap_connect() 230 if(do_trace) { in ldap_connect() 231 ldap_set_option(li->ld, LDAP_OPT_DEBUG_LEVEL, &do_trace); in ldap_connect()
|
D | ldap.c | 756 static int do_trace = -1; in _ldap_trace() local 759 if(do_trace == -1) { in _ldap_trace() 761 do_trace = (env && strtol(env, NULL, 10) > 0); in _ldap_trace() 763 if(!do_trace) in _ldap_trace()
|
/external/bcc/docs/ |
D | tutorial_bcc_python_developer.md | 126 int do_trace(struct pt_regs *ctx) { 147 b.attach_kprobe(event="sys_sync", fn_name="do_trace") 621 int do_trace(struct pt_regs *ctx) { 633 u.enable_probe(probe="http__server__request", fn_name="do_trace") 644 1. ```u.enable_probe(probe="http__server__request", fn_name="do_trace")```: Attach our ```do_trace(…
|
D | reference_guide.md | 234 int do_trace(struct pt_regs *ctx) { 353 int do_trace(struct pt_regs *ctx) { 377 int do_trace(void *ctx) { 912 BPF(text='int do_trace(void *ctx) { bpf_trace_printk("hit!\\n"); return 0; }'); 974 b.attach_kprobe(event="sys_clone", fn_name="do_trace") 977 …rnel ```sys_clone()``` function, which will then run our BPF defined ```do_trace()``` function eac… 1119 u.enable_probe(probe="http__server__request", fn_name="do_trace") 1139 b.attach_raw_tracepoint("sched_swtich", "do_trace")
|
/external/toybox/toys/pending/ |
D | traceroute.c | 197 static void do_trace() in do_trace() function 640 do_trace(); in traceroute_main()
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | direct_session.cc | 541 const bool do_trace = (run_options.trace_level() > RunOptions::NO_TRACE); in RunInternal() local 555 if (do_trace || update_cost_model || in RunInternal()
|