| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|\ \ \ \ \
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
modifiers when converting to string"
* commit 'e83e65b47b3688ab12e31aeecd5ad19432c9de51':
java.lang.reflect: Use only relevant modifiers when converting to string
|
| |\ \ \ \ |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Some modifiers not relevant might be used to encode internal information
(eg bridge methods) that shouldn't be displayed when converting to string
bug: 18488857
Change-Id: Ie82ed513b58083a795549a708197f1db52ffb796
|
|\ \ \ \ \ \
| |/ / / / /
| | | | / /
| |_|_|/ /
|/| | | |
| | | | |
| | | | | |
Javadocs."
* commit 'e1e9f406d4091be66d38ff8d204f74b85c5d657c':
Reflect removal of DSS cipher suites in Javadocs.
|
| | |/ /
| |/| |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Now that Android 5.1 (API Level 22) is out, Javadocs can mention that
DSS TLS/SSL cipher suites were removed after API Level 22. See
fef7818155899c092e6741de049fb7601dfcaf73.
Bug: 17409664
Change-Id: Ibd9da7d3056358492f25695f4949e460f1c98d48
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
sockets and addresses."
* commit '24c68680f1c187fa9d2a9cc4c4ddb5ae09fa7dfb':
Add support for netlink sockets and addresses.
|
| |\ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
* commit '2882e51204fdf7cc38c04adf1fc1b3b38c2a9f43':
Add support for netlink sockets and addresses.
|
| | |\ \ \ |
|
| | | |/ /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Additionally:
- support bind and connect calls with SocketAddresses
- getsockname and getpeername can return a NetlinkSocketAddress
Developed in conjunction with:
https://android-review.googlesource.com/135490
Bug: 18581716
Change-Id: I760a06cdb9bdb26c734fb02cf668a94de982e2b6
|
|\ \ \ \ \
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
bad fields"
* commit 'd34cf085ddca2c02709f5c8fc9524385a7208a30':
Pre-initialize more by moving bad fields
|
| |\ \ \ \
| | |/ / /
| | | | |
| | | | |
| | | | | |
* commit 'd61d442a5cd0f0f2e1adca26d73f1423319e2110':
Pre-initialize more by moving bad fields
|
| | |/ /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Some of the fields were causing the classes to not be initialized, so
move them to NoImagePreloadHolder. This will allow more of the boot
class path to be initialized at compile-time, while the holders can
still be initialized in the zygote.
This was separated out from https://android-review.googlesource.com/136700
and updated for zygote initialization.
Bug: 19498458
Bug: 19542228
Change-Id: If35af41c10e68c71f71b44ce0cc09c56dac310c6
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
accidentally removed."
* commit '825884affe954a19972f4aba0fa26f163e0ad588':
Remove size check that was accidentally removed.
|
| |\ \ \
| | |/ /
| | | |
| | | |
| | | | |
* commit 'e0d58e42984fe1646bec38f8ff5e50cbcfa10072':
Remove size check that was accidentally removed.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
We can now accept sizes larger than 4GB, but negative
sizes should still be rejected.
Fixes harmony test ZipEntryTest#test_setSizeJ.
Change-Id: Ie226daecb378ae5627b404dba926d53143ec7774
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
ZipFile/ZipInputStream/ZipOutputStream."
* commit '8ad80c3e79de8890087d3f04f3d3f97f4b6d1e55':
Implement zip64 support for ZipFile/ZipInputStream/ZipOutputStream.
|
| |\ \ \
| | |/ /
| | | |
| | | |
| | | |
| | | |
| | | | |
ZipFile/ZipInputStream/ZipOutputStream."
* commit '26ef26ec963acca178c7d3d9781d84b38036469e':
Implement zip64 support for ZipFile/ZipInputStream/ZipOutputStream.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
There are several open questions that I hope to resolve in future
changes :
- Our heuristics for detecting whether a zip outputstream should
switch over to zip64 or not are imprecise.
- Also, given that we now officially support zip64, we have to assume
new entries whose size is unknown need the zip64 header / footer.
This will make output files slightly larger and less compatible with
older tools. If we don't do this, we'll have to go back and rewrite &
compact parts of the stream we'd already flushed, which isn't always
possible. The other option is to assume zip32 for streams of unknown
length and throw if more than 4G of data is written to them.
Change-Id: Ibb4a97b5f83fd3ab850d7c407ecfda663968a6b9
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Expose ST_* constants via OsConstants. Without these constants being
exposed, it's impossible to meaningfully use StructStatVfs.f_flag
returned from the Os.statvfs() call.
Change-Id: Iae4af8da93e50b3db965a1c8a2af8a32fea37419
|
|\ \ \
| |/ /
| | |
| | |
| | | |
* commit 'a378356955bcaf7be9434e8babed1b106f741a00':
Add ST_* constants to OsConstants
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Expose ST_* constants via OsConstants. Without these constants being
exposed, it's impossible to meaningfully use StructStatVfs.f_flag
returned from the Os.statvfs() call.
For now, @hide the new constants.
Change-Id: I82536521972e9e87a1936dd712b9e8153d120cc1
|
|\ \ \
| |/ /
| | |
| | |
| | | |
* commit '5889c5c8d2e814e9319135f52f1947c463c82561':
Clarify docs for CharsetEncoder#flush.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
flush may return CoderResult.MALFORMED if the input was "incomplete",
say for eg. if the last char was one half of a surrogate pair.
Note that encoder subclasses cannot detect this inside encode()
because the overrideable encodeLoop() method isn't told whether it's
at the end of input or not.
This change also introduces a test to demonstrate this behaviour.
bug: 19185235
Change-Id: Ie1170fe1409a1abb883ef6f36ac8589855b3b2ab
|
|\ \ \
| |/ /
|/| | |
|
| |\ \
| | |/
| | |
| | |
| | | |
* commit 'db4499e1983c9649c8de7697d10825028fd8094d':
Use ICU for relative time formatting
|
| |\ \
| | | |
| | | |
| | | |
| | | | |
* commit 'a9c24ad83f3cd18738268559169ba901b5f70232':
Fix LocaleTest#testDefaultLocale.
|
| |\ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
* commit 'c512e722651ab516a01d84aacd93f264c09f5175':
Explicitly state all File constructor NPEs.
|
| |\ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* commit '0951821efa25eed9d7b4372ee7ee8ac063682c68':
CharsetEncoder.flush() should only call implFlush() once.
|
| |\ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
* commit 'f9fbd0c737fdc41dc1956d370021e511c95bebc3':
Make Cipher.update return null for empty input.
|
| |\ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
* commit 'a8521691a4a538600da8cd1b0b59ce23807a534c':
Introduce user.locale [take 2]
|
| |\ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
sockets."
* commit '26bb48032cdcc8d69484ff168389c34e1f873250':
Use the IPv6 instead of the IPv4 wildcard address in sockets.
|
| |\ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
* commit '70af3d949171b22f70a87b1f0dde15f561ed4ca9':
Clarify comment on private method.
|
| |\ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
* commit '934ecd5677fec1bae56662c10920a331e17eea81':
Make socket binding behavior clearer
|
| |\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
* commit '8602c015f60df0b7385580407d1c75d7c47f9a71':
Remove fcntlLong, use fcntlInt for F_SETFD instead.
|
| |\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
* commit '9169032f055cb8f007fcb9df979518177e22c833':
Add fcntlInt.
|
| |\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
* commit '510742b01e0662c1c6078783d0ef0c4184ba9945':
Add a warning about relative paths to ZipEntry#getName.
|
| |\ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
* commit '7861c3e60b7769a9cce11015a48842f1b1712360':
Revert "Introduce user.locale."
|
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | |
* commit 'a4fe2227d3c7e72b84d0ac6b3e15f811564b24ee':
Introduce user.locale.
|
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | |
* commit '3cdad0e18459a53bdf7e33c6509244a5928cefa5':
Fix confusing Selector docs
|
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | |
* commit '1a923668463640b1e0cbdc9d90bc4530240fc75d':
Fix the hostname for the IPv6 loopback address
|
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | |
* commit '6bfd8701461f0794a529e00dd12c61b67a5497d3':
More FileDescriptor.isSocket cleanup.
|
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | |
* commit 'ecd42914677fde7762bd47e33d5a0dd81989c9e9':
Fix a javadoc typo in java.net.URL.equals.
|
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | |
* commit '2bec0e7565816cdcc86be312cc473904ef52db4e':
Avoid a type conversion during comparison
|
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | |
Comparator<T>)."
* commit '880bf04a93307044ea608982b92a33c0995abf3a':
Extend ArrayList fastpath to Collections.sort(List<T>, Comparator<T>).
|
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | | |
* commit '7d286deeff7a2ba63d3981408654f527f7831ee3':
Fix documentation for Calendar#clone.
|
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | | | |
* commit 'f891c7deeeeb20ef5b7217634365a2ed48c50050':
Fix CharsetEncoder.canEncode for empty CharSequences
|
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | | | | |
* commit '50e0273a38619924b582b1e1394d6049dde13cda':
Add a zero-copy path for Collections.sort() on ArrayList.
|
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | | | | | |
* commit 'c3c69f0786877aec9c4cb1279f43dc35e668f273':
Fix integer overflow issue in ZoneInfo.
|
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | |
* commit '904dbce05917afc0746177c83c6b901a95b05fbe':
MimeUtils: add ODF presentation (template)
|
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | |
* commit '35b10b445782451536ced17fc77c21f852313f3f':
Add various system calls needed by the zygote.
|