Home
last modified time | relevance | path

Searched refs:adb (Results 1 - 25 of 25) sorted by relevance

/third_party/skia/experimental/tools/
H A Dandroid_skp_capture.sh10 printf "Use \`adb shell 'pm list packages'\` to get a listing.\n\n"
13 if ! command -v adb > /dev/null 2>&1; then
14 if [ -x "${ANDROID_SDK_ROOT}/platform-tools/adb" ]; then
15 adb() { function
16 "${ANDROID_SDK_ROOT}/platform-tools/adb" "$@"
19 echo 'adb missing'
30 adb shell "setprop '${key}' '${remote_path}'"
49 test '0' = "$(adb shell "test -e \"$1\"; echo \$?")";
56 adb shell "setprop '${key}' ''"
65 X="$(adb shel
[all...]
/third_party/node/deps/v8/tools/
H A Dadb-d8.py7 # Runs an android build of d8 over adb, with any given arguments. Files
12 # adb-d8.py <build_dir> [<d8_args>...]
18 # Run adb-d8.py --help for complete usage information.
63 def TransferD8ToDevice(adb, build_dir, device_d8_dir, verbose):
75 adb, "shell",
91 adb, "push",
97 def AdbForwardDeviceToLocal(adb, device_port, server_port, verbose):
103 adb, "reverse",
109 def AdbRunD8(adb, device_d8_dir, device_port, d8_args, verbose):
119 # Run adb shel
[all...]
H A Dandroid-sync.sh70 local ANDROID_HASH=$(adb shell "md5 \"$ANDROID_V8/$FILE\"")
73 adb push "$HOST_V8/$FILE" "$ANDROID_V8/$FILE" &> /dev/null
/third_party/skia/tools/skqp/
H A Drun_skqp_exe13 def adb(*args): function
14 sys.stdout.write("adb '" + "' '".join(args) + "'\n")
15 subprocess.check_call(['adb'] + list(args))
22 adb('shell', 'rm -rf /data/local/tmp/skqp; mkdir -p /data/local/tmp/skqp/skqp_assets')
24 adb('push',
27 adb('push',
29 adb('push', 'resources', '/data/local/tmp/skqp/skqp_assets')
31 adb('push', os.path.join(build, 'skqp'), '/data/local/tmp/skqp/skqp')
34 sys.stdout.write("adb 'shell' '%s'\n" % cmd)
35 ret = subprocess.call(['adb', 'shel
[all...]
/third_party/node/deps/openssl/openssl/crypto/asn1/
H A Dtasn_utl.c226 const ASN1_ADB *adb; in ossl_asn1_do_adb() local
236 adb = ASN1_ADB_ptr(tt->item); in ossl_asn1_do_adb()
239 sfld = offset2ptr(val, adb->offset); in ossl_asn1_do_adb()
243 if (adb->null_tt == NULL) in ossl_asn1_do_adb()
245 return adb->null_tt; in ossl_asn1_do_adb()
258 if (adb->adb_cb != NULL && adb->adb_cb(&selector) == 0) { in ossl_asn1_do_adb()
270 for (atbl = adb->tbl, i = 0; i < adb->tblcount; i++, atbl++) in ossl_asn1_do_adb()
277 if (!adb in ossl_asn1_do_adb()
[all...]
/third_party/openssl/crypto/asn1/
H A Dtasn_utl.c226 const ASN1_ADB *adb; in ossl_asn1_do_adb() local
236 adb = ASN1_ADB_ptr(tt->item); in ossl_asn1_do_adb()
239 sfld = offset2ptr(val, adb->offset); in ossl_asn1_do_adb()
243 if (adb->null_tt == NULL) in ossl_asn1_do_adb()
245 return adb->null_tt; in ossl_asn1_do_adb()
258 if (adb->adb_cb != NULL && adb->adb_cb(&selector) == 0) { in ossl_asn1_do_adb()
270 for (atbl = adb->tbl, i = 0; i < adb->tblcount; i++, atbl++) in ossl_asn1_do_adb()
277 if (!adb in ossl_asn1_do_adb()
[all...]
/third_party/skia/tools/skpbench/
H A Dskpbench.py34 __argparse.add_argument('--adb',
35 action='store_true', help="execute skpbench over adb")
36 __argparse.add_argument('--adb_binary', default='adb',
37 help="The name of the adb binary to use.")
39 help="if using adb, ID of the specific device to target "
103 if FLAGS.adb:
176 if FLAGS.adb:
355 if FLAGS.adb:
356 adb = Adb(FLAGS.device_serial, FLAGS.adb_binary,
360 model = adb
[all...]
H A D_hardware_nexus_6p.py13 def __init__(self, adb):
14 HardwareAndroid.__init__(self, adb)
H A D_hardware_pixel.py13 def __init__(self, adb):
14 HardwareAndroid.__init__(self, adb)
H A D_hardware_pixel_c.py10 # If you run adb cat /sys/devices/57000000.gpu/pstate it shows all
16 def __init__(self, adb):
17 HardwareAndroid.__init__(self, adb)
H A D_hardware_pixel2.py15 def __init__(self, adb):
16 HardwareAndroid.__init__(self, adb)
H A D_hardware_android.py12 def __init__(self, adb):
15 self._adb = adb
66 print("WARNING: no adb root access; results may be unreliable.",
/third_party/libwebsockets/test-apps/android/app/src/main/java/org/libwebsockets/client/
H A DMainActivity.java191 AlertDialog.Builder adb = new AlertDialog.Builder(this); in connectErrorListener()
192 adb.setTitle("Error"); in connectErrorListener()
193 adb.setPositiveButton("OK", new DialogInterface.OnClickListener() { in connectErrorListener()
197 adb.setMessage("Could not connect to the server."); in connectErrorListener()
198 adb.show(); in connectErrorListener()
/third_party/node/deps/v8/tools/testrunner/local/
H A Dandroid.py76 # avoid accessing low-level self.device.adb.
95 output = self.device.adb.Push(file_on_host, file_on_device_tmp)
100 self.device.adb.Shell('mkdir -p %s' % folder_on_device)
101 self.device.adb.Shell('cp %s %s' % (file_on_device_tmp, file_on_device))
148 logcat_file: File into which to stream adb logcat log.
/third_party/node/deps/v8/src/codegen/s390/
H A Dconstants-s390.h229 V(adb, ADB, 0xED1A) /* type = RXE ADD (long BFP) */ \
H A Dmacro-assembler-s390.cc4243 adb(dst, opnd); in CallRecordWriteStub()
/third_party/libabigail/
H A Dltmain.sh2041 *.ada | *.adb | *.ads | *.asm | \
/third_party/skia/third_party/externals/microhttpd/
H A Dltmain.sh2061 *.ada | *.adb | *.ads | *.asm | \
/third_party/eudev/
H A Dltmain.sh3424 *.ada | *.adb | *.ads | *.asm | \
/third_party/curl/
H A Dltmain.sh3622 *.ada | *.adb | *.ads | *.asm | \
/third_party/lame/
H A Dltmain.sh3377 *.ada | *.adb | *.ads | *.asm | \
/third_party/node/deps/cares/
H A Dltmain.sh3622 *.ada | *.adb | *.ads | *.asm | \
/third_party/node/deps/cares/config/
H A Dltmain.sh3622 *.ada | *.adb | *.ads | *.asm | \
/third_party/libevdev/build-aux/
H A Dltmain.sh3623 *.ada | *.adb | *.ads | *.asm | \
/third_party/skia/third_party/externals/libpng/
H A Dltmain.sh3377 *.ada | *.adb | *.ads | *.asm | \

Completed in 141 milliseconds