Searched defs:mSupportedFeatures (Results 1 - 4 of 4) 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 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";
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";
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
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));

Completed in 282 milliseconds