/external/chromium-trace/catapult/devil/devil/android/ |
D | device_utils_test.py | 395 self.call.device.GetProp('ro.build.type', cache=True), 'user'): 400 self.call.device.GetProp('ro.build.type', cache=True), 'userdebug'): 420 (self.call.device.GetProp('ro.build.version.sdk', cache=True), '28'), 427 (self.call.device.GetProp('ro.build.version.sdk', cache=True), '29'), 434 (self.call.device.GetProp('ro.build.version.sdk', cache=True), '29'), 500 (self.call.device.GetProp('ro.build.version.sdk', cache=True), '19'), 509 (self.call.device.GetProp('ro.build.version.sdk', cache=True), '19'), 517 (self.call.device.GetProp('ro.build.version.sdk', cache=True), '19'), 526 (self.call.device.GetProp('ro.build.version.sdk', cache=True), '19'), 535 (self.call.device.GetProp('ro.build.version.sdk', cache=True), '19'), [all …]
|
D | device_utils.py | 900 return self.GetProp('ro.build.version.codename', cache=True) 1039 return self.GetProp('sys.boot_completed', cache=False) == '1' 1049 decrypt = self.GetProp('vold.decrypt', cache=False) 2712 value = self.GetProp(self.JAVA_ASSERT_PROPERTY) 2727 locale = self.GetProp('persist.sys.locale', cache=cache) 2733 return (self.GetProp('persist.sys.language', cache=cache), 2734 self.GetProp('persist.sys.country', cache=cache)) 2771 density = self.GetProp('ro.sf.lcd_density', cache=True) 2774 density = self.GetProp('qemu.sf.lcd_density', cache=True) 2779 return _EMULATOR_RE.match(self.GetProp('ro.product.device', cache=True)) [all …]
|
D | fastboot_utils.py | 143 self._supports_ab = self._device.GetProp('ro.build.ab_update') == 'true' 159 self._requires_dtbo = len(self._device.GetProp('ro.boot.dtbo_idx')) > 0 177 self._device.GetProp('ro.boot.vbmeta.digest')) > 0
|
D | fastboot_utils_test.py | 154 (self.call.fastboot._device.GetProp('ro.build.ab_update'), 'true')): 160 (self.call.fastboot._device.GetProp('ro.build.ab_update'), '')): 186 (self.call.fastboot._device.GetProp('ro.boot.dtbo_idx'), '1')): 192 (self.call.fastboot._device.GetProp('ro.boot.dtbo_idx'), '')): 219 (self.call.fastboot._device.GetProp('ro.boot.vbmeta.digest'), 226 (self.call.fastboot._device.GetProp('ro.boot.vbmeta.digest'), '')):
|
D | device_utils_devicetest.py | 269 self.assertIn(self.device.GetProp('service.adb.root'), ('', '0')) 272 self.assertEquals(self.device.GetProp('service.adb.root'), '1')
|
/external/chromium-trace/catapult/devil/devil/android/tools/ |
D | system_app_test.py | 60 mock_device.GetProp.side_effect = dict_getprop 64 mock_device.GetProp.assert_called_once_with( 72 mock_device.GetProp.assert_called_once_with(
|
D | device_status.py | 113 wifi_ip = device.GetProp('dhcp.wlan0.ipaddress')
|
D | system_app.py | 236 if device.GetProp(_ENABLE_MODIFICATION_PROP) == '1':
|
/external/perfetto/tools/ |
D | run_android_test | 99 def GetProp(prop): function 111 return GetProp('sys.boot_completed') == '1'
|
/external/lzma/CPP/7zip/UI/Common/ |
D | LoadCodecs.cpp | 295 static HRESULT GetProp( in GetProp() function 312 RINOK(GetProp(getProp, getProp2, index, propID, prop)); in GetProp_Bool() 328 RINOK(GetProp(getProp, getProp2, index, propID, prop)); in GetProp_UInt32() 346 RINOK(GetProp(getProp, getProp2, index, propID, prop)); in GetProp_String() 361 RINOK(GetProp(getProp, getProp2, index, propID, prop)); in GetProp_RawData() 414 if (GetProp(getProp, getProp2, i, NArchive::NHandlerPropID::kClassID, prop) != S_OK) in LoadFormats()
|
D | IFileExtractCallback.h | 95 STDMETHOD(GetProp)(PROPID propID, PROPVARIANT *value) x; \
|
D | ArchiveExtractCallback.cpp | 430 STDMETHODIMP CGetProp::GetProp(PROPID propID, PROPVARIANT *value) in GetProp() function in CGetProp 936 if (!GetProp) in GetStream() 939 GetProp = GetProp_Spec; in GetStream() 954 …ractToStreamCallback->GetStream7(name, BoolToInt(_item.IsDir), outStream, askExtractMode, GetProp); in GetStream()
|
D | ArchiveExtractCallback.h | 200 CMyComPtr<IGetProp> GetProp; variable
|
/external/lzma/CPP/7zip/UI/FileManager/ |
D | ExtractCallback.cpp | 787 RINOK(getProp->GetProp(propID, &prop)); in GetTime() 803 RINOK(getProp->GetProp(propID, &prop)); in GetItemBoolProp() 840 RINOK(getProp->GetProp(kpidSize, &prop)); in GetStream7() 872 RINOK(getProp->GetProp(kpidAttrib, &prop)); in GetStream7()
|
/external/lzma/CPP/7zip/Archive/ |
D | LzmaHandler.cpp | 57 Byte GetProp() const { return LzmaProps[0]; } in GetProp() function 283 UInt32 d = _header.GetProp(); in GetMethod()
|
/external/chromium-trace/catapult/devil/docs/ |
D | device_utils.md | 407 ### DeviceUtils.GetProp
|