Searched defs:mType (Results 76 - 100 of 155) sorted by relevance

1234567

/frameworks/base/obex/javax/obex/
H A DHeaderSet.java203 private String mType; // null terminated ASCII text string field in class:HeaderSet
321 mType = (String)headerValue;
519 return mType;
585 if (mType != null) {
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbAlsaManager.java90 public int mType; field in class:UsbAlsaManager.AlsaDevice
93 mType = type;
103 return (mType == other.mType && mCard == other.mCard && mDevice == other.mDevice);
110 sb.append(", type: " + mType);
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DTrackerEntry.java79 private EntryType mType; field in class:TrackerEntry
82 mType = type;
120 return mType;
173 cValues.put(ENTRY_TYPE, mType.toString());
174 if (mType == EntryType.LOCATION_TYPE) {
/frameworks/base/wifi/java/android/net/wifi/nan/
H A DTlvBufferUtils.java290 public int mType; field in class:TlvBufferUtils.TlvElement
310 mType = type;
423 builder.append("T=" + tlv.mType + ",");
/frameworks/native/include/input/
H A DKeyCharacterMap.h228 int mType; member in class:android::KeyCharacterMap
/frameworks/native/include/media/drm/
H A DDrmAPI.h123 KeyStatusType mType; member in struct:android::DrmPlugin::KeyStatus
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.h140 int32_t getDisplayType() const { return mType; }
205 DisplayType mType; member in class:android::DisplayDevice
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapMessage.java51 private final Type mType; field in class:BluetoothMapMessage
113 mType = strToType(attrs.get("type"));
187 json.put("type", mType);
272 return mType;
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerCCDecoder.cpp38 : mType(type), mData1(data1), mData2(data2) {
42 *channel = (mData1 >= 0x18 ? 1 : 0) + (mType ? 2 : 0);
48 uint8_t mType; member in struct:android::CCData
75 sprintf(tmp, "[%d]Basic: %c %c", cc->mType, cc->mData1, cc->mData2);
79 sprintf(tmp, "[%d]Special: %02x %02x", cc->mType, cc->mData1, cc->mData2);
83 sprintf(tmp, "[%d]Spanish: %02x %02x", cc->mType, cc->mData1, cc->mData2);
87 sprintf(tmp, "[%d]German: %02x %02x", cc->mType, cc->mData1, cc->mData2);
91 sprintf(tmp, "[%d]Mid-row: %02x %02x", cc->mType, cc->mData1, cc->mData2);
98 sprintf(tmp, "[%d]Ctrl: %02x %02x", cc->mType, cc->mData1, cc->mData2);
103 sprintf(tmp, "[%d]PAC: %02x %02x", cc->mType, c
[all...]
/frameworks/av/services/audioflinger/
H A DTrackBase.h85 bool isOutputTrack() const { return (mType == TYPE_OUTPUT); }
86 bool isPatchTrack() const { return (mType == TYPE_PATCH); }
166 track_type mType; // must be one of TYPE_DEFAULT, TYPE_OUTPUT, TYPE_PATCH ... member in class:TrackBase
/frameworks/base/core/java/android/content/
H A DBroadcastReceiver.java236 final int mType; field in class:BroadcastReceiver.PendingResult
255 mType = type;
368 if (mType == TYPE_COMPONENT) {
393 } else if (mOrderedHint && mType != TYPE_UNREGISTERED) {
H A DContentProviderOperation.java46 private final int mType; field in class:ContentProviderOperation
63 mType = builder.mType;
75 mType = source.readInt();
98 mType = cpo.mType;
122 dest.writeInt(mType);
222 return mType;
231 return mType == TYPE_INSERT;
240 return mType
489 private final int mType; field in class:ContentProviderOperation.Builder
[all...]
H A DRestrictionEntry.java106 private int mType; field in class:RestrictionEntry
145 mType = type;
156 this.mType = TYPE_CHOICE;
167 this.mType = TYPE_BOOLEAN;
178 this.mType = TYPE_MULTI_SELECT;
189 mType = TYPE_INTEGER;
207 mType = TYPE_BUNDLE_ARRAY;
217 mType = TYPE_BUNDLE;
250 this.mType = type;
258 return mType;
[all...]
/frameworks/base/core/java/android/nfc/
H A DNdefRecord.java281 private final byte[] mType; field in class:NdefRecord
568 mType = type;
598 mType = rs[0].mType;
622 return mType.clone();
682 if (Arrays.equals(mType, NdefRecord.RTD_TEXT)) {
687 String mimeType = new String(mType, StandardCharsets.US_ASCII);
720 if (Arrays.equals(mType, RTD_SMART_POSTER) && !inSmartPoster) {
731 } else if (Arrays.equals(mType, RTD_URI)) {
738 Uri uri = Uri.parse(new String(mType, StandardCharset
[all...]
/frameworks/base/core/java/android/view/
H A DPointerIcon.java144 private final int mType; field in class:PointerIcon
155 mType = type;
320 PointerIcon result = new PointerIcon(mType);
328 return mType;
362 out.writeInt(mType);
364 if (mType != TYPE_NULL) {
385 if (mType != otherIcon.mType
/frameworks/base/libs/hwui/
H A DMatrix.h97 mType = kTypeUnknown;
156 mType |= kTypeUnknown;
160 uint8_t type = mType;
167 mType = type;
169 mType |= kTypeTranslate;
171 mType &= ~kTypeTranslate;
239 void invalidateType() { mType = kTypeUnknown; }
242 mutable uint8_t mType; member in class:android::uirenderer::Matrix4
/frameworks/base/location/java/android/location/
H A DGpsClock.java63 private byte mType; field in class:GpsClock
82 mType = clock.mType;
103 return mType;
110 mType = value;
118 switch (mType) {
126 return "<Invalid:" + mType + ">";
404 gpsClock.mType = parcel.readByte();
425 parcel.writeByte(mType);
/frameworks/base/media/java/android/media/
H A DRingtoneManager.java232 private int mType = TYPE_RINGTONE; field in class:RingtoneManager
252 setType(mType);
265 setType(mType);
282 mType = type;
293 switch (mType) {
/frameworks/base/media/java/android/media/tv/
H A DTvTrackInfo.java57 private final int mType; field in class:TvTrackInfo
75 mType = type;
90 mType = in.readInt();
110 return mType;
141 if (mType != TYPE_AUDIO) {
153 if (mType != TYPE_AUDIO) {
166 if (mType != TYPE_VIDEO) {
179 if (mType != TYPE_VIDEO) {
192 if (mType != TYPE_VIDEO) {
205 if (mType !
310 private final int mType; field in class:TvTrackInfo.Builder
[all...]
/frameworks/base/services/tests/servicestests/src/android/net/dhcp/
H A DDhcpPacketTest.java57 private byte mType; field in class:DhcpPacketTest.TestDhcpPacket
64 mType = type;
99 addTlv(buffer, DHCP_MESSAGE_TYPE, mType);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameManager.java63 private FrameType mType; field in class:FrameManager.FrameSlot
68 mType = type;
73 return mType;
/frameworks/native/include/media/hardware/
H A DVideoAPI.h41 Type mType; member in struct:android::MediaImage
81 Type mType; member in namespace:android
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSimpleSessionDescription.java238 private final String mType; field in class:SimpleSessionDescription.Media
246 mType = type;
256 return mType;
369 buffer.append("m=").append(mType).append(' ').append(mPort);
/frameworks/rs/
H A DrsAllocation.h217 ObjectBaseRef<const Type> mType; member in class:android::renderscript::Allocation
219 mType.set(t);
/frameworks/av/media/libstagefright/httplive/
H A DLiveSession.h160 const char *mType; member in struct:android::LiveSession::StreamItem
169 : mType(type),
179 AString key(mType);

Completed in 3506 milliseconds

1234567