Order files

This commit is contained in:
Andros Fenollosa
2016-11-12 12:27:08 +01:00
parent 73cec1f153
commit 892d89c7f1
1814 changed files with 85 additions and 80 deletions

Binary file not shown.

Binary file not shown.

BIN
android/tools/jdk-osx/bin/idlj Executable file

Binary file not shown.

BIN
android/tools/jdk-osx/bin/jar Executable file

Binary file not shown.

Binary file not shown.

BIN
android/tools/jdk-osx/bin/java Executable file

Binary file not shown.

BIN
android/tools/jdk-osx/bin/javac Executable file

Binary file not shown.

BIN
android/tools/jdk-osx/bin/javadoc Executable file

Binary file not shown.

View File

@ -0,0 +1,89 @@
#!/bin/sh
#
# JavaFX Packager tool execution script for Linux/Solaris/OS X.
#
# resolve symlinks
PRG=$0
while [ -h "$PRG" ]; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '^.*-> \(.*\)$' 2>/dev/null`
if expr "$link" : '^/' 2> /dev/null >/dev/null; then
PRG="$link"
else
PRG="`dirname "$PRG"`/$link"
fi
done
# detect Darwin and Cygwin environments
darwin=false;
cygwin=false;
case "`uname`" in
Darwin*) darwin=true;
if [ -z "$JAVA_HOME" ] ; then
BIN_DIR=`dirname $PRG`
JAVA_HOME=`cd $BIN_DIR > /dev/null; pwd`/..
fi
;;
CYGWIN*) cygwin=true;;
esac
if [ -n "$JAVA_HOME" -a -x "$JAVA_HOME/bin/javac" ] ; then
JAVA_CMD="$JAVA_HOME/bin/java"
export JAVA_HOME
else
JAVAC_CMD=`which javac 2> /dev/null `
while [ -h "$JAVAC_CMD" ]; do
ls=`ls -ld "$JAVAC_CMD"`
link=`expr "$ls" : '^.*-> \(.*\)$' 2>/dev/null`
if expr "$link" : '^/' 2> /dev/null >/dev/null; then
JAVAC_CMD="$link"
else
JAVAC_CMD="`dirname "$JAVAC_CMD"`/$link"
fi
done
BIN_DIR=`dirname "$JAVAC_CMD"`
JAVA_HOME=`dirname "$BIN_DIR"`
if [ "m$JAVA_HOME" != "m." ]; then
JAVA_CMD="$JAVA_HOME/bin/java"
export JAVA_HOME
else
unset JAVA_HOME
JAVA_CMD=`which java 2> /dev/null `
if [ -z "$JAVA_CMD" ]; then
JAVA_CMD="java"
fi
fi
fi
if [ ! -x "$JAVA_CMD" ] ; then
echo 'Error: JAVA_HOME is not defined, cannot find "java" command.'
exit 1
fi
case "$PRG" in
*javafxpackager)
echo 'javafxpackager has been renamed javapackager';
echo 'The original file may be removed in a future release in lieu of javapackager.';
echo 'Please update your scripts.';
echo ;;
esac
javafx_home=`dirname "$PRG"`/..
classpath=".:$javafx_home/lib/ant-javafx.jar"
if [ -e "$javafx_home/jre/lib/ext/jfxrt.jar" ] ; then
classpath="$classpath:$javafx_home/jre/lib/ext/jfxrt.jar"
elif [ -e "$javafx_home/rt/lib/ext/jfxrt.jar" ] ; then
classpath="$classpath:$javafx_home/rt/lib/ext/jfxrt.jar"
fi
if $cygwin ; then
classpath=`cygpath --path --windows "$classpath"`
javafx_home=`cygpath --windows "$javafx_home"`
JAVA_CMD=`cygpath --unix "$JAVA_CMD"`
fi
exec "$JAVA_CMD" -Xmx256M "-Djavafx.home=$javafx_home" -classpath "$classpath" com.sun.javafx.tools.packager.Main "$@"

BIN
android/tools/jdk-osx/bin/javah Executable file

Binary file not shown.

BIN
android/tools/jdk-osx/bin/javap Executable file

Binary file not shown.

View File

@ -0,0 +1,89 @@
#!/bin/sh
#
# JavaFX Packager tool execution script for Linux/Solaris/OS X.
#
# resolve symlinks
PRG=$0
while [ -h "$PRG" ]; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '^.*-> \(.*\)$' 2>/dev/null`
if expr "$link" : '^/' 2> /dev/null >/dev/null; then
PRG="$link"
else
PRG="`dirname "$PRG"`/$link"
fi
done
# detect Darwin and Cygwin environments
darwin=false;
cygwin=false;
case "`uname`" in
Darwin*) darwin=true;
if [ -z "$JAVA_HOME" ] ; then
BIN_DIR=`dirname $PRG`
JAVA_HOME=`cd $BIN_DIR > /dev/null; pwd`/..
fi
;;
CYGWIN*) cygwin=true;;
esac
if [ -n "$JAVA_HOME" -a -x "$JAVA_HOME/bin/javac" ] ; then
JAVA_CMD="$JAVA_HOME/bin/java"
export JAVA_HOME
else
JAVAC_CMD=`which javac 2> /dev/null `
while [ -h "$JAVAC_CMD" ]; do
ls=`ls -ld "$JAVAC_CMD"`
link=`expr "$ls" : '^.*-> \(.*\)$' 2>/dev/null`
if expr "$link" : '^/' 2> /dev/null >/dev/null; then
JAVAC_CMD="$link"
else
JAVAC_CMD="`dirname "$JAVAC_CMD"`/$link"
fi
done
BIN_DIR=`dirname "$JAVAC_CMD"`
JAVA_HOME=`dirname "$BIN_DIR"`
if [ "m$JAVA_HOME" != "m." ]; then
JAVA_CMD="$JAVA_HOME/bin/java"
export JAVA_HOME
else
unset JAVA_HOME
JAVA_CMD=`which java 2> /dev/null `
if [ -z "$JAVA_CMD" ]; then
JAVA_CMD="java"
fi
fi
fi
if [ ! -x "$JAVA_CMD" ] ; then
echo 'Error: JAVA_HOME is not defined, cannot find "java" command.'
exit 1
fi
case "$PRG" in
*javafxpackager)
echo 'javafxpackager has been renamed javapackager';
echo 'The original file may be removed in a future release in lieu of javapackager.';
echo 'Please update your scripts.';
echo ;;
esac
javafx_home=`dirname "$PRG"`/..
classpath=".:$javafx_home/lib/ant-javafx.jar"
if [ -e "$javafx_home/jre/lib/ext/jfxrt.jar" ] ; then
classpath="$classpath:$javafx_home/jre/lib/ext/jfxrt.jar"
elif [ -e "$javafx_home/rt/lib/ext/jfxrt.jar" ] ; then
classpath="$classpath:$javafx_home/rt/lib/ext/jfxrt.jar"
fi
if $cygwin ; then
classpath=`cygpath --path --windows "$classpath"`
javafx_home=`cygpath --windows "$javafx_home"`
JAVA_CMD=`cygpath --unix "$JAVA_CMD"`
fi
exec "$JAVA_CMD" -Xmx256M "-Djavafx.home=$javafx_home" -classpath "$classpath" com.sun.javafx.tools.packager.Main "$@"

