Lines Matching refs:cmd

81         cmd = ['hdc', 'shell', 'rm', '/data/log/faultlog/faultlogger/*']
82 logging.info(' '.join(cmd))
83 result = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
91 cmd = ['hdc', 'file', 'recv', '/data/log/faultlog/faultlogger/', log_path]
92 logging.info(' '.join(cmd))
93 result = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
103 cmd = ['hdc', 'shell', 'hilog', '-r']
104 logging.info(' '.join(cmd))
105 result = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
109 cmd = ['hdc', 'shell', 'hilog', '-G', '16M']
110 logging.info(' '.join(cmd))
111 result = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
114 cmd = ['hdc', 'shell', 'hilog', '-Q', 'pidoff']
115 logging.info(' '.join(cmd))
116 result = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
119 cmd = ['hdc', 'shell', 'hilog', '-Q', 'domainoff']
120 logging.info(' '.join(cmd))
121 result = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
124 cmd = ['hdc', 'shell', 'hilog', '-b', 'd']
125 logging.info(' '.join(cmd))
126 result = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
129 cmd = ['hdc', 'shell', 'setprop', 'persist.sys.hilog.debug.on', 'true']
130 logging.info(' '.join(cmd))
131 result = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
134 cmd = ['hdc', 'shell', 'hilog', '-b', 'DEBUG']
135 logging.info(' '.join(cmd))
136 result = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)