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
art
Commits
ed8fea78
Commit
ed8fea78
authored
9 years ago
by
Andreas Gampe
Committed by
Android (Google) Code Review
9 years ago
Browse files
Options
Download
Plain Diff
Merge "ART: Improve the symbolize script" into mnc-dev
parents
5ee9454d
6f0a9c30
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
tools/symbolize.sh
tools/symbolize.sh
+13
-1
No files found.
tools/symbolize.sh
View file @
ed8fea78
...
...
@@ -22,6 +22,7 @@
INTERACTIVE
=
"no"
if
[
"x
$1
"
=
"x--interactive"
]
;
then
INTERACTIVE
=
"yes"
shift
fi
# Pull the file from the device and symbolize it.
...
...
@@ -57,4 +58,15 @@ function all() {
done
}
all
if
[
"x
$1
"
=
"x"
]
;
then
# No further arguments, iterate over all oat files on device.
all
else
# Take the parameters as a list of paths on device.
while
((
$#)
)
;
do
DIR
=
$(
dirname
$1
)
NAME
=
$(
basename
$1
)
one
$DIR
$NAME
shift
done
fi
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