Home
last modified time | relevance | path

Searched refs:GetProp (Results 1 – 13 of 13) sorted by relevance

/external/chromium-trace/catapult/devil/devil/android/
Ddevice_utils.py582 return self.GetProp('sys.boot_completed', cache=False) == '1'
1821 value = self.GetProp(self.JAVA_ASSERT_PROPERTY)
1833 return self.GetProp('persist.sys.language', cache=cache)
1841 return self.GetProp('persist.sys.country', cache=cache)
1858 return int(self.GetProp('ro.sf.lcd_density', cache=True))
1867 return self.GetProp('ro.build.description', cache=True)
1876 return self.GetProp('ro.build.fingerprint', cache=True)
1881 return self.GetProp('ro.build.id', cache=True)
1886 return self.GetProp('ro.build.product', cache=True)
1891 return self.GetProp('ro.build.type', cache=True)
[all …]
Ddevice_utils_test.py320 self.call.device.GetProp('ro.build.type', cache=True), 'user'):
325 self.call.device.GetProp('ro.build.type', cache=True), 'userdebug'):
348 (self.call.device.GetProp('ro.build.version.sdk', cache=True), '19'),
357 (self.call.device.GetProp('ro.build.version.sdk', cache=True), '19'),
366 (self.call.device.GetProp('ro.build.version.sdk', cache=True), '19'),
437 (self.call.device.GetProp('sys.boot_completed', cache=False), '1')):
451 (self.call.device.GetProp('sys.boot_completed', cache=False), '1'),
476 (self.call.device.GetProp('sys.boot_completed', cache=False), '1')):
490 (self.call.device.GetProp('sys.boot_completed', cache=False),
493 (self.call.device.GetProp('sys.boot_completed', cache=False), '1')):
[all …]
/external/lzma/CPP/7zip/UI/Common/
DLoadCodecs.cpp245 static HRESULT GetProp( in GetProp() function
262 RINOK(GetProp(getProp, getProp2, index, propID, prop)); in GetProp_Bool()
278 RINOK(GetProp(getProp, getProp2, index, propID, prop)); in GetProp_UInt32()
296 RINOK(GetProp(getProp, getProp2, index, propID, prop)); in GetProp_String()
311 RINOK(GetProp(getProp, getProp2, index, propID, prop)); in GetProp_RawData()
364 if (GetProp(getProp, getProp2, i, NArchive::NHandlerPropID::kClassID, prop) != S_OK) in LoadFormats()
DIFileExtractCallback.h53 STDMETHOD(GetProp)(PROPID propID, PROPVARIANT *value) x; \
DArchiveExtractCallback.cpp368 STDMETHODIMP CGetProp::GetProp(PROPID propID, PROPVARIANT *value) in GetProp() function in CGetProp
656 if (!GetProp) in GetStream()
659 GetProp = GetProp_Spec; in GetStream()
665 …actToStreamCallback->GetStream7(GetProp_Spec->Name, _fi.IsDir, outStream, askExtractMode, GetProp); in GetStream()
DArchiveExtractCallback.h150 CMyComPtr<IGetProp> GetProp; variable
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
Dandroid_platform_backend_unittest.py35 GetProp=mock.MagicMock(side_effect=get_prop))
180 GetProp=mock.MagicMock(side_effect=get_prop),
Dandroid_platform_backend.py151 description = self._device.GetProp('ro.build.description', cache=True)
302 return self._device.GetProp('ro.build.id')[0]
477 old_flag = self._device.GetProp('socket.relaxsslcheck')
/external/lzma/CPP/7zip/UI/FileManager/
DExtractCallback.cpp648 RINOK(getProp->GetProp(propID, &prop)); in GetTime()
664 RINOK(getProp->GetProp(propID, &prop)); in GetItemBoolProp()
701 RINOK(getProp->GetProp(kpidSize, &prop)); in GetStream7()
733 RINOK(getProp->GetProp(kpidAttrib, &prop)); in GetStream7()
/external/v8/build/android/buildbot/
Dbb_device_status_check.py152 build_fingerprint = device.GetProp('ro.build.fingerprint', cache=True)
153 wifi_ip = device.GetProp('dhcp.wlan0.ipaddress')
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
Dtcmalloc_heap_profiler.py43 device_property = self._browser_backend.device.GetProp(values[0])
/external/chromium-trace/catapult/devil/devil/android/tools/
Ddevice_status.py126 wifi_ip = device.GetProp('dhcp.wlan0.ipaddress')
/external/chromium-trace/catapult/telemetry/telemetry/testing/
Dsystem_stub.py101 def GetProp(self, property_name): member in AdbDevice