Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
halo
frameworks_native
Commits
f0190bff
Commit
f0190bff
authored
11 years ago
by
Marco Nelissen
Browse files
Options
Download
Email Patches
Plain Diff
Add support for writing byte arrays to parcels
b/13418320 Change-Id: I2285df9e9d3dc8a6a54055b13b352b81660bf45d
parent
19d64819
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
include/binder/Parcel.h
include/binder/Parcel.h
+1
-0
libs/binder/Parcel.cpp
libs/binder/Parcel.cpp
+10
-0
No files found.
include/binder/Parcel.h
View file @
f0190bff
...
...
@@ -102,6 +102,7 @@ public:
status_t
writeStrongBinder
(
const
sp
<
IBinder
>&
val
);
status_t
writeWeakBinder
(
const
wp
<
IBinder
>&
val
);
status_t
writeInt32Array
(
size_t
len
,
const
int32_t
*
val
);
status_t
writeByteArray
(
size_t
len
,
const
uint8_t
*
val
);
template
<
typename
T
>
status_t
write
(
const
Flattenable
<
T
>&
val
);
...
...
This diff is collapsed.
Click to expand it.
libs/binder/Parcel.cpp
View file @
f0190bff
...
...
@@ -628,6 +628,16 @@ status_t Parcel::writeInt32Array(size_t len, const int32_t *val) {
}
return
ret
;
}
status_t
Parcel
::
writeByteArray
(
size_t
len
,
const
uint8_t
*
val
)
{
if
(
!
val
)
{
return
writeAligned
(
-
1
);
}
status_t
ret
=
writeAligned
(
len
);
if
(
ret
==
NO_ERROR
)
{
ret
=
write
(
val
,
len
*
sizeof
(
*
val
));
}
return
ret
;
}
status_t
Parcel
::
writeInt64
(
int64_t
val
)
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment