| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|\ \
| |/
| |
| | |
Change-Id: I5f7884af56908adbdb9b9ab5799b5b7d0f7f51cc
|
| |
| |
| |
| | |
Change-Id: I2c2e8f443ddad6b65a29b2fd6ba1ff1d6e76fafc
|
| |
| |
| |
| | |
Change-Id: I2296a39ab1fb9c02575702476170a2f68d7de02f
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
My original plan was to just rely on the fixed realpath(3), but it turns out
that Java's behavior is quite different from the C library's in cases where
path elements don't exist. I also wasn't particularly excited about introducing
a fixed-length buffer. To that end, I've added a native implementation of
getCanonicalPath.
I've also improved the getAbsolutePath and getCanonicalPath documentation.
This patch also makes File.absolutePath transient, a regression in gingerbread
which uselessly bloated File's serialized form.
Bug: 2281992
Change-Id: Iff94eee07fe574251c1188b2b2eb71f585c81c6a
|
|
|
|
| |
Change-Id: Iac339144ed448848c96852da8d301d528ebfa0e6
|
|
|
|
| |
Change-Id: I1d126f594808d748af0662032f9dff5ee69377e6
|
|
|
|
| |
Change-Id: I54bb29e357812b089e83f3a2a831c80f5114a27a
|
|
|
|
| |
Change-Id: Ied76662c470ba878cec61189acf29f5cbbd4ccd4
|
|
|
|
| |
Change-Id: I0dcadda241e7fd2a7429f9dd43d1ff5e945e5467
|
| |
|
|
|
|
|
| |
Not strictly necessary for turning on -Werror for libcore, but worth doing
anyway.
|
|
|
|
|
|
|
|
|
|
|
|
| |
A new LocalArray C++ class lets us specify a "reasonable" amount of stack to
use, but transparently fall back to using the heap if we need more space.
The three places I've chosen to use LocalArray in this patch are fairly
random; all they have in common is that they're the places where we call
GetStringUTFRegion. There are more places LocalArray will be useful: the
java.io.File JNI in particular.
Bug: 2257819
|
|
native code, and make each have a set of rules for building on the host.
I also tightened up how sub.mk processing works and documented it
a little better.
Change-Id: I8a7a4c5697b2f22c4d69941dba381d6452200911
|