Lines Matching refs:command
88 command = "thread trace start"
90 command += " " + str(thread.GetIndexID())
92 command += " -s " + str(iptTraceSize)
94 command += " --tsc"
96 command += " --psb-period " + str(psbPeriod)
97 self.expect(command, error=error, substrs=substrs)
109 command = "process trace start"
111 command += " -l " + str(processBufferSizeLimit)
113 command += " --tsc"
115 command += " --psb-period " + str(psbPeriod)
117 command += " --per-cpu-tracing"
118 self.expect(command, error=error, substrs=substrs)
132 command = "thread trace stop"
134 command += " " + str(thread.GetIndexID())
135 self.expect(command, error=error, substrs=substrs)
144 command = f"trace load -v {traceDescriptionFilePath}"
145 self.expect(command, error=error, substrs=substrs)
154 command = f"trace save {traceBundleDir}"
156 command += " -c"
157 self.expect(command, error=error, substrs=substrs)