Lines Matching refs:split
75 device.shell("setenforce 0".split())
78 lib32 = device.shell("mktemp".split())[0].strip()
79 lib64 = device.shell("mktemp".split())[0].strip()
98 out.pid = p.communicate()[0].strip().split()
102 device.shell("logcat -c".split())
109 device.shell('rm {}'.format(lib32).split())
110 device.shell('rm {}'.format(lib64).split())
123 device.shell('kill -3 {}'.format(pid).split())
127 lc_cmd = "logcat -d -b main --pid={} -e '^\\t.*\\t[0-9]*\\t[0-9]*$'".format(pid).split(' ')
128 for l in device.shell(lc_cmd)[0].strip().split('\n'):
130 data = l.strip().split()[5:]