diff options
| author | 2021-09-15 18:14:31 +0000 | |
|---|---|---|
| committer | 2021-09-15 18:14:31 +0000 | |
| commit | aeaae2655fa7e8ab05ef583f18ee69cbfa46de4e (patch) | |
| tree | 783bbbf61d8ed9131969f2bc1fc7c1a528929c49 | |
| parent | bb6ccaa00bc9a36d947b96ef9423a7cbc22fc455 (diff) | |
| parent | 6f714029bb5a321ef924f526defa1f131d478307 (diff) | |
Merge "Add API level to comment to marshal/unmarshal." am: 963b7bbac0 am: 6f714029bb
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1826579
Change-Id: I8e7a8590d7005c71d5beb44722c787bbed4e8ea4
| -rw-r--r-- | libs/binder/ndk/include_ndk/android/binder_parcel.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/binder/ndk/include_ndk/android/binder_parcel.h b/libs/binder/ndk/include_ndk/android/binder_parcel.h index a2f5c93cb9..84575811f0 100644 --- a/libs/binder/ndk/include_ndk/android/binder_parcel.h +++ b/libs/binder/ndk/include_ndk/android/binder_parcel.h @@ -1167,6 +1167,8 @@ AParcel* AParcel_create() __INTRODUCED_IN(31); /** * Marshals the raw bytes of the Parcel to a buffer. * + * Available since API level 33. + * * The parcel must not contain any binders or file descriptors. * * The data you retrieve here must not be placed in any kind of persistent storage. (on local disk, @@ -1189,6 +1191,8 @@ binder_status_t AParcel_marshal(const AParcel* parcel, uint8_t* buffer, size_t s /** * Set the data in the parcel to the raw bytes from the buffer. * + * Available since API level 33. + * * \param parcel The parcel to set data. * \param buffer The data buffer to set. * \param len The size of the data to set. |