BIN
android/tools/jdk-osx/bin/jcmd Executable file

Binary file not shown.

Binary file not shown.

BIN
android/tools/jdk-osx/bin/jdb Executable file

Binary file not shown.

BIN
android/tools/jdk-osx/bin/jdeps Executable file

Binary file not shown.

BIN
android/tools/jdk-osx/bin/jhat Executable file

Binary file not shown.

BIN
android/tools/jdk-osx/bin/jinfo Executable file

Binary file not shown.

BIN
android/tools/jdk-osx/bin/jjs Executable file

Binary file not shown.

BIN
android/tools/jdk-osx/bin/jmap Executable file

Binary file not shown.

21
android/tools/jdk-osx/bin/jmc Executable file
View File

@ -0,0 +1,21 @@
#!/bin/sh
#Resolve the full path to this script
RELDIR=$(dirname "$0")
pushd "$RELDIR" > /dev/null
JDKBINDIR=`pwd -P`
popd > /dev/null
RELDIR="$JDKBINDIR/../lib/missioncontrol/Java Mission Control.app/Contents/MacOS"
pushd "$RELDIR" > /dev/null
JMCAPPDIR=`pwd -P`
popd > /dev/null
# Escaping whitespace
JMCAPPDIR=$(echo $JMCAPPDIR | sed 's/ /\\ /g')
CMD="$JMCAPPDIR/jmc $*"
#echo $CMD
eval $CMD
exit

