Searched refs:mData (Results 151 - 175 of 227) sorted by relevance

12345678910

/frameworks/base/core/java/android/content/
H A DIntent.java2740 * The path to the mount point for the removed media is contained in the Intent.mData field.
2747 * The path to the mount point for the unmounted media is contained in the Intent.mData field.
2754 * The path to the mount point for the checking media is contained in the Intent.mData field.
2761 * The path to the mount point for the checking media is contained in the Intent.mData field.
2768 * The path to the mount point for the mounted media is contained in the Intent.mData field.
2777 * The path to the mount point for the shared media is contained in the Intent.mData field.
2784 * The path to the mount point for the previously shared media is contained in the Intent.mData field.
2792 * The path to the mount point for the removed media is contained in the Intent.mData field.
2799 * The path to the mount point for the unmountable media is contained in the Intent.mData field.
2807 * The path to the mount point for the media to be ejected is contained in the Intent.mData fiel
5935 private Uri mData; field in class:Intent
[all...]
/frameworks/base/drm/jni/
H A Dandroid_drm_DrmManagerClient.cpp398 char* mData = Utility::getByteArrayValue(env, drmRights, "mData", &dataLength); local
400 if (NULL != mData) {
401 DrmRights rights(DrmBuffer(mData, dataLength),
410 delete[] mData; mData = NULL;
431 char* mData = Utility::getByteArrayValue(env, drmInfoObject, "mData", &dataLength); local
434 const DrmBuffer buffer(mData, dataLength);
502 delete[] mData; mDat
678 char* mData = Utility::getByteArrayValue(env, inputData, &dataLength); local
[all...]
/frameworks/base/core/java/android/app/
H A DLoaderManager.java243 Object mData; field in class:LoaderManagerImpl.LoaderInfo
324 callOnLoadFinished(mLoader, mData);
333 callOnLoadFinished(mLoader, mData);
386 mData = null;
461 if (mData != data || !mHaveData) {
462 mData = data;
531 writer.print(prefix); writer.print("mData="); writer.println(mData);
636 info.callOnLoadFinished(info.mLoader, info.mData);
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
H A DWifiP2pDnsSdServiceResponse.java176 if (mData == null) {
181 DataInputStream dis = new DataInputStream(new ByteArrayInputStream(mData));
/frameworks/ml/nn/driver/cache/BlobCache/
H A DBlobCache.h221 // mData points to the buffer containing the blob data.
222 const void* mData; member in class:android::BlobCache::Blob
228 // memory pointed to by mData when the Blob gets destructed.
304 // mData contains both the key and value data for the cache entry. The
306 uint8_t mData[]; member in struct:android::BlobCache::EntryHeader
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DRilMessageDecoder.java146 mCurrentRilMessage.mData = msg.obj;
174 rawData = IccUtils.hexStringToBytes((String) rilMsg.mData);
/frameworks/base/core/java/android/app/backup/
H A DFileBackupHelperBase.java91 result = writeFile_native(mPtr, f.getAbsolutePath(), in.mData.mBackupReader);
/frameworks/base/libs/protoutil/include/android/util/
H A DEncodedBuffer.h207 const EncodedBuffer& mData; member in class:android::util::EncodedBuffer::iterator
/frameworks/base/libs/services/include/android/os/
H A DDropBoxManager.h86 vector<uint8_t> mData; member in class:android::os::DropBoxManager::Entry
/frameworks/av/media/libmedia/
H A DMediaScanner.cpp244 memcpy(&result->mData[0], &this->mData[0], this->size());
250 memcpy(&instance->mData[0], data, dataSize);
/frameworks/base/media/jni/soundpool/
H A DSoundPool.h63 uint8_t* data() { return static_cast<uint8_t*>(mData->pointer()); }
66 sp<IMemory> getIMemory() { return mData; }
81 sp<IMemory> mData; member in class:android::Sample
/frameworks/base/opengl/java/android/opengl/
H A DETC1Util.java120 mData = data;
139 public ByteBuffer getData() { return mData; }
143 private ByteBuffer mData; field in class:ETC1Util.ETC1Texture
/frameworks/support/media/version-compat-tests/current/client/src/androidTest/java/android/support/mediacompat/client/
H A DMediaBrowserCompatTest.java715 assertNotNull(mCustomActionCallback.mData);
716 assertEquals(TEST_VALUE_2, mCustomActionCallback.mData.getString(TEST_KEY_2));
728 assertNotNull(mCustomActionCallback.mData);
729 assertEquals(TEST_VALUE_3, mCustomActionCallback.mData.getString(TEST_KEY_3));
741 assertNotNull(mCustomActionCallback.mData);
742 assertEquals(TEST_VALUE_4, mCustomActionCallback.mData.getString(TEST_KEY_4));
769 assertNotNull(mCustomActionCallback.mData);
770 assertEquals(TEST_VALUE_2, mCustomActionCallback.mData.getString(TEST_KEY_2));
781 assertNotNull(mCustomActionCallback.mData);
782 assertEquals(TEST_VALUE_3, mCustomActionCallback.mData
1040 Bundle mData; field in class:MediaBrowserCompatTest.CustomActionCallback
[all...]
/frameworks/base/core/tests/coretests/src/com/android/internal/os/
H A DKernelUidCpuClusterTimeReaderTest.java273 SparseArray<long[]> mData = new SparseArray<>(); field in class:KernelUidCpuClusterTimeReaderTest.VerifiableCallback
277 long[] array = mData.get(uid);
284 mData.clear();
292 mData.put(uid, array);
296 assertEquals(mData.size(), count);
H A DKernelUidCpuFreqTimeReaderTest.java304 SparseArray<long[]> mData = new SparseArray<>(); field in class:KernelUidCpuFreqTimeReaderTest.VerifiableCallback
308 long[] array = mData.get(uid);
315 mData.clear();
323 mData.put(uid, array);
327 assertEquals(mData.size(), count);
H A DKernelSingleUidTimeReaderTest.java274 private byte[] mData; field in class:KernelSingleUidTimeReaderTest.TestInjector
282 return mData;
292 mData = buffer.array();
/frameworks/av/media/libstagefright/
H A DNuCachedSource2.cpp38 void *mData; member in struct:android::PageCache::Page
81 free(page->mData);
99 page->mData = malloc(mPageSize);
159 memcpy(data, (const uint8_t *)(*it)->mData + delta, size);
163 memcpy(data, (const uint8_t *)(*it)->mData + delta, avail);
173 memcpy(data, (*it)->mData, copy);
363 mCacheOffset + mCache->totalSize(), page->mData, kPageSize);
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/picker/
H A DPicker.java447 private PickerColumn mData; field in class:Picker.PickerScrollArrayAdapter
454 mData = mColumns.get(mColIndex);
473 if (holder.textView != null && mData != null) {
474 holder.textView.setText(mData.getLabelFor(mData.getMinValue() + position));
488 return mData == null ? 0 : mData.getCount();
/frameworks/base/libs/hwui/
H A DVectorDrawable.h149 mData = prop.mData;
157 if (data == mData) {
160 mData = data;
163 const Data& getData() const { return mData; }
166 Data mData; member in class:android::uirenderer::VectorDrawable::Path::PathProperties
/frameworks/av/include/media/stagefright/
H A DMediaFilter.h65 sp<MediaCodecBuffer> mData; member in struct:android::MediaFilter::BufferInfo
/frameworks/av/include/media/stagefright/foundation/
H A DAString.h98 char *mData; member in struct:android::AString
/frameworks/av/media/libmediaplayer2/include/mediaplayer2/
H A DJAudioTrack.h50 void* mData; // pointer to the audio data. member in class:android::JAudioTrack::Buffer
/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
H A DAString.h98 char *mData; member in struct:android::AString
/frameworks/av/media/libstagefright/include/media/stagefright/
H A DMediaFilter.h65 sp<MediaCodecBuffer> mData; member in struct:android::MediaFilter::BufferInfo
/frameworks/av/media/libstagefright/include/media/stagefright/foundation/
H A DAString.h98 char *mData; member in struct:android::AString

Completed in 815 milliseconds

12345678910