/packages/services/Car/tests/BugReportApp/libs/ |
D | opencensus-api-0.21.0.jar | META-INF/
META-INF/MANIFEST.MF
io/
io/opencensus/
io/ ... |
/packages/apps/Car/DebuggingRestrictionController/libs/ |
D | opencensus-api-0.24.0.jar | ... io/
io/opencensus/
io/opencensus/trace/
io/opencensus/trace/AttributeValue$AttributeValueBoolean ... |
/packages/modules/NeuralNetworks/tools/systrace_parser/parser/ |
D | input.py | 11 trace = [] 21 trace.append([line, lineno]) 22 return trace 27 def parse_trace_part(trace): argument 57 for [line, lineno] in trace:
|
/packages/modules/adb/ |
D | trace.sh | 3 if ! [ -e $ANDROID_BUILD_TOP/external/chromium-trace/systrace.py ]; then 13 TRACE_TEMP=`mktemp /tmp/trace.XXXXXX` 14 echo Saving trace to ${TRACE_TEMP}, html file to ${TRACE_TEMP}.html 16 $ANDROID_BUILD_TOP/external/chromium-trace/systrace.py --from-file=${TRACE_TEMP} -o ${TRACE_TEMP}.h…
|
/packages/modules/Virtualization/docs/debug/ |
D | tracing.md | 19 * Resetting ring buffers (by clearing the trace file) is only supported when there are no active 20 readers. If the trace file is cleared while there are active readers, then the ring buffers will 29 trace analysis widely used in Android. Perfetto supports capturing and visualizing hypervisor 45 Alternatively you can use full trace config to capture hypervisor. Example usage: 68 ./record_android_trace -c config.pbtx -o trace_file.perfetto-trace 74 https://perfetto.dev/docs/quickstart/android-tracing#recording-a-trace-through-the-cmdline) 95 documentation is available at https://perfetto.dev/docs/quickstart/trace-analysis and 96 https://perfetto.dev/docs/analysis/trace-processor. 151 ### Capturing trace in Microdroid 159 Here is a quick example on how trace Microdroid VM: [all …]
|
/packages/modules/StatsD/perfetto/ |
D | README.md | 8 The output trace will be written at /data/misc/perfetto-traces/boottrace.perfetto-trace. 9 The file will be removed before a new trace is started. 12 adb pull /data/misc/perfetto-traces/boottrace.perfetto-trace
|
/packages/modules/Virtualization/tests/hostside/helper/java/com/android/microdroid/test/host/ |
D | KvmHypTracer.java | 120 File trace = mDevice.pullFile(t); in run() local 121 assertNotNull(trace); in run() 122 mTraces.add(trace); in run() 134 for (File trace: mTraces) { in getDurationStats() 135 BufferedReader br = new BufferedReader(new FileReader(trace)); in getDurationStats() 160 throw new ParseException("Hyp event found twice in a row: " + trace + " - " + l, in getDurationStats()
|
/packages/modules/NeuralNetworks/tools/systrace_parser/ |
D | parse_systrace.py | 24 def produce_stats(trace, print_detail=False, total_times=False, per_execution=False, json=False): argument 28 tracked_pids, driver_tgids, parsed = parse_trace_part(trace) 77 trace = get_trace_part(args.filename) variable 78 produce_stats(trace, args.print_detail, args.total_times, args.per_execution, args.json)
|
/packages/providers/MediaProvider/ |
D | perfetto_config.pbtx | 21 # Uncomment to enable. Note: on a userdebug build it will add a trace for every SQLite 22 # command any application runs, which will make a trace very "noisy". 26 # Uncomment to enable. Note: on a userdebug build it will add a trace for every Binder 27 # transaction for every application, which will make a trace very "noisy". 32 # category for every application, which will make a trace very "noisy".
|
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/ |
D | LogcatLogTest.java | 257 WifiLog.LogMessage logMessage = mLogger.trace("%"); in traceLogMessageIncludesCallerName() 283 WifiLog.LogMessage logMessage = mLogger.trace("%", in traceLogMessageDoesNotCrashOnOversizedNumFramesToIgnore() 296 WifiLog.LogMessage logMessage = mLogger.trace("%", Integer.MAX_VALUE); in traceLogMessageDoesNotCrashOnOverflowingNumFramesToIgnore() 308 WifiLog.LogMessage logMessage = mLogger.trace("%", Integer.MIN_VALUE); in traceLogMessageDoesNotCrashOnUndersizedNumFramesToIgnore() 318 assertThat(mLogger.trace("%"), instanceOf(NoLogMessage.class)); in traceLogMessageReturnsNoLogMessageByDefault() 327 return mLogger.trace(format, 1); in traceHelper()
|
/packages/modules/Virtualization/virtualizationservice/src/ |
D | atom.rs | 24 use log::{trace, warn}; 56 Ok(_) => trace!("statslog_rust succeeded for virtualization service"), in forward_vm_creation_atom() 70 Ok(_) => trace!("statslog_rust succeeded for virtualization service"), in forward_vm_booted_atom() 122 Ok(_) => trace!("statslog_rust succeeded for virtualization service"), in forward_vm_exited_atom()
|
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/common/ |
D | ProvisionLogger.java | 175 StackTraceElement[] trace = Thread.currentThread().getStackTrace(); in getTag() local 176 if (trace == null) { in getTag() 181 for (StackTraceElement item : trace) { in getTag()
|
/packages/modules/Virtualization/vmbase/src/virtio/ |
D | hal.rs | 23 use log::trace; 96 trace!("VirtIO bounce buffer at {bounce:?} (PA:{paddr:#x}) initialized from {src:?}"); in share() 109 trace!("VirtIO bounce buffer at {bounce:?} (PA:{paddr:#x}) copied back to {dest:?}"); in unshare()
|
/packages/apps/Messaging/src/com/android/messaging/util/ |
D | DebugUtils.java | 416 StackTraceElement[] trace = Thread.currentThread().getStackTrace(); 417 if (trace == null || trace.length < (depth + 2)) { 422 for (int i = 0; i < trace.length - 1; i++) { 423 String methodName = trace[i].getMethodName(); 425 return trace[i + depth + 1];
|
/packages/modules/Wifi/service/ |
D | wifi.rc | 29 # Create trace buffer, and set basic configuration. 81 # Set DAC to allow system to enable/disable, and read wifi trace 85 chown system /sys/kernel/debug/tracing/instances/wifi/trace 88 chmod 600 /sys/kernel/debug/tracing/instances/wifi/trace 92 chown system /sys/kernel/tracing/instances/wifi/trace 95 chmod 600 /sys/kernel/tracing/instances/wifi/trace
|
/packages/modules/Bluetooth/system/rust/src/gatt/ |
D | ffi.rs | 10 use log::{error, info, trace, warn}; 195 trace!("on_server_read ({conn_id:?}, {trans_id:?}, {handle:?}, {attr_type:?}, {offset:?}"); in on_server_read() 215 trace!( in on_server_write() 238 trace!("on_indication_sent_confirmation ({conn_id:?}, {result:?}"); in on_indication_sent_confirmation() 254 trace!("on_execute ({conn_id:?}, {trans_id:?}, {decision:?}"); in on_execute() 424 trace!("send_response {conn_id:?}, {trans_id:?}, {:?}", value.as_ref().err()); in send_response() 443 trace!("send_indication {handle:?}, {conn_id:?}"); in send_indication()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | FakeWifiLog.java | 40 public LogMessage trace(String format) { in trace() method in FakeWifiLog 45 public LogMessage trace(String format, int numFramesToIgnore) { in trace() method in FakeWifiLog
|
D | WifiLog.java | 122 LogMessage trace(@CompileTimeConstant @NonNull String format); in trace() method 136 LogMessage trace(@NonNull String format, int numFramesToIgnore); in trace() method
|
/packages/services/Car/cpp/evs/manager/aidl/src/ |
D | VirtualCamera.cpp | 63 ScopedTrace trace(__PRETTY_FUNCTION__, in doneWithFrame() local 407 ScopedTrace trace(__PRETTY_FUNCTION__); in startVideoStream() local 475 ScopedTrace trace("Processing a frame buffer", lastFrameTimestamp); in startVideoStream() local 575 ScopedTrace trace("Returning frame buffers"); in startVideoStream() local 629 ScopedTrace trace(__PRETTY_FUNCTION__); in stopVideoStream() local 701 ScopedTrace trace(__PRETTY_FUNCTION__); in shutdown() local 780 ScopedTrace trace(__PRETTY_FUNCTION__, bufDesc.bufferId); in deliverFrame() local 827 ScopedTrace trace(__PRETTY_FUNCTION__, static_cast<int>(event.aType)); in notify()
|
/packages/modules/Virtualization/vmbase/src/memory/ |
D | shared.rs | 42 use log::{debug, error, trace}; 455 trace!("Allocated shared buffer at {buffer:?} with {layout:?}"); in alloc_shared() 487 trace!("Deallocated shared buffer at {vaddr:?} with {layout:?}"); in dealloc_shared() 520 trace!("Sharing memory region {:#x?}", base..end); in refill() 537 trace!("Unsharing memory region {:#x?}", base..end); in drop()
|
/packages/apps/Launcher3/protos/ |
D | launcher_trace_file.proto | 25 /* represents a file full of launcher trace entries. 43 /* one launcher trace entry. */
|
/packages/modules/Bluetooth/android/pandora/ |
D | gen_cov.py | 106 def pull_and_rename_trace_for_test(test, trace): argument 112 shutil.copy(child, trace) 340 trace_path = Path(args.trace)
|
/packages/modules/DnsResolver/doh/dispatcher/ |
D | driver.rs | 21 use log::{debug, trace, warn}; 66 trace!("dispatch command: {:?}", command); in drive_once()
|
/packages/modules/adb/coverage/ |
D | gen_coverage.sh | 103 adb pull /data/misc/trace "$TRACEDIR"/ 114 cp "$TRACEDIR"/trace/clang-$PID-*.profraw "$TRACEDIR"/adbd_traces 2>/dev/null || true
|
/packages/modules/Virtualization/pvmfw/src/ |
D | instance.rs | 27 use log::trace; 107 trace!("Found pvmfw instance.img entry: {entry:?}"); in get_recorded_entry() 226 trace!("Skipping instance.img entry {uuid}: {payload_size:?} bytes"); in locate_entry()
|