BIN
android/tools/jdk-osx/bin/jps Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
android/tools/jdk-osx/bin/jstack Executable file

Binary file not shown.

BIN
android/tools/jdk-osx/bin/jstat Executable file

Binary file not shown.

BIN
android/tools/jdk-osx/bin/jstatd Executable file

Binary file not shown.

View File

@ -0,0 +1,202 @@
#!/bin/sh
#
# Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
# ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
#
# resolve symlinks
#
PRG=$0
while [ -h "$PRG" ]; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '^.*-> \(.*\)$' 2>/dev/null`
if expr "$link" : '^/' 2> /dev/null >/dev/null; then
PRG="$link"
else
PRG="`dirname "$PRG"`/$link"
fi
done
progdir=`dirname "$PRG"`
old=`pwd`
cd "$progdir"/..
basedir=`pwd`
cd "$old"
case "`uname`" in
Darwin*)
# set default userdir and cachedir on Mac OS X
DEFAULT_USERDIR_ROOT="${HOME}/Library/Application Support/VisualVM"
DEFAULT_CACHEDIR_ROOT=${HOME}/Library/Caches/VisualVM
;;
*)
# set default userdir and cachedir on unix systems
DEFAULT_USERDIR_ROOT=${HOME}/.visualvm
DEFAULT_CACHEDIR_ROOT=${HOME}/.cache/visualvm
;;
esac
if [ -f "$progdir"/../lib/visualvm/etc/visualvm.conf ] ; then
visualvm_jdkhome="$basedir"
old=`pwd`
cd "$progdir/../lib/visualvm/"
basedir=`pwd`
cd "$old"
. "$progdir"/../lib/visualvm/etc/visualvm.conf
elif [ -f "$progdir"/../etc/visualvm.conf ] ; then
. "$progdir"/../etc/visualvm.conf
fi
export DEFAULT_USERDIR_ROOT
# #68373: look for userdir, but do not modify "$@"
userdir="${visualvm_default_userdir}"
cachedir="${visualvm_default_cachedir}"
founduserdir=""
for opt in "$@"; do
if [ "${founduserdir}" = "yes" ]; then
userdir="$opt"
break
elif [ "$opt" = "--userdir" ]; then
founduserdir="yes"
fi
done
foundcachedir=""
for opt in "$@"; do
if [ "${foundcachedir}" = "yes" ]; then
cachedir="$opt"
break
elif [ "$opt" = "--cachedir" ]; then
foundcachedir="yes"
fi
done
if [ -f "${userdir}"/etc/visualvm.conf ] ; then
. "${userdir}"/etc/visualvm.conf
fi
if [ ! -f "$basedir"/etc/visualvm.clusters ]; then
echo Cannot read cluster file: "$basedir"/etc/visualvm.clusters 1>&2
exit 1
fi
readClusters() {
grep -v "^#" "$basedir"/etc/visualvm.clusters | grep -v "^$" | grep -v platform | while read X; do
if expr "$X" : "/.*" >/dev/null; then
echo "$X"
else
echo "$basedir/$X"
fi
done
}
absolutize_paths() {
while read path; do
if [ -d "$path" ]; then
(cd "$path" 2>/dev/null && pwd)
else
echo "$path"
fi
done
}
visualvm_clusters=`readClusters | absolutize_paths | tr '\012' ':'`
if [ ! -z "$visualvm_extraclusters" ] ; then
visualvm_clusters ="$visualvm_clusters:$visualvm_extraclusters"
fi
heap_size () {
mem=640
case "`uname`" in
Linux*)
mem=`cat /proc/meminfo | grep MemTotal | tr -d [:space:][:alpha:]:`
mem=`expr $mem / 1024`
;;
SunOS*)
mem=`/usr/sbin/prtconf | grep Memory | /usr/bin/tr -dc '[0-9]'`
;;
Darwin*)
mem=`/usr/sbin/sysctl hw.memsize | tr -d [:alpha:][:space:].:`
mem=`expr $mem / 1048576`
;;
*)
;;
esac
if [ -z "$mem" ] ; then
mem=640
fi
mem=`expr $mem / 5`
if [ $mem -gt 1024 ] ; then
mem=1024
elif [ $mem -lt 96 ] ; then
mem=96
fi
max_heap_size=$mem
return 0
}
if grep -v -- "-J-Xmx" >/dev/null <<EOF ; then
${visualvm_default_options}
EOF
heap_size
visualvm_default_options="-J-Xmx${max_heap_size}m ${visualvm_default_options}"
fi
launchNbexec() {
nbexec=`grep -v "^#" "$basedir"/etc/visualvm.clusters | grep -v "^$" | grep platform | while read X; do
if expr "$X" : "/.*" >/dev/null; then
echo $X/lib/nbexec
elif [ -f "$basedir"/$X/lib/nbexec ]; then
echo "$basedir"/$X/lib/nbexec
fi
done | head -n 1`
if [ \! -n "$nbexec" ] ; then
nbexec="$basedir"/platform/lib/nbexec
fi
sh=sh
# #73162: Ubuntu uses the ancient Bourne shell, which does not implement trap well.
if [ -x /bin/bash ]
then
sh=/bin/bash
fi
if [ "${founduserdir}" = "yes" ]; then
exec $sh "$nbexec" "$@"
else
if [ "${foundcachedir}" = "yes" ]; then
exec $sh "$nbexec" --userdir "${userdir}" "$@"
else
exec $sh "$nbexec" --userdir "${userdir}" --cachedir "${cachedir}" "$@"
fi
fi
}
# in case of macosx, the apple.laf.useScreenMenuBar property should be ideally in the Info.plist file
# but it doesn't get propagated into the executed java VM.
case "`uname`" in
Darwin*)
eval launchNbexec \
--jdkhome '"$visualvm_jdkhome"' \
-J-Dcom.apple.mrj.application.apple.menu.about.name=VisualVM \
-J-Xdock:name=VisualVM \
'"-J-Xdock:icon=$basedir/etc/visualvm.icns"' \
--branding visualvm \
--clusters '"$visualvm_clusters"' \
${visualvm_default_options} \
'"$@"'
;;
*)
eval launchNbexec \
--jdkhome '"$visualvm_jdkhome"' \
--branding visualvm \
--clusters '"$visualvm_clusters"' \
${visualvm_default_options} \
'"$@"'
;;
esac

BIN
android/tools/jdk-osx/bin/keytool Executable file

Binary file not shown.

Binary file not shown.

BIN
android/tools/jdk-osx/bin/orbd Executable file

Binary file not shown.

BIN
android/tools/jdk-osx/bin/pack200 Executable file

Binary file not shown.

Binary file not shown.

BIN
android/tools/jdk-osx/bin/rmic Executable file

Binary file not shown.

BIN
android/tools/jdk-osx/bin/rmid Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
android/tools/jdk-osx/bin/wsgen Executable file

Binary file not shown.

Binary file not shown.

BIN
android/tools/jdk-osx/bin/xjc Executable file

Binary file not shown.