/external/libsepol/include/sepol/ |
module.h | 59 int num_modules, int verbose); 63 int verbose); 76 size_t len, int verbose); 80 sepol_policydb_t * out, int verbose, int check);
|
/external/libsepol/include/sepol/policydb/ |
link.h | 18 int verbose);
|
/external/openssh/regress/ |
reexec.sh | 25 verbose "$tid: proto $p" 36 verbose "test config passing" 49 verbose "test reexec fallback" 59 verbose "test reexec fallback without privsep"
|
sftp-badcmds.sh | 15 verbose "$tid: get nonexistent" 21 verbose "$tid: glob get to nonexistent directory" 29 verbose "$tid: put nonexistent" 35 verbose "$tid: glob put to nonexistent directory" 43 verbose "$tid: rename nonexistent" 51 verbose "$tid: rename target exists (directory)" 61 verbose "$tid: glob put files to local file"
|
try-ciphers.sh | 17 verbose "test $tid: proto 2 cipher $c mac $m" 28 verbose "test $tid: proto 1 cipher $c" 44 verbose "test $tid: proto 2 cipher $c mac $m"
|
cert-userkey.sh | 21 verbose "$tid: sign user ${ktype} cert" 55 verbose "$tid: ${_prefix} missing authorized_principals" 64 verbose "$tid: ${_prefix} empty authorized_principals" 73 verbose "$tid: ${_prefix} wrong authorized_principals" 82 verbose "$tid: ${_prefix} correct authorized_principals" 91 verbose "$tid: ${_prefix} authorized_principals bad key opt" 100 verbose "$tid: ${_prefix} authorized_principals command=false" 111 verbose "$tid: ${_prefix} authorized_principals command=true" 128 verbose "$tid: ${_prefix} wrong principals key option" 140 verbose "$tid: ${_prefix} correct principals key option [all...] |
/external/v8/src/ |
v8utils.cc | 116 bool verbose, 119 if (verbose) { 146 bool verbose) { 148 char* result = ReadCharsFromFile(file, size, extra_space, verbose, filename); 154 byte* ReadBytes(const char* filename, int* size, bool verbose) { 155 char* chars = ReadCharsFromFile(filename, size, 0, verbose); 175 bool verbose) { 177 char* result = ReadCharsFromFile(filename, &size, 1, verbose); 184 bool verbose) { 186 char* result = ReadCharsFromFile(file, &size, 1, verbose, ""); [all...] |
/external/zlib/ |
update_zlib.sh | 12 new_version=$(wget -O - --no-verbose -q http://zlib.net/ | \ 21 wget -O /tmp/$tgz_file --no-verbose "http://zlib.net/$tgz_file"
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_crypt.py | 10 if test_support.verbose:
|
xmltests.py | 7 test.test_support.verbose = 0
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_crypt.py | 10 if test_support.verbose:
|
xmltests.py | 7 test.test_support.verbose = 0
|
/build/tools/zipalign/ |
ZipAlign.cpp | 41 fprintf(stderr, " -v: verbose output\n"); 143 static int verify(const char* fileName, int alignment, bool verbose) 148 if (verbose) 162 if (verbose) { 169 if (verbose) { 176 if (verbose) { 184 if (verbose) 198 bool verbose = false; local 223 verbose = true; 252 result = verify(argv[1], alignment, verbose); [all...] |
/external/chromium_org/tools/python/google/ |
process_utils.py | 40 def RunCommandFull(command, verbose=True, collect_output=False, 52 verbose: if True, combines all output (stdout and stderr) into stdout. 67 if verbose: 82 if verbose: 111 if not verbose: 115 def RunCommand(command, verbose=True): 125 verbose: if True, combines all output (stdout and stderr) into stdout. 134 return RunCommandFull(command, verbose)[0] 136 def RunCommandsInParallel(commands, verbose=True, collect_output=False, 145 verbose: if True, combines stdout and stderr into stdout [all...] |
/external/chromium_org/tools/symsrc/ |
source_index.py | 139 def UpdatePDB(pdb_filename, verbose=False): 166 if verbose: 171 if verbose: 183 if verbose: 194 if verbose: 204 if verbose: 217 verbose = False 219 verbose = (sys.argv[2] == '-v') 221 UpdatePDB(sys.argv[1], verbose=verbose) [all...] |
/external/proguard/src/proguard/shrink/ |
ShortestUsagePrinter.java | 43 private final boolean verbose; field in class:ShortestUsagePrinter 62 * @param verbose specifies whether the output should be verbose. 65 boolean verbose) 67 this(shortestUsageMarker, verbose, System.out); 74 * @param verbose specifies whether the output should be verbose. 78 boolean verbose, 82 this.verbose = verbose; [all...] |
/external/blktrace/btt/ |
bno_plot.py | 25 [ -v | --verbose ] 43 verbose = 0 variable 55 global verbose 59 l_opts = [ 'help', 'keys-below', 'verbose' ] 72 elif o in ('-v', '--verbose'): 73 verbose += 1 86 if verbose: 119 if verbose: print 'Executing %s' % cmd
|
/external/proguard/src/proguard/gui/ |
ReTraceRunnable.java | 40 private final boolean verbose; field in class:ReTraceRunnable 48 * @param verbose specifies whether the de-obfuscated stack trace 49 * should be verbose. 53 boolean verbose, 58 this.verbose = verbose; 91 verbose,
|
/external/icu4c/tools/genren/ |
genren.pl | 45 /^-v/ && ($VERBOSE++, next); # verbose 147 &verbose(" $_"); 160 &verbose( "type: \"$type\" "); 163 &verbose( "Import: $_ \"$type\"\n"); 164 &verbose( "C++ method: $_\n"); 177 &verbose ( "(Chopping scope $CppName[0] )"); 183 &verbose ("Skipping C++ function: $_\n"); 185 &verbose ("Skipping C++ destructor: $_\n"); 187 &verbose( "Skipping C++ class: '$CppName[0]': $_ \n") 242 sub verbose { subroutine [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
dir_util.py | 19 def mkpath(name, mode=0777, verbose=1, dry_run=0): 26 If 'verbose' is true, print a one-line summary of each mkdir to stdout. 67 if verbose >= 1: 82 def create_tree(base_dir, files, mode=0777, verbose=1, dry_run=0): 89 will be created if it doesn't already exist. 'mode', 'verbose' and 101 mkpath(dir, mode, verbose=verbose, dry_run=dry_run) 104 preserve_symlinks=0, update=0, verbose=1, dry_run=0): 122 'update' and 'verbose' are the same as for 'copy_file'. 139 mkpath(dst, verbose=verbose [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
dir_util.py | 19 def mkpath(name, mode=0777, verbose=1, dry_run=0): 26 If 'verbose' is true, print a one-line summary of each mkdir to stdout. 67 if verbose >= 1: 82 def create_tree(base_dir, files, mode=0777, verbose=1, dry_run=0): 89 will be created if it doesn't already exist. 'mode', 'verbose' and 101 mkpath(dir, mode, verbose=verbose, dry_run=dry_run) 104 preserve_symlinks=0, update=0, verbose=1, dry_run=0): 122 'update' and 'verbose' are the same as for 'copy_file'. 139 mkpath(dst, verbose=verbose [all...] |
/ndk/sources/host-tools/sed-4.2.1/build-aux/ |
texi2dvi | 56 -V, --verbose report on what is done 92 verbose=false # echo for verbose mode 104 # Pacify verbose cds. 168 -V | --verb*) verbose=echo;; 287 # 1 standard output (--verbose messages) 308 $verbose "Processing $command_line_filename ..." 460 $verbose "texinfo.tex preloaded as \`$txiformat', version is \`$txiversion' ..." 479 $verbose "Macro-expanding $command_line_filename to $filename_src ..." 490 $verbose "Reverting to $command_line_filename ... [all...] |
/system/extras/libc_test/ |
main.cpp | 127 bool verbose) { 146 if (verbose) { 164 bool verbose) { 196 if (verbose) { 217 if (verbose) { 231 bool verbose) { 265 if (verbose) { 273 if (verbose) { 285 if (verbose) { 293 if (verbose) { [all...] |
/external/valgrind/main/nightly/bin/ |
nightly | 31 # Header and command in verbose logfile 32 printf " $str ... " >> $logfile.verbose 33 echo "$*" >> $logfile.verbose 36 ("${ABT_EVAL}" "$*") >> $logfile.verbose 2>&1 95 rm -rf diffs diffs.txt diff.short final new.short new.verbose old.short old.verbose 127 # Remove old short and verbose log files, and start the new ones 128 for ext in short verbose ; do 161 egrep -q '^== [0-9]+ tests' $logfile.verbose && ( 165 awk '/^== [0-9]+ tests/, /^$/ { print }' $logfile.verbose >> $logfile.shor [all...] |
/external/chromium_org/third_party/icu/source/tools/genren/ |
genren.pl | 45 /^-v/ && ($VERBOSE++, next); # verbose 152 &verbose( "type: \"$type\" "); 155 &verbose( "Import: $_ \"$type\"\n"); 156 &verbose( "C++ method: $_\n"); 168 &verbose ("Skipping C++ function: $_\n"); 170 &verbose ("Skipping C++ destructor: $_\n"); 172 &verbose( " Class: '$CppName[0]': $_ \n"); 177 &verbose ( "$ARGV[0]: got global C++ function $cfn with '$_'\n" ); 183 &verbose( "$ARGV[0]: Skipped initializer $_\n" ) 236 sub verbose { subroutine [all...] |