HomeSort by relevance Sort by last modified time
    Searched refs:adbCmd (Results 1 - 2 of 2) sorted by null

  /external/deqp/android/scripts/
launch.py 16 adbCmd = common.shellquote(common.ADB_BIN)
18 adbCmd += " %s" % extraArgs
21 common.execute("%s forward tcp:50016 tcp:50016" % adbCmd)
22 common.execute("%s shell setprop log.tag.dEQP DEBUG" % adbCmd)
23 common.execute("%s shell am start -n com.drawelements.deqp/.execserver.ServiceStarter" % adbCmd)
debug.py 15 adbCmd = common.shellquote(common.ADB_BIN)
18 process = subprocess.Popen("%s shell ps" % adbCmd, shell=True, stdout=subprocess.PIPE)
45 adbCmd,
73 common.execute("%s shell am start -W -D -n com.drawelements.deqp/android.app.NativeActivity -e cmdLine \"unused %s\"" % (adbCmd, deqpCmdLine.replace("\"", "\\\"")))
81 common.execute("%s shell run-as com.drawelements.deqp kill -9 %i" % (adbCmd, gdbPid))
95 gdbServerProcess = subprocess.Popen("%s shell run-as com.drawelements.deqp lib/gdbserver localhost:%i --attach %i" % (adbCmd, targetGDBPort, programPid), shell=True, stdin=subprocess.PIPE, stdout=open("gdbserver-stdout.txt", "wb"), stderr=open("gdbserver-stderr.txt", "wb"))
107 common.execute("%s forward tcp:%i tcp:%i" % (adbCmd, hostGDBPort, targetGDBPort))
111 common.execute("%s pull /system/bin/app_process" % adbCmd)
114 common.execute("%s pull /system/bin/linker" % adbCmd)
118 common.execute("%s pull %s" % (adbCmd, lib)
    [all...]

Completed in 54 milliseconds