Searched full:tplist (Results 1 – 25 of 37) sorted by relevance
12
/external/bcc/man/man8/ |
D | tplist.8 | 1 .TH tplist 8 "2016-03-20" "USER COMMANDS" 3 tplist \- Display kernel tracepoints or USDT probes and their formats. 5 .B tplist [-p PID] [-l LIB] [-v] [filter] 7 tplist lists all kernel tracepoints, and can optionally print out the tracepoint 9 tplist can also list USDT probes embedded in a specific library or executable, 36 .B tplist 40 .B tplist -v 'net:*' 44 .B tplist -l pthread 48 .B tplist -p 4717 'libc:*' 52 .B tplist -l node
|
D | trace.8 | 142 discover the format of your tracepoint, use the tplist tool. 145 To determine which arguments your probe has, use the tplist tool.
|
D | argdist.8 | 99 according to the tracepoint format (which you can obtain using tplist). 102 special arg1, arg2, ... variables. To obtain their types, use the tplist tool.
|
D | pythonstat.8 | 133 trace(8), argdist(8), tplist(8)
|
D | nodestat.8 | 133 trace(8), argdist(8), tplist(8)
|
D | perlstat.8 | 133 trace(8), argdist(8), tplist(8)
|
D | javastat.8 | 133 trace(8), argdist(8), tplist(8)
|
D | ustat.8 | 133 trace(8), argdist(8), tplist(8)
|
D | rubystat.8 | 133 trace(8), argdist(8), tplist(8)
|
D | phpstat.8 | 133 trace(8), argdist(8), tplist(8)
|
D | tclstat.8 | 133 trace(8), argdist(8), tplist(8)
|
/external/bcc/tools/ |
D | tplist_example.txt | 1 Demonstrations of tplist. 4 tplist displays kernel tracepoints and USDT probes, including their 13 executable contains. Just run tplist on that executable (or library): 15 $ tplist -l basic_usdt 22 $ tplist '*loop_iter' -l basic_usdt -v 36 $ tplist -l pthread # list probes in libpthread 44 $ tplist -l c # list probes in libc 52 tplist also understands kernel tracepoints, and can list their format 55 # tplist 'block*' 79 $ tplist -v block:block_rq_complete [all …]
|
D | tplist.py | 3 # tplist Display kernel tracepoints or USDT probes and their formats. 5 # USAGE: tplist [-p PID] [-l LIB] [-v] [filter]
|
D | trace_example.txt | 108 pointer variable), use the tplist tool. For example: 110 # tplist -v block:block_rq_complete
|
D | argdist_example.txt | 278 use the tplist tool (tplist -v net:net_dev_start_xmit).
|
/external/bcc/snapcraft/ |
D | snapcraft.yaml | 288 tplist: 289 command: wrapper tplist 290 aliases: [tplist]
|
/external/bcc/tests/python/ |
D | test_usdt3.py | 108 # os.system("tplist.py -vvv -p " + str(self.app.pid))
|
D | test_tools_smoke.py | 325 self.run_with_duration("tplist.py -p %d" % os.getpid())
|
/external/bcc/examples/usdt_sample/ |
D | usdt_sample.md | 28 $ python tools/tplist.py -l examples/usdt_sample/build/usdt_sample_lib1/libusdt_sample_lib1.so
|
/external/libvpx/libvpx/vp8/encoder/ |
D | encodeframe.c | 369 cpi->tplist[mb_row].start = *tp; in encode_mb_row() 527 cpi->tplist[mb_row].stop = *tp; in encode_mb_row() 798 cpi->tok_count += (unsigned int)(cpi->tplist[mb_row].stop - in vp8_encode_frame() 799 cpi->tplist[mb_row].start); in vp8_encode_frame()
|
D | bitstream.c | 307 const TOKENEXTRA *p = cpi->tplist[mb_row].start; in pack_tokens_into_partitions() 308 const TOKENEXTRA *stop = cpi->tplist[mb_row].stop; in pack_tokens_into_partitions() 324 const TOKENEXTRA *p = cpi->tplist[mb_row].start; in pack_mb_row_tokens() 325 const TOKENEXTRA *stop = cpi->tplist[mb_row].stop; in pack_mb_row_tokens()
|
D | ethreading.c | 90 cpi->tplist[mb_row].start = tp; in thread_encoding_proc() 259 cpi->tplist[mb_row].stop = tp; in thread_encoding_proc()
|
/external/bcc/src/python/bcc/ |
D | usdt.py | 165 tplist tool.""")
|
/external/bcc/ |
D | README.md | 152 - tools/[tplist](tools/tplist.py): Display kernel tracepoints or USDT probes and their formats. [Ex…
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_bitstream.c | 499 tok = cpi->tplist[tile_row][tile_col][tile_sb_row].start; in write_modes() 500 tok_end = tok + cpi->tplist[tile_row][tile_col][tile_sb_row].count; in write_modes() 508 assert(tok == cpi->tplist[tile_row][tile_col][tile_sb_row].stop); in write_modes()
|
12