Searched defs:mAttributes (Results 1 - 25 of 32) sorted by relevance

12

/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DAudioSourceDescriptor.h37 mDevice(device), mAttributes(*attributes), mUid(uid) {}
45 const audio_attributes_t mAttributes; member in class:android::AudioSourceDescriptor
/frameworks/av/include/drm/
H A DDrmInfo.h170 KeyedVector<String8, String8> mAttributes; member in class:android::DrmInfo
/frameworks/base/drm/java/android/drm/
H A DDrmEvent.java52 private HashMap<String, Object> mAttributes = new HashMap<String, Object>(); field in class:DrmEvent
72 mAttributes = attributes;
126 return mAttributes.get(key);
H A DDrmInfo.java40 private final HashMap<String, Object> mAttributes = new HashMap<String, Object>(); field in class:DrmInfo
98 mAttributes.put(key, value);
109 return mAttributes.get(key);
119 return mAttributes.keySet().iterator();
129 return mAttributes.values().iterator();
/frameworks/base/core/java/android/hardware/usb/
H A DUsbEndpoint.java35 private final int mAttributes; field in class:UsbEndpoint
45 mAttributes = attributes;
93 return mAttributes;
109 return mAttributes & UsbConstants.USB_ENDPOINT_XFERTYPE_MASK;
132 return "UsbEndpoint[mAddress=" + mAddress + ",mAttributes=" + mAttributes +
157 parcel.writeInt(mAttributes);
H A DUsbConfiguration.java39 private final int mAttributes; field in class:UsbConfiguration
62 mAttributes = attributes;
92 return (mAttributes & ATTR_SELF_POWERED) != 0;
102 return (mAttributes & ATTR_REMOTE_WAKEUP) != 0;
143 ",mName=" + mName + ",mAttributes=" + mAttributes +
178 parcel.writeInt(mAttributes);
/frameworks/base/media/java/android/media/
H A DPlayerBase.java43 protected AudioAttributes mAttributes; field in class:PlayerBase
63 mAttributes = attr;
96 mAttributes = attr;
150 mAttributes.getUsage(),
184 if ((mAttributes.getAllFlags() & AudioAttributes.FLAG_BYPASS_INTERRUPTION_POLICY) != 0) {
H A DAudioFocusInfo.java32 private AudioAttributes mAttributes; field in class:AudioFocusInfo
52 mAttributes = aa == null ? new AudioAttributes.Builder().build() : aa;
66 public AudioAttributes getAttributes() { return mAttributes; }
113 mAttributes.writeToParcel(dest, flags);
124 return Objects.hash(mAttributes, mClientId, mPackageName, mGainRequest, mFlags);
137 if (!mAttributes.equals(other.mAttributes)) {
H A DSoundPool.java132 private final AudioAttributes mAttributes; field in class:SoundPool
164 mAttributes = attributes;
518 ((mAttributes.getAllFlags() & AudioAttributes.FLAG_AUDIBILITY_ENFORCED) != 0)
520 // && (mAttributes.getUsage() == AudioAttributes.USAGE_ASSISTANCE_SONIFICATION)
525 if ((mAttributes.getAllFlags() & AudioAttributes.FLAG_BYPASS_INTERRUPTION_POLICY) != 0) {
534 mAttributes.getUsage(),
H A DTtmlRenderer.java260 out.append(node.mAttributes);
295 public final String mAttributes; field in class:TtmlNode
306 this.mAttributes = attributes;
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DOSUResponse.java20 private final Map<String, String> mAttributes; field in class:OSUResponse
40 mAttributes = new HashMap<>();
46 mAttributes.put(attribute, value);
49 mAttributes = null;
88 return mAttributes;
/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
H A DOMANode.java17 private final Map<String, String> mAttributes; field in class:OMANode
24 mAttributes = avps;
39 return mAttributes;
95 if (mAttributes != null && !mAttributes.isEmpty()) {
96 for (Map.Entry<String, String> avp : mAttributes.entrySet()) {
H A DXMLNode.java18 private final Map<String, NodeAttribute> mAttributes; field in class:XMLNode
39 mAttributes = new HashMap<>();
43 mAttributes.put(attributes.getQName(n), new NodeAttribute(attributes.getQName(n),
56 mAttributes = new HashMap<>(attributes == null ? 0 : attributes.size());
60 mAttributes.put(entry.getKey(),
107 NodeAttribute urn = mAttributes.get(OMAConstants.SppMOAttribute);
152 return Collections.unmodifiableMap(mAttributes);
156 Map<String, String> map = new HashMap<>(mAttributes.size());
157 for (Map.Entry<String, NodeAttribute> entry : mAttributes.entrySet()) {
164 NodeAttribute nodeAttribute = mAttributes
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeLayoutParamsMapAttributes.java34 private final Map<String, String> mAttributes; field in class:BridgeLayoutParamsMapAttributes
37 mAttributes = attributes;
43 return mAttributes.get(name);
/frameworks/base/services/core/java/com/android/server/audio/
H A DFocusRequester.java67 private final AudioAttributes mAttributes; field in class:FocusRequester
85 mAttributes = aa;
140 return mAttributes;
199 + " -- attr: " + mAttributes);
330 return new AudioFocusInfo(mAttributes, mClientId, mPackageName,
/frameworks/base/tools/aapt/
H A DXMLNode.h199 Vector<attribute_entry> mAttributes; member in class:XMLNode
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
H A DOMANode.java17 private final Map<String, String> mAttributes; field in class:OMANode
33 mAttributes = avps;
48 return mAttributes;
123 if (mAttributes != null && !mAttributes.isEmpty()) {
124 for (Map.Entry<String, String> avp : mAttributes.entrySet()) {
H A DXMLNode.java19 private final Map<String, NodeAttribute> mAttributes; field in class:XMLNode
40 mAttributes = new HashMap<>();
44 mAttributes.put(attributes.getQName(n), new NodeAttribute(attributes.getQName(n),
57 mAttributes = new HashMap<>(attributes == null ? 0 : attributes.size());
61 mAttributes.put(entry.getKey(), new NodeAttribute(entry.getKey(), "", entry.getValue()));
81 || mAttributes.size() != that.mAttributes.size()
86 for (Map.Entry<String, NodeAttribute> entry : mAttributes.entrySet()) {
87 if (!entry.getValue().equals(that.mAttributes.get(entry.getKey()))) {
147 NodeAttribute urn = mAttributes
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DLayoutParserWrapper.java49 private List<Attribute> mAttributes; field in class:LayoutParserWrapper
112 mAttributes = count > 0 ? new ArrayList<Attribute>(count) :
115 mAttributes.add(new Attribute(mDelegate.getAttributeNamespace(i),
127 mAttributes = null;
177 if (mAttributes == null) {
184 for (Attribute attribute : mAttributes) {
/frameworks/av/include/media/
H A DAudioRecord.h244 audio_source_t inputSource() const { return mAttributes.source; }
644 audio_attributes_t mAttributes; member in class:android::AudioRecord
H A DAudioTrack.h921 && (mAttributes.flags & AUDIO_FLAG_HW_AV_SYNC) == 0; }
971 audio_attributes_t mAttributes; member in class:android::AudioTrack
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.h146 audio_attributes_t * mAttributes; member in class:android::MediaPlayerService::AudioOutput
/frameworks/base/core/java/android/print/
H A DPrintJobInfo.java178 private PrintAttributes mAttributes; field in class:PrintJobInfo
216 mAttributes = other.mAttributes;
243 mAttributes = (PrintAttributes) parcel.readParcelable(null);
525 return mAttributes;
536 mAttributes = attributes;
665 parcel.writeParcelable(mAttributes, flags);
686 builder.append(", attributes: " + (mAttributes != null
687 ? mAttributes.toString() : null));
800 mPrototype.mAttributes
[all...]
/frameworks/base/libs/hwui/
H A DProgram.h409 KeyedVector<const char*, int> mAttributes; member in class:android::uirenderer::Program
/frameworks/base/media/jni/soundpool/
H A DSoundPool.h179 const audio_attributes_t* attributes() { return &mAttributes; }
220 audio_attributes_t mAttributes; member in class:android::SoundPool

Completed in 662 milliseconds

12