Searched defs:mAttributes (Results 1 - 25 of 34) 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.java43 private final int mAttributes; field in class:UsbConfiguration
66 mAttributes = attributes;
96 return (mAttributes & ATTR_SELF_POWERED) != 0;
106 return (mAttributes & ATTR_REMOTE_WAKEUP) != 0;
117 return mAttributes;
158 ",mName=" + mName + ",mAttributes=" + mAttributes +
193 parcel.writeInt(mAttributes);
/frameworks/base/media/java/android/media/
H A DAudioFocusInfo.java32 private final AudioAttributes mAttributes; field in class:AudioFocusInfo
58 mAttributes = aa == null ? new AudioAttributes.Builder().build() : aa;
84 public AudioAttributes getAttributes() { return mAttributes; }
137 mAttributes.writeToParcel(dest, flags);
150 return Objects.hash(mAttributes, mClientUid, mClientId, mPackageName, mGainRequest, mFlags);
162 if (!mAttributes.equals(other.mAttributes)) {
H A DPlayerBase.java57 protected AudioAttributes mAttributes; field in class:PlayerBase
95 mAttributes = attr;
120 new PlayerIdCard(mImplType, mAttributes, new IPlayerWrapper(this)));
141 boolean attributesChanged = (mAttributes != attr);
142 mAttributes = attr;
274 mAttributes.getUsage(),
323 if ((mAttributes.getAllFlags() & AudioAttributes.FLAG_BYPASS_INTERRUPTION_POLICY) != 0) {
327 if (((mAttributes.getAllFlags() & AudioAttributes.FLAG_AUDIBILITY_ENFORCED) != 0)
328 && (mAttributes.getUsage() == AudioAttributes.USAGE_ASSISTANCE_SONIFICATION)) {
512 public final AudioAttributes mAttributes; field in class:PlayerBase.PlayerIdCard
[all...]
H A DSoundPool.java132 private final AudioAttributes mAttributes; field in class:SoundPool
163 mAttributes = attributes;
H A DTtmlRenderer.java260 out.append(node.mAttributes);
295 public final String mAttributes; field in class:TtmlNode
306 this.mAttributes = attributes;
/frameworks/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/av/media/libmediaplayer2/include/mediaplayer2/
H A DMediaPlayer2AudioOutput.h115 audio_attributes_t * mAttributes; member in class:android::MediaPlayer2AudioOutput
/frameworks/base/services/usb/java/com/android/server/usb/descriptors/
H A DUsbEndpointDescriptor.java60 private int mAttributes; // 3:1 Various flags field in class:UsbEndpointDescriptor
93 return mAttributes;
115 + Integer.toHexString(mAttributes & MASK_ATTRIBS_TRANSTYPE)
116 + " sync:" + Integer.toHexString(mAttributes & MASK_ATTRIBS_SYNCTYPE)
117 + " usage:" + Integer.toHexString(mAttributes & MASK_ATTRIBS_USEAGE));
119 return new UsbEndpoint(mEndpointAddress, mAttributes, mPacketSize, mInterval);
125 mAttributes = stream.getUnsignedByte();
/frameworks/base/tools/aapt/
H A DXMLNode.h199 Vector<attribute_entry> mAttributes; member in class:XMLNode
/frameworks/base/services/core/java/com/android/server/audio/
H A DFocusRequester.java75 private final AudioAttributes mAttributes; field in class:FocusRequester
93 mAttributes = aa;
110 mAttributes = afi.getAttributes();
175 return mAttributes;
238 + " -- attr: " + mAttributes
472 return new AudioFocusInfo(mAttributes, mCallingUid, mClientId, mPackageName,
/frameworks/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/support/print/src/main/java/androidx/print/
H A DPrintHelper.java278 private PrintAttributes mAttributes; field in class:PrintHelper.PrintBitmapAdapter
295 mAttributes = newPrintAttributes;
310 writeBitmap(mAttributes, mFittingMode, mBitmap, fileDescriptor,
377 private PrintAttributes mAttributes; field in class:PrintHelper.PrintUriAdapter
398 mAttributes = newPrintAttributes;
451 mediaSize = mAttributes.getMediaSize();
521 writeBitmap(mAttributes, mFittingMode, mBitmap, fileDescriptor,
/frameworks/av/include/media/
H A DAudioRecord.h252 audio_source_t inputSource() const { return mAttributes.source; }
694 audio_attributes_t mAttributes; member in class:android::AudioRecord
H A DAudioTrack.h990 && (mAttributes.flags & AUDIO_FLAG_HW_AV_SYNC) == 0; }
1042 audio_attributes_t mAttributes; member in class:android::AudioTrack
/frameworks/av/media/libaudioclient/include/media/
H A DAudioRecord.h252 audio_source_t inputSource() const { return mAttributes.source; }
694 audio_attributes_t mAttributes; member in class:android::AudioRecord
H A DAudioTrack.h990 && (mAttributes.flags & AUDIO_FLAG_HW_AV_SYNC) == 0; }
1042 audio_attributes_t mAttributes; member in class:android::AudioTrack
/frameworks/base/core/java/android/print/
H A DPrintJobInfo.java184 private PrintAttributes mAttributes; field in class:PrintJobInfo
222 mAttributes = other.mAttributes;
249 mAttributes = (PrintAttributes) parcel.readParcelable(null);
531 return mAttributes;
542 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.h427 KeyedVector<const char*, int> mAttributes; member in class:android::Program
/frameworks/base/media/jni/soundpool/
H A DSoundPool.h182 const audio_attributes_t* attributes() { return &mAttributes; }
223 audio_attributes_t mAttributes; member in class:android::SoundPool
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.h163 audio_attributes_t * mAttributes; member in class:android::MediaPlayerService::AudioOutput

Completed in 374 milliseconds

12