Home
last modified time | relevance | path

Searched refs:PropertyInfo (Results 1 – 14 of 14) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hotspot2/soap/command/
DPpsMoDataTest.java33 import org.ksoap2.serialization.PropertyInfo;
58 PropertyInfo propertyInfo = new PropertyInfo(); in verifyGetPpsMo()
73 PropertyInfo propertyInfo = new PropertyInfo(); in verifyMissingPpsMoReturnNull()
89 PropertyInfo propertyInfo = new PropertyInfo(); in verifyMissingTreeURIAttributeReturnNull()
104 PropertyInfo propertyInfo = new PropertyInfo(); in verifyMissingMoUrnAttributeReturnNull()
118 PropertyInfo propertyInfo = new PropertyInfo(); in verifyNonAddMoCommandMessageReturnNull()
DSppCommandTest.java29 import org.ksoap2.serialization.PropertyInfo;
55 PropertyInfo propertyInfo = new PropertyInfo(); in verifyLaunchBrowserCommand()
72 PropertyInfo propertyInfo = new PropertyInfo(); in verifyOtherCommandTypesReturnNull()
88 PropertyInfo propertyInfo = new PropertyInfo(); in verifyIncompleteCommandReturnNull()
101 PropertyInfo propertyInfo = new PropertyInfo(); in verifyInvalidCommandReturnNull()
DBrowserUriTest.java29 import org.ksoap2.serialization.PropertyInfo;
39 private PropertyInfo mPropertyInfo;
47 mPropertyInfo = new PropertyInfo(); in setUp()
/packages/services/Car/libs/backported-car-property-helper-lib/src/com/android/car/property/backported/
DCarPropertyHelper.java44 private static final Map<String, PropertyInfo> PROPERTY_INFO_BY_NAME = Map.ofEntries(
46 new PropertyInfo(LOCATION_CHARACTERIZATION)
56 private static final class PropertyInfo { class in CarPropertyHelper
63 PropertyInfo(int systemPropertyId) { in PropertyInfo() method in CarPropertyHelper.PropertyInfo
67 public PropertyInfo setSystemReadPermission(String permission) { in setSystemReadPermission()
72 public PropertyInfo setSystemWritePermission(String permission) { in setSystemWritePermission()
77 public PropertyInfo setVendorReadPermission(String permission) { in setVendorReadPermission()
82 public PropertyInfo setVendorWritePermission(String permission) { in setVendorWritePermission()
127 PropertyInfo propertyInfo = PROPERTY_INFO_BY_NAME.get(propertyName); in getPropertyId()
157 PropertyInfo propertyInfo = PROPERTY_INFO_BY_NAME.get(propertyName); in getReadPermission()
[all …]
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/property/
DPropertyInfo.java23 class PropertyInfo implements Comparable<PropertyInfo> { class
28 PropertyInfo(CarPropertyConfig config) { in PropertyInfo() method in PropertyInfo
41 if (other instanceof PropertyInfo) { in equals()
42 return ((PropertyInfo) other).mPropId == mPropId; in equals()
53 public int compareTo(PropertyInfo propertyInfo) { in compareTo()
DPropertyTestFragment.java95 private List<PropertyInfo> mPropInfo = null;
160 ArrayAdapter<PropertyInfo> adapter = in onRequestPermissionsResult()
161 new ArrayAdapter<PropertyInfo>(mContext, android.R.layout.simple_spinner_item, in onRequestPermissionsResult()
200 PropertyInfo info = (PropertyInfo) mPropertyId.getSelectedItem(); in onCreateView()
215 PropertyInfo info = (PropertyInfo) mPropertyId.getSelectedItem(); in onCreateView()
233 PropertyInfo info = (PropertyInfo) mPropertyId.getSelectedItem(); in onCreateView()
267 PropertyInfo info = (PropertyInfo) mPropertyId.getSelectedItem(); in onCreateView()
312 .map(PropertyInfo::new) in populateConfigList()
328 PropertyInfo info = (PropertyInfo) parent.getItemAtPosition(pos); in onItemSelected()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hotspot2/soap/
DPostDevDataResponseTest.java30 import org.ksoap2.serialization.PropertyInfo;
60 PropertyInfo propertyInfo = new PropertyInfo(); in verifyValidPostDevDataResponse()
87 response.addProperty(new PropertyInfo()); in verifyInvalidPostDevDataResponseReturnNull()
88 response.addProperty(new PropertyInfo()); in verifyInvalidPostDevDataResponseReturnNull()
DSoapParserTest.java29 import org.ksoap2.serialization.PropertyInfo;
66 PropertyInfo propertyInfo = new PropertyInfo(); in verifyValidSppPostDevDataResponse()
DPostDevDataMessageTest.java43 import org.ksoap2.serialization.PropertyInfo;
134 PropertyInfo propertyInfo = new AttributeInfo(); in verifyCommonFields()
/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/soap/command/
DSppCommand.java22 import org.ksoap2.serialization.PropertyInfo;
84 private SppCommand(PropertyInfo soapResponse) throws IllegalArgumentException { in SppCommand()
105 PropertyInfo commandInfo = new PropertyInfo(); in SppCommand()
170 public static SppCommand createInstance(@NonNull PropertyInfo soapResponse) { in createInstance()
DBrowserUri.java22 import org.ksoap2.serialization.PropertyInfo;
33 private BrowserUri(PropertyInfo command) { in BrowserUri()
43 public static BrowserUri createInstance(PropertyInfo command) { in createInstance()
DPpsMoData.java25 import org.ksoap2.serialization.PropertyInfo;
59 public static PpsMoData createInstance(@NonNull PropertyInfo command) { in createInstance()
/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/soap/
DPostDevDataResponse.java24 import org.ksoap2.serialization.PropertyInfo;
45 PropertyInfo propertyInfo = new PropertyInfo(); in PostDevDataResponse()
/packages/services/Car/service/src/com/android/car/hal/
DPowerHalService.java73 private record PropertyInfo(boolean needSubscription) {} in PropertyInfo() method in PowerHalService
75 private static SparseArray<PropertyInfo> getSupportedProperties() { in getSupportedProperties()
76 SparseArray<PropertyInfo> propertyInfo = new SparseArray<>(); in getSupportedProperties()
77 propertyInfo.put(AP_POWER_STATE_REQ, new PropertyInfo(/*needSubscription=*/ true)); in getSupportedProperties()
79 propertyInfo.put(AP_POWER_STATE_REPORT, new PropertyInfo(/*needSubscription=*/ false)); in getSupportedProperties()
80 propertyInfo.put(DISPLAY_BRIGHTNESS, new PropertyInfo(/*needSubscription=*/ true)); in getSupportedProperties()
81 propertyInfo.put(PER_DISPLAY_BRIGHTNESS, new PropertyInfo(/*needSubscription=*/ true)); in getSupportedProperties()
82 propertyInfo.put(VEHICLE_IN_USE, new PropertyInfo(/*needSubscription=*/ false)); in getSupportedProperties()
83 propertyInfo.put(AP_POWER_BOOTUP_REASON, new PropertyInfo(/*needSubscription=*/ false)); in getSupportedProperties()
84 propertyInfo.put(PER_DISPLAY_MAX_BRIGHTNESS, new PropertyInfo(/*needSubscription=*/ false)); in getSupportedProperties()
[all …]