Searched refs:parcelable (Results 1 - 25 of 581) sorted by last modified time

1234567891011>>

/frameworks/support/media/src/main/aidl/android/support/v4/media/
H A DMediaDescriptionCompat.aidl18 parcelable MediaDescriptionCompat;
H A DMediaMetadataCompat.aidl18 parcelable MediaMetadataCompat;
H A DRatingCompat.aidl18 parcelable RatingCompat;
/frameworks/support/media/src/main/aidl/android/support/v4/media/session/
H A DMediaSessionCompat.aidl18 parcelable MediaSessionCompat.Token;
19 parcelable MediaSessionCompat.QueueItem;
20 parcelable MediaSessionCompat.ResultReceiverWrapper;
H A DParcelableVolumeInfo.aidl18 parcelable ParcelableVolumeInfo;
H A DPlaybackStateCompat.aidl18 parcelable PlaybackStateCompat;
/frameworks/support/media/src/main/java/androidx/media/
H A DSessionCommandGroup2.java222 Parcelable parcelable = list.get(i);
223 if (!(parcelable instanceof Bundle)) {
226 Bundle commandBundle = (Bundle) parcelable;
/frameworks/support/compat/src/main/aidl/android/support/v4/os/
H A DResultReceiver.aidl19 parcelable ResultReceiver;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DAdnRecord.aidl19 parcelable AdnRecord;
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
H A DSetupWizardLayout.java150 final Parcelable parcelable = super.onSaveInstanceState();
151 final SavedState ss = new SavedState(parcelable);
404 public SavedState(Parcelable parcelable) { argument
405 super(parcelable);
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipProfile.aidl19 parcelable SipProfile;
/frameworks/native/include/binder/
H A DParcel.h168 status_t writeNullableParcelable(const std::unique_ptr<T>& parcelable);
170 status_t writeParcelable(const Parcelable& parcelable);
288 status_t readParcelable(Parcelable* parcelable) const;
291 status_t readParcelable(std::unique_ptr<T>* parcelable) const;
431 parcelable);
855 status_t Parcel::readParcelable(std::unique_ptr<T>* parcelable) const {
859 parcelable->reset();
866 parcelable->reset(new T());
868 status = readParcelable(parcelable->get());
871 parcelable
878 writeNullableParcelable(const std::unique_ptr<T>& parcelable) argument
[all...]
/frameworks/native/include/gui/
H A DBufferHubConsumer.h32 // parcelable. Note that this call takes the ownership of the parcelable
33 // object and is guaranteed to succeed if parcelable object is valid.
34 static sp<BufferHubConsumer> Create(dvr::ConsumerQueueParcelable parcelable);
H A DBufferHubProducer.h42 // parcelable. Note that this call takes the ownership of the parcelable
43 // object and is guaranteed to succeed if parcelable object is valid.
44 static sp<BufferHubProducer> Create(dvr::ProducerQueueParcelable parcelable);
130 // Takes out the current producer as a binder parcelable object. Note that the
133 // takeout is successful and out_parcelable will hold the new parcelable
135 // invalid parcelable.
213 // A pending parcelable object which keeps the bufferhub channel alive.
/frameworks/native/libs/binder/
H A DParcel.cpp1110 status_t Parcel::writeRawNullableParcelable(const Parcelable* parcelable) { argument
1111 if (!parcelable) {
1115 return writeParcelable(*parcelable);
1118 status_t Parcel::writeParcelable(const Parcelable& parcelable) { argument
1119 status_t status = writeInt32(1); // parcelable is not null.
1123 return parcelable.writeToParcel(this);
2157 status_t Parcel::readParcelable(Parcelable* parcelable) const {
2166 return parcelable->readFromParcel(this);
/frameworks/native/libs/binder/include/binder/
H A DParcel.h168 status_t writeNullableParcelable(const std::unique_ptr<T>& parcelable);
170 status_t writeParcelable(const Parcelable& parcelable);
288 status_t readParcelable(Parcelable* parcelable) const;
291 status_t readParcelable(std::unique_ptr<T>* parcelable) const;
431 parcelable);
855 status_t Parcel::readParcelable(std::unique_ptr<T>* parcelable) const {
859 parcelable->reset();
866 parcelable->reset(new T());
868 status = readParcelable(parcelable->get());
871 parcelable
878 writeNullableParcelable(const std::unique_ptr<T>& parcelable) argument
[all...]
/frameworks/native/libs/gui/
H A DBufferHubConsumer.cpp30 /* static */ sp<BufferHubConsumer> BufferHubConsumer::Create(ConsumerQueueParcelable parcelable) { argument
31 if (!parcelable.IsValid()) {
32 ALOGE("BufferHubConsumer::Create: Invalid consumer parcelable.");
37 consumer->mQueue = ConsumerQueue::Import(parcelable.TakeChannelHandle());
H A DBufferHubProducer.cpp35 sp<BufferHubProducer> BufferHubProducer::Create(ProducerQueueParcelable parcelable) { argument
36 if (!parcelable.IsValid()) {
37 ALOGE("BufferHubProducer::Create: Invalid producer parcelable.");
42 producer->queue_ = ProducerQueue::Import(parcelable.TakeChannelHandle());
466 "connected to bufferhud. Has it been taken out as a parcelable?");
618 "parcelable?");
698 ALOGE("BufferHubProducer::exportToParcel: Invalid parcelable object.");
/frameworks/native/libs/gui/include/gui/
H A DBufferHubConsumer.h32 // parcelable. Note that this call takes the ownership of the parcelable
33 // object and is guaranteed to succeed if parcelable object is valid.
34 static sp<BufferHubConsumer> Create(dvr::ConsumerQueueParcelable parcelable);
H A DBufferHubProducer.h42 // parcelable. Note that this call takes the ownership of the parcelable
43 // object and is guaranteed to succeed if parcelable object is valid.
44 static sp<BufferHubProducer> Create(dvr::ProducerQueueParcelable parcelable);
130 // Takes out the current producer as a binder parcelable object. Note that the
133 // takeout is successful and out_parcelable will hold the new parcelable
135 // invalid parcelable.
213 // A pending parcelable object which keeps the bufferhub channel alive.
/frameworks/native/libs/vr/libpdx_uds/
H A Dclient_channel.cpp304 auto parcelable = std::make_unique<ChannelParcelable>( local
313 return parcelable;
/frameworks/native/aidl/binder/android/os/
H A DPersistableBundle.aidl20 parcelable PersistableBundle cpp_header "binder/PersistableBundle.h";
/frameworks/native/aidl/gui/android/view/
H A DSurface.aidl20 parcelable Surface cpp_header "gui/view/Surface.h";
/frameworks/data-binding/extensions/library/src/androidTest/java/android/databinding/
H A DObservableParcelTest.java164 // we append a suffix to the parcelable to test out of bounds
169 Parcelable parcelable = parcel.readParcelable(getClass().getClassLoader());
170 assertNotNull(parcelable);
171 assertEquals(klass, parcelable.getClass());
173 return (T) parcelable;
/frameworks/base/tools/sdkparcelables/src/com/android/sdkparcelables/
H A DMain.kt57 for (parcelable in parcelables) {
58 outWriter.write("parcelable ")
59 outWriter.write(parcelable.replace('/', '.').replace('$', '.'))

Completed in 590 milliseconds

1234567891011>>