Dan Albert
88cf1c8c4a
Fix Windows SDK build.
...
Change-Id: I9c0f9c92c28867ff17f1ec83aac935d18348c335
2015-02-24 14:08:03 -08:00
Mark Salyzyn
d4e5c32af7
init: grab-bootchart.sh: run bootchart and display results
...
- KISS as all options are now passed to adb for better or worse
- runs bootchart and immediately displays the results
Bug: 19485335
Bug: 18390773
Change-Id: Id32930031371d0368e605810f0c998232a1d4f16
2015-02-24 13:56:43 -08:00
Elliott Hughes
db3a5d984e
Merge "Add missing <stdlib.h> to adb_listeners.c."
2015-02-24 20:37:54 +00:00
Elliott Hughes
3b967f52f2
Add missing <stdlib.h> to adb_listeners.c.
...
Change-Id: If9505880a33131b27bfaa19f3efd45c83a6810ed
2015-02-24 12:37:13 -08:00
Dan Albert
a75b4935a4
Merge "Move more into libadb and libadbd."
2015-02-24 19:44:34 +00:00
Dan Albert
9f3540d017
Merge "Oops. Fix make variable name. Thanks again, make."
2015-02-24 19:44:12 +00:00
Dan Albert
8ef39424e8
Merge "Ignore another stupid lint warning."
2015-02-24 19:44:05 +00:00
Narayan Kamath
c40cf1ce9d
Merge "Remove useless refCounting from FileMap."
2015-02-24 12:50:54 +00:00
Mark Salyzyn
263b6cb6e3
Merge "Add more logging message and dead code"
2015-02-23 22:38:50 +00:00
Nanik Tolaram
b627a0e2ed
Add more logging message and dead code
...
* Add more logging message to aid in easier debugging
* Remove unnecessary dead/commented code
Change-Id: I9c7fe8f6b674cab41601001458010ab176b89776
Signed-off-by: Nanik Tolaram <nanikjava@gmail.com>
2015-02-23 22:38:39 +00:00
William Roberts
6889007627
seclabel use on services out of system partition
...
These services can make use of type transitions already
present in the base policy.
Change-Id: Id785c39c4ea44598c64dc499bd943c73bc55ca85
2015-02-23 13:50:37 -08:00
Narayan Kamath
6832a7a4e0
Remove useless refCounting from FileMap.
...
Nobody ever called acquire() so release() was always
equivalent to delete. Just use delete instead so that
people can use unique_ptr directly (or shared_ptr if
they really want refcounts).
Change-Id: I9e3ad5e0f6a4fcc4e02e5a2ff7ef9514fe234415
2015-02-23 15:49:43 +00:00
Narayan Kamath
f1ac6917da
Merge "Remove loghack.h."
2015-02-21 09:51:18 +00:00
Narayan Kamath
453a332812
Remove loghack.h.
...
This was supposedly used to enable logging when !HAVE_ANDROID_OS
but it's only used in a file that's target specific.
Change-Id: Id83f2597e48a66b4821fc3b1237e212872b909fb
2015-02-21 09:46:31 +00:00
Dan Albert
3c43858986
Move more into libadb and libadbd.
...
None of this needs to be shared with minadbd, but these sources are
still needed for anything linking libadb (such as tests).
Change-Id: I3024f714da42364bf27a991986f00676e2bbbf2c
2015-02-20 17:24:30 -08:00
Dan Albert
bf10647b61
Oops. Fix make variable name. Thanks again, make.
...
Change-Id: Iecbb41acc835bb8eb20b668c89a3ff065470fcb7
2015-02-20 17:20:37 -08:00
Dan Albert
f1591691ee
Ignore another stupid lint warning.
...
Change-Id: I8e586e472a139cc3039f1371f8a99935d20aa0f0
2015-02-20 17:19:22 -08:00
Narayan Kamath
1158c7d5fe
Merge "Remove reference to NOT_USING_KLIBC and cygwin."
2015-02-20 16:40:33 +00:00
Andreas Gampe
623eebe68f
Merge "Libcutils: Remove unused variable"
2015-02-20 00:57:33 +00:00
Andreas Gampe
7f71a45a17
Libcutils: Remove unused variable
...
Change-Id: I95eed017e78468c4946b2a5b62b6fe92e256673e
2015-02-19 16:54:32 -08:00
Dan Albert
7e84308b74
Merge "Lose adb.c and sockets.c to libadb."
2015-02-19 23:47:18 +00:00
Dan Albert
e1ca623faa
Lose adb.c and sockets.c to libadb.
...
Also kill the device side libadb. This was added for the now dead
device side adb, and is no longer used.
Bug: 17626262
Change-Id: I3b28915641fd5b4f16fc86cf1f4f4e9711093001
2015-02-19 13:49:35 -08:00
Dan Albert
18daa159ec
Merge "Document the behavior of props affecting adb root."
2015-02-19 20:33:31 +00:00
Dan Albert
13f9c406d7
Document the behavior of props affecting adb root.
...
Change-Id: Icfdc3ba696556d6db64835e61dde6f40b491d1a7
2015-02-19 12:29:01 -08:00
Dan Albert
63feeaaa06
Merge "Fix Windows adb build."
2015-02-19 19:37:24 +00:00
Dan Albert
6795cd8db5
Fix Windows adb build.
...
Change-Id: I560bedfcf77556b36acadc19f5dac71b3628ea2b
2015-02-19 11:36:53 -08:00
Dan Albert
9a525d7f2e
Merge "Move adb_main to its own file."
2015-02-19 18:44:17 +00:00
Dan Albert
915d2e98eb
Merge "Move the listener code into its own file."
2015-02-19 18:44:11 +00:00
Dan Albert
e1f2080f67
Merge "Move the adb auth code into its own file."
2015-02-19 18:44:04 +00:00
Narayan Kamath
5955a9f5e4
Remove reference to NOT_USING_KLIBC and cygwin.
...
The reference to NOT_USING_KLIBC appears to be the only one
in our codebase. This change also removes some cygwin specific
retry logic - all other supported platforms in this section
of the code should support mapping at an offset.
Note that i've reversed the sense of the check, we always sysconf
since that's recommended practice.
Change-Id: Ib985fb665193d7a07a282f7092cd77c0bc508a66
2015-02-19 18:36:27 +00:00
Dan Albert
bd0b750897
Move adb_main to its own file.
...
Change-Id: If6e98c089b39f73bd8f4a878a82669bfeee367f3
2015-02-18 18:32:54 -08:00
Dan Albert
e9fca14c9e
Move the listener code into its own file.
...
Change-Id: I7332455ed1a213daedeaa4a81260edf08b2fd131
2015-02-18 18:22:52 -08:00
Dan Albert
ba3a251749
Move the adb auth code into its own file.
...
Change-Id: I84cf0bd7777f0147119e7c6afc4096c2e93156a2
2015-02-18 18:22:52 -08:00
Dan Albert
1403aa36b2
Merge "Move emulator tracing into its own file."
2015-02-19 02:10:10 +00:00
Dan Albert
21c3eaf4cc
Move emulator tracing into its own file.
...
adb.c is far too monolithic.
Change-Id: I4a9ee97927e4a96a38ea5859d84efac86bfdfc35
2015-02-18 17:21:17 -08:00
Elliott Hughes
1af18c3c98
Merge "Fix build."
2015-02-19 00:59:36 +00:00
Elliott Hughes
4c9d24a3ed
Fix build.
...
Change-Id: I31fc562068ebbba5e9872ee91694feb611fc957f
2015-02-18 16:57:30 -08:00
Elliott Hughes
8e16a7e2a3
Merge "adb: add "adb unroot" to restart adb in non-root mode"
2015-02-19 00:18:38 +00:00
Dan Albert
2268788ae4
Merge "Move USB transport code to libadb."
2015-02-18 23:42:42 +00:00
Dan Pasanen
9885881d06
adb: add "adb unroot" to restart adb in non-root mode
...
Change-Id: Ice6b94a71a62648ac073d129914a07372411fb25
2015-02-18 12:37:11 -08:00
Yabin Cui
b703214e25
Merge "Move sprintf to snprintf."
2015-02-18 20:26:02 +00:00
Dan Albert
9449376328
Move USB transport code to libadb.
...
Also note that we need both a libadb and a libadbd (for now) to
differentiate between code using ADB_HOST=1 and ADB_HOST=0.
Bug: 17626262
Change-Id: I873a8fb442a8a69258fe39af17781714a8fae4f6
2015-02-18 10:55:28 -08:00
Dan Albert
1ac334ec66
Merge "Add extern "C" to all the adb headers."
2015-02-18 17:52:40 +00:00
Dan Albert
32e872caa4
Merge "Ignore useless cpplint messages in adb."
2015-02-18 17:45:26 +00:00
Dan Albert
818fb4b448
Add extern "C" to all the adb headers.
...
Change-Id: Iaefa3e18d6ee2e065eb97271a796613b2a8e7d6e
2015-02-18 00:21:16 -08:00
Dan Albert
54ac73aa34
Ignore useless cpplint messages in adb.
...
Change-Id: I6411eb3963d215b228e50cd967a2174e5036ed73
2015-02-18 00:20:37 -08:00
Yabin Cui
e2d63af002
Move sprintf to snprintf.
...
Bug: 19340053
Change-Id: Id0d866e6195ed4752b4be6081eeb2aab8b1dbe9a
2015-02-17 19:27:51 -08:00
Elliott Hughes
f96c15000f
Merge "Fix the WriteStringToFile overload that takes mode/owner/group."
2015-02-17 18:47:01 +00:00
Elliott Hughes
9d1f515ed1
Fix the WriteStringToFile overload that takes mode/owner/group.
...
The actual bug is == instead of !=, but the real cause was me trying to be
too clever. This patch switches to much simpler code, and -- since the
intended use of this code is security anyway -- adds logging if anything
goes wrong.
Bug: 19361774
Change-Id: If2af07d31a5002f9010b838247b691f6b28bdfb1
2015-02-17 10:25:23 -08:00
Elliott Hughes
29576ae890
Merge "/vendor is sometimes on a separate partition now."
2015-02-14 04:56:22 +00:00