HomeSort by relevance Sort by last modified time
    Searched refs:getprop (Results 1 - 25 of 27) sorted by null

1 2

  /device/generic/goldfish/
init.goldfish.sh 24 qemud=`getprop ro.kernel.android.qemud`
27 radio_ril=`getprop ro.kernel.android.ril`
40 num_dns=`getprop ro.kernel.ndns`
54 boot_anim=`getprop ro.kernel.android.bootanim`
62 my_ip=`getprop net.shared_net_ip`
  /system/core/logcat/
logpersist 4 case `getprop ro.build.type` in
29 getprop ${property}
  /cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/
PropertyDeviceInfo.java 49 Process getprop = new ProcessBuilder("getprop").start(); local
50 scanner = new Scanner(getprop.getInputStream());
  /development/scripts/
gdbclient 17 local candidate=`adb shell getprop ro.hardware | tr -d '\r\n'`
20 candidate=`adb shell getprop ro.product.device | tr -d '\r\n'`
151 local CPU_ABI=`adb shell getprop ro.product.cpu.abilist | tr -d '\r\n'`
reverse_tether.sh 109 $ADB shell 'setprop net.dnschange $((`getprop net.dnschange`+1))'
140 DNS1=`$ADB shell getprop net.${PHONE_DEV}.dns1`
142 DNS2=`$ADB shell getprop net.${PHONE_DEV}.dns2`
  /art/tools/
setup-buildbot-device.sh 32 adb shell getprop
  /device/moto/shamu/
init.mmi.touch.sh 148 product_id=$(getprop $device_property 2> /dev/null)
153 hwrev_id=$(getprop $hwrev_property 2> /dev/null)
  /development/tools/labpretest/
labpretest.sh 195 local result=$($ADB -s $device shell getprop dev.bootcomplete)
201 result=$($ADB -s $device shell getprop dev.bootcomplete)
538 result=$($ADB -s $device shell getprop dev.bootcomplete)
544 result=$($ADB -s $device shell getprop dev.bootcomplete)
  /external/libdrm/freedreno/kgsl/
kgsl_pipe.c 190 static int getprop(int fd, enum kgsl_property_type type, function
201 #define GETPROP(fd, prop, x) do { \
202 if (getprop((fd), KGSL_PROP_##prop, &(x), sizeof(x))) { \
251 GETPROP(fd, VERSION, kgsl_pipe->version);
252 GETPROP(fd, DEVICE_INFO, kgsl_pipe->devinfo);
  /external/apache-harmony/jdwp/
Android_debug_config.mk 108 $(hide) while [ `adb wait-for-device shell getprop dev.bootcomplete | grep -c 1` -eq 0 ]; \
  /external/google-breakpad/android/
common-functions.sh 324 FINGERPRINT=$(adb_shell getprop ro.build.fingerprint)
run-checks.sh 268 DEVICE_ABI=$(adb_shell getprop ro.product.cpu.abi)
269 DEVICE_ABI2=$(adb_shell getprop ro.product.cpu.abi2)
  /external/compiler-rt/lib/asan/scripts/
asan_device_setup 94 local _ABI=$(adb_shell getprop ro.product.cpu.abi)
254 RELEASE=$(adb_shell getprop ro.build.version.release)
  /external/toybox/
Android.mk 64 toys/android/getprop.c \
274 getprop \
  /prebuilts/clang/host/darwin-x86/clang-2629532/bin/
asan_device_setup 94 local _ABI=$(adb_shell getprop ro.product.cpu.abi)
254 RELEASE=$(adb_shell getprop ro.build.version.release)
  /prebuilts/clang/host/darwin-x86/clang-2658975/bin/
asan_device_setup 94 local _ABI=$(adb_shell getprop ro.product.cpu.abi)
254 RELEASE=$(adb_shell getprop ro.build.version.release)
  /prebuilts/clang/host/darwin-x86/clang-2690385/bin/
asan_device_setup 94 local _ABI=$(adb_shell getprop ro.product.cpu.abi)
254 RELEASE=$(adb_shell getprop ro.build.version.release)
  /prebuilts/clang/host/linux-x86/clang-2629532/bin/
asan_device_setup 94 local _ABI=$(adb_shell getprop ro.product.cpu.abi)
254 RELEASE=$(adb_shell getprop ro.build.version.release)
  /prebuilts/clang/host/linux-x86/clang-2658975/bin/
asan_device_setup 94 local _ABI=$(adb_shell getprop ro.product.cpu.abi)
254 RELEASE=$(adb_shell getprop ro.build.version.release)
  /prebuilts/clang/host/linux-x86/clang-2690385/bin/
asan_device_setup 94 local _ABI=$(adb_shell getprop ro.product.cpu.abi)
254 RELEASE=$(adb_shell getprop ro.build.version.release)
  /system/extras/tests/ext4/
android_emmc_perf_tests.sh 27 HARDWARE=`adb shell getprop ro.hardware | tr -d "\r"`
  /build/tools/releasetools/
edify_generator.py 87 cmd = ('getprop("{name}") == "{value}" || '
90 'getprop("{name}") + "\\".");').format(
106 cmd = (' ||\n '.join([('getprop("ro.build.fingerprint") == "%s"') % i
109 'this device has " + getprop("ro.build.fingerprint") + ".");') % (
117 cmd = (' ||\n '.join([('getprop("ro.build.thumbprint") == "%s"') % i
120 'device has " + getprop("ro.build.thumbprint") + ".");') % (
128 ('(!less_than_int(%s, getprop("ro.build.date.utc"))) || '
130 'build (" + getprop("ro.build.date") + ").");') % (timestamp,
135 cmd = ('getprop("ro.product.device") == "%s" || '
137 'this is a \\"" + getprop("ro.product.device") + "\\".");') %
    [all...]
  /system/core/crash_reporter/
crash_sender 139 if [ "$(getprop ro.secure)" = "1" ]; then
180 if [ "$(getprop ro.debuggable)" = "1" ]; then
192 if [ "$(getprop crash_reporter.full_certs)" = "1" ]; then
302 getprop ro.product.channel | sed 's:-channel$::'
  /frameworks/compile/libbcc/gdb_plugin/
android-commands.py 264 api_version = self.getprop("ro.build.version.sdk")
273 # adb getprop [property]
276 def getprop(self, property=None): member in class:ADB
279 return self._call_adb(*["shell", "getprop"]).split('\n')
281 return str(self._call_adb(*["shell", "getprop",
  /external/toybox/generated/
globals.h 1 // toys/android/getprop.c
1302 struct getprop_data getprop; member in union:global_union

Completed in 1071 milliseconds

1 2