/cts/tools/dx-tests/etc/ |
starttests | 17 # Set up prog to be the path of this script, including following symlinks, 20 prog="$0" 21 while [ -h "${prog}" ]; do 22 newProg=`/bin/ls -ld "${prog}"` 25 prog="${newProg}" 27 progdir=`dirname "${prog}"` 28 prog="${progdir}/${newProg}" 32 progdir=`dirname "${prog}"` 35 prog="${progdir}"/`basename "${prog}"` [all...] |
/cts/tools/test-progress/etc/ |
test-progress | 17 # Set up prog to be the path of this script, including following symlinks, 19 prog="$0" 20 while [ -h "${prog}" ]; do 21 newProg=`/bin/ls -ld "${prog}"` 24 prog="${newProg}" 26 progdir=`dirname "${prog}"` 27 prog="${progdir}/${newProg}" 31 progdir=`dirname "${prog}"` 34 prog="${progdir}"/`basename "${prog}"` [all...] |
/external/webkit/WebKitTools/Scripts/webkitpy/ |
multicommandtool.py | 177 epilog = "All %prog commands:\n" 180 epilog = "Common %prog commands:\n" 186 epilog += "See '%prog help --all-commands' to list all commands.\n" 187 epilog += "See '%prog help COMMAND' for more information on a specific command.\n" 188 return epilog.replace("%prog", self.tool.name()) # Use of %prog here mimics OptionParser.expand_prog_name(). 212 self._name = name or OptionParser(prog=name).get_prog_name() # OptionParser has nice logic for fetching the name. 240 usage = "Usage: %prog [options] COMMAND [ARGS]" 241 return HelpPrintingOptionParser(epilog_method=self.help_command._help_epilog, prog=self.name(), usage=usage)
|
/dalvik/libcore/luni-kernel/src/main/java/java/lang/ |
Runtime.java | 203 * equivalent to calling {@code exec(prog, null, null)}. 205 * @param prog 217 public Process exec(String prog) throws java.io.IOException { 218 return exec(prog, null, null); 224 * method is equivalent to calling {@code exec(prog, envp, null)}. 226 * @param prog 241 public Process exec(String prog, String[] envp) throws java.io.IOException { 242 return exec(prog, envp, null); 250 * @param prog 268 public Process exec(String prog, String[] envp, File directory) throws java.io.IOException [all...] |
/bionic/libdl/ |
dltest.c | 112 char *libname, *symname, *prog = *argv; local 118 print_help(prog);
|
/dalvik/dx/etc/ |
dx.bat | 21 REM Set up prog to be the path of this script, including following symlinks, 23 set prog=%~f0 variable
|
/external/openssl/apps/ |
prime.c | 56 #undef PROG 57 #define PROG prime_main
|
crl2p7.c | 76 #undef PROG 77 #define PROG crl2pkcs7_main 92 char *infile,*outfile,*prog,*certfile; local 112 prog=argv[0]; 160 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
|
dh.c | 74 #undef PROG 75 #define PROG dh_main 98 char *infile,*outfile,*prog; local 120 prog=argv[0]; 173 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
|
dsa.c | 74 #undef PROG 75 #define PROG dsa_main 107 char *infile,*outfile,*prog; local 132 prog=argv[0]; 197 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
|
ec.c | 70 #undef PROG 71 #define PROG ec_main 99 char *infile, *outfile, *prog, *engine; local 122 prog = argv[0]; 213 BIO_printf(bio_err, "%s [options] <infile >outfile\n", prog);
|
pkcs7.c | 71 #undef PROG 72 #define PROG pkcs7_main 92 char *infile,*outfile,*prog; local 113 prog=argv[0]; 164 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
|
spkac.c | 73 #undef PROG 74 #define PROG spkac_main 88 char *infile = NULL,*outfile = NULL,*prog; local 107 prog=argv[0]; 168 BIO_printf(bio_err,"%s [options]\n",prog);
|
/external/quake/quake/src/QW/client/ |
cvar.h | 24 cvar_t variables are used to hold scalar or string variables that can be changed or displayed at the console or prog code as well as accessed directly 44 Interpreted prog code can access cvars with the cvar(name) or
|
/external/quake/quake/src/WinQuake/ |
cvar.h | 24 cvar_t variables are used to hold scalar or string variables that can be changed or displayed at the console or prog code as well as accessed directly 44 Interpreted prog code can access cvars with the cvar(name) or
|
/external/netcat/data/ |
pmap-dump.d | 20 000 # 0x00 # . # pmap call body: prog=PMAP, 100000
|
/external/opencore/engines/author/test/build/android/ |
local.mk | 32 include $(MK)/prog.mk
|
/external/opencore/engines/player/test/build/android/ |
local.mk | 49 include $(MK)/prog.mk
|
/external/bison/m4/ |
lib-ld_gl.m4 | 46 # Check if gcc -print-prog-name=ld gives a path. 51 ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; 53 ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
|
/prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/man/man1/ |
i686-unknown-linux-gnu-gdbserver.1 | 11 .RB prog 72 Ie: `gdb TARGET-PROG', or `gdb --baud BAUD TARGET-PROG'. After that, the only
|
/external/e2fsprogs/misc/ |
fsck.c | 232 if (i->prog) 233 free(i->prog); 402 static char prog[256]; local 410 sprintf(prog, tpl, s, type); 411 if (stat(prog, &st) == 0) break; 414 return(s ? prog : NULL); 437 char *s, *argv[80], prog[80]; local 447 sprintf(prog, "fsck.%s", type); 448 argv[0] = string_copy(prog); 467 s = find_fsck(prog); [all...] |
/external/zlib/ |
minigzip.c | 72 char *prog; variable 90 fprintf(stderr, "%s: %s\n", prog, msg); 211 fprintf(stderr, "%s: can't gzopen %s\n", prog, outfile); 245 fprintf(stderr, "%s: can't gzopen %s\n", prog, infile); 279 prog = argv[0];
|
/hardware/msm7k/librpc/ |
clnt.c | 55 extern void* svc_find(void *xprt, rpcprog_t prog, rpcvers_t vers); 102 rpcprog_t prog = local 107 svc = svc_find(the_xprt, prog, vers); 116 (uint32_t)prog, (int)vers); 130 (uint32_t)prog, (int)vers); 138 (uint32_t)prog, (int)vers); 141 (*svc_xdr)->x_prog = prog; 165 (uint32_t)prog, (int)vers); 534 uint32 prog, 549 (uint32_t)prog, (int)vers) [all...] |
/cts/tools/test-progress-new/etc/ |
test-progress | 17 # Set up prog to be the path of this script, including following symlinks, 19 prog="$0" 20 while [ -h "${prog}" ]; do 21 newProg=`/bin/ls -ld "${prog}"` 24 prog="${newProg}" 26 progdir=`dirname "${prog}"` 27 prog="${progdir}/${newProg}" 31 progdir=`dirname "${prog}"` 34 prog="${progdir}"/`basename "${prog}"` [all...] |
/ndk/build/core/ |
ndk-common.sh | 491 local PROG 492 PROG=`which $2 2>/dev/null` 493 if [ -n "$PROG" ] ; then 494 if pattern_match '^no ' "$PROG"; then 495 PROG= 498 eval $1="$PROG"
|