Searched defs:parcel (Results 126 - 132 of 132) sorted by relevance

123456

/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp105 // Filter format in a parcel:
124 // @return true if the parcel starts with a valid filter.
204 // Audio attributes format in a parcel:
225 void unmarshallAudioAttributes(const Parcel& parcel, audio_attributes_t *attributes) argument
227 attributes->usage = (audio_usage_t) parcel.readInt32();
228 attributes->content_type = (audio_content_type_t) parcel.readInt32();
229 attributes->source = (audio_source_t) parcel.readInt32();
230 attributes->flags = (audio_flags_mask_t) parcel.readInt32();
231 const bool hasFlattenedTag = (parcel.readInt32() == kAudioAttributesMarshallTagFlattenTags);
234 String16 tags = parcel
1168 setAudioAttributes_l(const Parcel &parcel) argument
[all...]
/frameworks/base/core/java/android/os/
H A DParcel.java367 * Returns the total amount of data contained in the parcel.
375 * parcel. That is, {@link #dataSize}-{@link #dataPosition}.
382 * Returns the current position in the parcel data. Never
390 * Returns the total amount of space in the parcel. This is always
392 * amount of room left until the parcel needs to re-allocate its
400 * Change the amount of data in the parcel. Can be either smaller or
411 * Move the current read/write position in the parcel.
412 * @param pos New offset in the parcel; must be between 0 and
420 * Change the capacity (current available space) of the parcel.
422 * @param size The new capacity of the parcel, i
462 appendFrom(Parcel parcel, int offset, int length) argument
[all...]
/frameworks/base/core/java/android/view/
H A DMotionEvent.java1495 private static native long nativeReadFromParcel(long nativePtr, Parcel parcel); argument
1496 private static native void nativeWriteToParcel(long nativePtr, Parcel parcel); argument
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java100 * The resource ID of the layout file. (Added to the parcel)
442 public SetOnClickFillInIntent(Parcel parcel) { argument
443 viewId = parcel.readInt();
444 fillInIntent = Intent.CREATOR.createFromParcel(parcel);
524 public SetPendingIntentTemplate(Parcel parcel) { argument
525 viewId = parcel.readInt();
526 pendingIntentTemplate = PendingIntent.readPendingIntentOrNullFromParcel(parcel);
602 public SetRemoteViewsAdapterList(Parcel parcel) { argument
603 viewId = parcel.readInt();
604 viewTypeCount = parcel
683 SetRemoteViewsAdapterIntent(Parcel parcel) argument
747 SetOnClickPendingIntent(Parcel parcel) argument
932 SetDrawableParameters(Parcel parcel) argument
1506 ViewGroupAction(Parcel parcel, BitmapCache bitmapCache) argument
1632 TextViewDrawableAction(Parcel parcel) argument
1777 TextViewSizeAction(Parcel parcel) argument
1819 ViewPaddingAction(Parcel parcel) argument
1874 LayoutParamAction(Parcel parcel) argument
1952 TextViewDrawableColorFilterAction(Parcel parcel) argument
1960 readPorterDuffMode(Parcel parcel) argument
2017 SetRemoteInputsAction(Parcel parcel) argument
2151 RemoteViews(Parcel parcel) argument
2155 RemoteViews(Parcel parcel, BitmapCache bitmapCache) argument
[all...]
H A DEditor.java305 Parcel parcel = state.getParcel();
306 mUndoManager.saveInstanceState(parcel);
307 mUndoInputFilter.saveInstanceState(parcel);
312 Parcel parcel = state.getParcel();
313 mUndoManager.restoreInstanceState(parcel, state.getClassLoader());
314 mUndoInputFilter.restoreInstanceState(parcel);
5717 public void saveInstanceState(Parcel parcel) { argument
5718 parcel.writeInt(mIsUserEdit ? 1 : 0);
5719 parcel.writeInt(mHasComposition ? 1 : 0);
5722 public void restoreInstanceState(Parcel parcel) { argument
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java2723 * <strong>Note:</strong> After the instance is written to a parcel it
2728 public void writeToParcel(Parcel parcel, int flags) { argument
2729 parcel.writeInt(isSealed() ? 1 : 0);
2730 parcel.writeLong(mSourceNodeId);
2731 parcel.writeInt(mWindowId);
2732 parcel.writeLong(mParentNodeId);
2733 parcel.writeLong(mLabelForId);
2734 parcel.writeLong(mLabeledById);
2735 parcel.writeLong(mTraversalBefore);
2736 parcel
2921 initFromParcel(Parcel parcel) argument
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java1591 * Unflatten the notification from a parcel.
1594 public Notification(Parcel parcel) { argument
1597 readFromParcelImpl(parcel);
1599 allPendingIntents = (ArraySet<PendingIntent>) parcel.readArraySet(null);
1602 private void readFromParcelImpl(Parcel parcel) argument
1604 int version = parcel.readInt();
1606 when = parcel.readLong();
1607 creationTime = parcel.readLong();
1608 if (parcel.readInt() != 0) {
1609 mSmallIcon = Icon.CREATOR.createFromParcel(parcel);
1876 writeToParcel(Parcel parcel, int flags) argument
1909 writeToParcelImpl(Parcel parcel, int flags) argument
6911 BuilderRemoteViews(Parcel parcel) argument
[all...]

Completed in 326 milliseconds

123456