Lines Matching refs:command
106 command = "thread trace start"
108 command += " " + str(thread.GetIndexID())
110 command += " -s " + str(iptTraceSize)
112 command += " --tsc"
114 command += " --psb-period " + str(psbPeriod)
115 self.expect(command, error=error, substrs=substrs)
136 command = "process trace start"
138 command += " -l " + str(processBufferSizeLimit)
140 command += " --tsc"
142 command += " --psb-period " + str(psbPeriod)
144 command += " --per-cpu-tracing"
145 self.expect(command, error=error, substrs=substrs)
159 command = "thread trace stop"
161 command += " " + str(thread.GetIndexID())
162 self.expect(command, error=error, substrs=substrs)
171 command = f"trace load -v {traceDescriptionFilePath}"
172 self.expect(command, error=error, substrs=substrs)
182 command = f"trace save {traceBundleDir}"
184 command += " -c"
185 self.expect(command, error=error, substrs=substrs)