Home
last modified time | relevance | path

Searched refs:prop (Results 1 – 25 of 27) sorted by relevance

12

/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
DRgbPlayerActivity.java111 Properties prop = new Properties(); in RgbView() local
113 prop.loadFromXML(new FileInputStream("/sdcard/mediadump/prop.xml")); in RgbView()
119 mStartX = Integer.parseInt(prop.getProperty("startX")); in RgbView()
120 mStartY = Integer.parseInt(prop.getProperty("startY")); in RgbView()
121 mWidth = Integer.parseInt(prop.getProperty("width")); in RgbView()
122 mHeight = Integer.parseInt(prop.getProperty("height")); in RgbView()
123 mBytesPerPixel = Integer.parseInt(prop.getProperty("bytesPerPixel")); in RgbView()
124 mFrameRate = Integer.parseInt(prop.getProperty("frameRate")); in RgbView()
DVideoDumpView.java490 Properties prop = new Properties(); in onSurfaceChanged() local
491 prop.setProperty("width", Integer.toString(mWidth)); in onSurfaceChanged()
492 prop.setProperty("height", Integer.toString(mHeight)); in onSurfaceChanged()
493 prop.setProperty("startX", Integer.toString(mStartX)); in onSurfaceChanged()
494 prop.setProperty("startY", Integer.toString(mStartY)); in onSurfaceChanged()
495 prop.setProperty("bytesPerPixel", in onSurfaceChanged()
497 prop.setProperty("frameRate", Integer.toString(VideoDumpConfig.FRAME_RATE)); in onSurfaceChanged()
499 prop.storeToXML(new FileOutputStream(VideoDumpConfig.ROOT_DIR in onSurfaceChanged()
/frameworks/base/media/libmediaplayerservice/
DTestPlayerStub.cpp46 char prop[PROPERTY_VALUE_MAX] = { '\0', }; in isTestBuild() local
48 property_get(kBuildTypePropName, prop, '\0'); in isTestBuild()
49 return strcmp(prop, kEngBuild) == 0 || strcmp(prop, kTestBuild) == 0; in isTestBuild()
/frameworks/base/opengl/libs/EGL/
DLoader.cpp69 char prop[PROPERTY_VALUE_MAX]; in ANDROID_SINGLETON_STATIC_INSTANCE() local
73 property_get("ro.kernel.qemu",prop,"0"); in ANDROID_SINGLETON_STATIC_INSTANCE()
74 if (atoi(prop) != 1) in ANDROID_SINGLETON_STATIC_INSTANCE()
78 property_get("ro.kernel.qemu.gles",prop,"0"); in ANDROID_SINGLETON_STATIC_INSTANCE()
79 return atoi(prop); in ANDROID_SINGLETON_STATIC_INSTANCE()
/frameworks/base/telephony/java/android/telephony/
DTelephonyManager.java611 String prop = SystemProperties.get(TelephonyProperties.PROPERTY_SIM_STATE); in getSimState() local
612 if ("ABSENT".equals(prop)) { in getSimState()
615 else if ("PIN_REQUIRED".equals(prop)) { in getSimState()
618 else if ("PUK_REQUIRED".equals(prop)) { in getSimState()
621 else if ("NETWORK_LOCKED".equals(prop)) { in getSimState()
624 else if ("READY".equals(prop)) { in getSimState()
/frameworks/opt/calendar/src/com/android/calendarcommon/
DRecurrenceSet.java375 ICalendar.Property prop = new ICalendar.Property(propertyName); in addPropertiesForRuleStr() local
376 prop.setValue(rrule); in addPropertiesForRuleStr()
377 component.addProperty(prop); in addPropertiesForRuleStr()
434 ICalendar.Property prop = new ICalendar.Property(propertyName); in addPropertyForDateStr() local
442 prop.addParameter(new ICalendar.Parameter("TZID", tz)); in addPropertyForDateStr()
444 prop.setValue(dateStr); in addPropertyForDateStr()
445 component.addProperty(prop); in addPropertyForDateStr()
DICalendar.java137 public void addProperty(Property prop) { in addProperty() argument
138 String name= prop.getName(); in addProperty()
144 props.add(prop); in addProperty()
/frameworks/base/services/tests/servicestests/src/com/android/server/
DNetworkStatsServiceTest.java870 final LinkProperties prop = new LinkProperties(); in buildWifiState() local
871 prop.setInterfaceName(TEST_IFACE); in buildWifiState()
872 return new NetworkState(info, prop, null); in buildWifiState()
879 final LinkProperties prop = new LinkProperties(); in buildMobile3gState() local
880 prop.setInterfaceName(TEST_IFACE); in buildMobile3gState()
881 return new NetworkState(info, prop, null, subscriberId); in buildMobile3gState()
887 final LinkProperties prop = new LinkProperties(); in buildMobile4gState() local
888 prop.setInterfaceName(TEST_IFACE); in buildMobile4gState()
889 return new NetworkState(info, prop, null); in buildMobile4gState()
DNetworkPolicyManagerServiceTest.java704 final LinkProperties prop = new LinkProperties(); in buildWifi() local
705 prop.setInterfaceName(TEST_IFACE); in buildWifi()
706 return new NetworkState(info, prop, null); in buildWifi()
/frameworks/base/docs/html/guide/topics/graphics/
Danimation.jd9 <li><a href="{@docRoot}guide/topics/graphics/prop-animation.html">Property
48 <dt><strong><a href="{@docRoot}guide/topics/graphics/prop-animation.html">Property
Dprop-animation.jd32 <li><a href="#view-prop-animator">ViewPropertyAnimator</a></li>
851 <h3 id="view-prop-animator">Animating with ViewPropertyAnimator</h3>
Dhardware-accel.jd475 "{@docRoot}guide/topics/graphics/prop-animation.html">Property Animation</a>.</p>
/frameworks/base/core/java/android/text/
DTextUtils.java611 Object prop = os[i]; in writeToParcel() local
613 if (prop instanceof CharacterStyle) { in writeToParcel()
614 prop = ((CharacterStyle) prop).getUnderlying(); in writeToParcel()
617 if (prop instanceof ParcelableSpan) { in writeToParcel()
618 ParcelableSpan ps = (ParcelableSpan)prop; in writeToParcel()
/frameworks/base/wifi/java/android/net/wifi/
DWifiStateMachine.java1359 String[] prop = line.split(" *= *"); in fetchSSID() local
1360 if (prop.length < 2) continue; in fetchSSID()
1361 String name = prop[0]; in fetchSSID()
1362 String value = prop[1]; in fetchSSID()
1380 String[] prop = line.split("="); in fetchRssiAndLinkSpeedNative() local
1381 if (prop.length < 2) continue; in fetchRssiAndLinkSpeedNative()
1383 if (prop[0].equals("RSSI")) { in fetchRssiAndLinkSpeedNative()
1384 newRssi = Integer.parseInt(prop[1]); in fetchRssiAndLinkSpeedNative()
1385 } else if (prop[0].equals("LINKSPEED")) { in fetchRssiAndLinkSpeedNative()
1386 newLinkSpeed = Integer.parseInt(prop[1]); in fetchRssiAndLinkSpeedNative()
/frameworks/base/media/mtp/
DMtpDevice.cpp257 MtpObjectProperty prop = (*props)[j]; in print() local
258 MtpProperty* property = getObjectPropDesc(prop, format); in print()
264 MtpDebug::getObjectPropCodeName(prop)); in print()
/frameworks/base/opengl/libs/GLES2_dbg/test/
Dtest_server.cpp127 EXPECT_EQ(read.GLConstant, read.prop()); in TEST_F()
/frameworks/base/opengl/libs/GLES2_dbg/src/
Dserver.cpp224 switch (cmd.prop()) { in SetProp()
Ddebugger_message.pb.cpp1116 21, this->prop(), output); in SerializeWithCachedSizes()
1303 ::google::protobuf::internal::WireFormatLite::EnumSize(this->prop()); in ByteSize()
1394 set_prop(from.prop()); in MergeFrom()
Ddebugger_message.pb.h715 inline ::com::android::glesv2debugger::Message_Prop prop() const;
1153 inline ::com::android::glesv2debugger::Message_Prop Message::prop() const { in prop() function
/frameworks/base/tools/velocityplot/
Dvelocityplot.py165 prop={'size': 10})
/frameworks/base/media/java/android/media/
DMediaScanner.java449 String prop = SystemProperties.get("drm.service.enabled"); in isDrmEnabled() local
450 return prop != null && prop.equals("true"); in isDrmEnabled()
/frameworks/base/
DCleanSpec.mk92 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/build.prop)
/frameworks/base/tools/orientationplot/
Dorientationplot.py210 prop={'size': 10})
/frameworks/base/services/java/com/android/server/
DConnectivityService.java2003 String prop = "net.dns" + i + "." + myPid; in reassessPidDns() local
2004 if (SystemProperties.get(prop).length() == 0) { in reassessPidDns()
2010 SystemProperties.set(prop, ""); in reassessPidDns()
/frameworks/base/docs/html/guide/developing/debugging/
Ddebugging-log.jd301 <code>/data/local.prop</code> on the device.</p>

12