Searched refs:mSupportedFeatures (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/bluetooth/
H A DSdpMnsRecord.java24 private final int mSupportedFeatures; field in class:SdpMnsRecord
35 this.mSupportedFeatures = supported_features;
44 this.mSupportedFeatures = in.readInt();
63 return mSupportedFeatures;
79 dest.writeInt(mSupportedFeatures);
95 if(mSupportedFeatures != -1){
96 ret += "Supported features: " + mSupportedFeatures + "\n";
H A DSdpMasRecord.java26 private final int mSupportedFeatures; field in class:SdpMasRecord
47 this.mSupportedFeatures = supported_features;
57 this.mSupportedFeatures = in.readInt();
84 return mSupportedFeatures;
106 dest.writeInt(this.mSupportedFeatures);
133 if(mSupportedFeatures != -1){
134 ret += "Supported features: " + mSupportedFeatures + "\n";
H A DSdpPseRecord.java26 private final int mSupportedFeatures; field in class:SdpPseRecord
39 this.mSupportedFeatures = supported_features;
48 this.mSupportedFeatures = in.readInt();
67 return mSupportedFeatures;
86 dest.writeInt(mSupportedFeatures);
107 if(mSupportedFeatures != -1){
108 ret += "Supported features: " + mSupportedFeatures + "\n";
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DAndroidCameraCapabilities.java63 mSupportedFeatures.add(Feature.ZOOM);
66 mSupportedFeatures.add(Feature.VIDEO_SNAPSHOT);
69 mSupportedFeatures.add(Feature.AUTO_EXPOSURE_LOCK);
72 mSupportedFeatures.add(Feature.AUTO_WHITE_BALANCE_LOCK);
77 mSupportedFeatures.add(Feature.FOCUS_AREA);
81 mSupportedFeatures.add(Feature.METERING_AREA);
H A DCameraCapabilities.java56 protected final EnumSet<Feature> mSupportedFeatures = EnumSet.noneOf(Feature.class); field in class:CameraCapabilities
485 mSupportedFeatures.addAll(src.mSupportedFeatures);
624 return new HashSet<Feature>(mSupportedFeatures);
628 return (ft != null && mSupportedFeatures.contains(ft));
H A DAndroidCamera2Capabilities.java70 // TODO: Populate mSupportedFeatures
93 mSupportedFeatures.add(Feature.FOCUS_AREA);
97 mSupportedFeatures.add(Feature.METERING_AREA);
101 mSupportedFeatures.add(Feature.ZOOM);

Completed in 131 milliseconds