| /third_party/skia/experimental/tools/ |
| H A D | android_skp_capture.sh | 10 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 D | adb-d8.py | 7 # 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 D | android-sync.sh | 70 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 D | run_skqp_exe | 13 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 D | tasn_utl.c | 226 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 D | tasn_utl.c | 226 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 D | skpbench.py | 34 __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.py | 13 def __init__(self, adb): 14 HardwareAndroid.__init__(self, adb)
|
| H A D | _hardware_pixel.py | 13 def __init__(self, adb): 14 HardwareAndroid.__init__(self, adb)
|
| H A D | _hardware_pixel_c.py | 10 # 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.py | 15 def __init__(self, adb): 16 HardwareAndroid.__init__(self, adb)
|
| H A D | _hardware_android.py | 12 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 D | MainActivity.java | 191 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 D | android.py | 76 # 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 D | constants-s390.h | 229 V(adb, ADB, 0xED1A) /* type = RXE ADD (long BFP) */ \
|
| H A D | macro-assembler-s390.cc | 4243 adb(dst, opnd); in CallRecordWriteStub()
|
| /third_party/libabigail/ |
| H A D | ltmain.sh | 2041 *.ada | *.adb | *.ads | *.asm | \
|
| /third_party/skia/third_party/externals/microhttpd/ |
| H A D | ltmain.sh | 2061 *.ada | *.adb | *.ads | *.asm | \
|
| /third_party/eudev/ |
| H A D | ltmain.sh | 3424 *.ada | *.adb | *.ads | *.asm | \
|
| /third_party/curl/ |
| H A D | ltmain.sh | 3622 *.ada | *.adb | *.ads | *.asm | \
|
| /third_party/lame/ |
| H A D | ltmain.sh | 3377 *.ada | *.adb | *.ads | *.asm | \
|
| /third_party/node/deps/cares/ |
| H A D | ltmain.sh | 3622 *.ada | *.adb | *.ads | *.asm | \
|
| /third_party/node/deps/cares/config/ |
| H A D | ltmain.sh | 3622 *.ada | *.adb | *.ads | *.asm | \
|
| /third_party/libevdev/build-aux/ |
| H A D | ltmain.sh | 3623 *.ada | *.adb | *.ads | *.asm | \
|
| /third_party/skia/third_party/externals/libpng/ |
| H A D | ltmain.sh | 3377 *.ada | *.adb | *.ads | *.asm | \
|