/third_party/backends/tools/ |
H A D | check-usb-chip.c | 44 static int verbose = 0; variable 62 if (verbose > 1) in prepare_interface() 71 if (verbose > 1) in prepare_interface() 80 if (verbose > 1) in prepare_interface() 103 if (verbose > 2) in check_gt6801() 109 if (verbose > 2) in check_gt6801() 116 if (verbose > 2) in check_gt6801() 123 if (verbose > 2) in check_gt6801() 130 if (verbose > 2) in check_gt6801() 139 if (verbose > in check_gt6801() 3461 static int verbose = 0; global() variable [all...] |
H A D | sane-find-scanner.c | 71 static int verbose = 1; variable 114 fprintf (stderr, "\t-v: be more verbose (can be used multiple times)\n"); in usage() 264 if (verbose > 1) in scanner_identify_scsi_scanner() 270 if (verbose > 2) in scanner_identify_scsi_scanner() 275 if (verbose <= 1 && devtype != IN_periph_devtype_scanner in scanner_identify_scsi_scanner() 318 if (verbose > 1) in check_scsi_file() 324 if (verbose > 1) in check_scsi_file() 329 else if (verbose > 1) in check_scsi_file() 334 if (verbose > 1) in check_scsi_file() 362 if (verbose > in check_usb_file() [all...] |
/third_party/ltp/testcases/commands/tar/ |
H A D | tar_tests.sh | 19 local verbose=$1 22 if [ -z "$verbose" ]; then 52 local verbose="$2" 55 EXPECT_PASS tar t${verbose}f "$fname" \> tar.out 75 local verbose="$2" 78 EXPECT_PASS tar x${verbose}f $fname \> tar.out 79 check_listing "${verbose}" $@ 87 local verbose="$2" 93 EXPECT_PASS tar c${verbose}f$comp $fname $TAR_FILES \> tar.out 94 check_listing "$verbose" [all...] |
/third_party/node/deps/openssl/openssl/apps/ |
H A D | srp.c | 64 static void print_entry(CA_DB *db, int indx, int verbose, char *s) in print_entry() argument 66 if (indx >= 0 && verbose) { in print_entry() 76 static void print_index(CA_DB *db, int indexindex, int verbose) in print_index() argument 78 print_entry(db, indexindex, verbose, "g N entry"); in print_index() 81 static void print_user(CA_DB *db, int userindex, int verbose) in print_user() argument 83 if (verbose > 0) { in print_user() 87 print_entry(db, userindex, verbose, "User entry"); in print_user() 88 print_entry(db, get_index(db, pp[DB_srpgN], 'I'), verbose, in print_user() 124 const char *passin, int verbose) in srp_verify_user() 138 if (verbose) in srp_verify_user() 122 srp_verify_user(const char *user, const char *srp_verifier, char *srp_usersalt, const char *g, const char *N, const char *passin, int verbose) srp_verify_user() argument 159 srp_create_user(char *user, char **srp_verifier, char **srp_usersalt, char *g, char *N, char *passout, int verbose) srp_create_user() argument 237 int gNindex = -1, maxgN = -1, ret = 1, errors = 0, verbose = 0, i; srp_main() local [all...] |
/third_party/openssl/apps/ |
H A D | srp.c | 64 static void print_entry(CA_DB *db, int indx, int verbose, char *s) in print_entry() argument 66 if (indx >= 0 && verbose) { in print_entry() 76 static void print_index(CA_DB *db, int indexindex, int verbose) in print_index() argument 78 print_entry(db, indexindex, verbose, "g N entry"); in print_index() 81 static void print_user(CA_DB *db, int userindex, int verbose) in print_user() argument 83 if (verbose > 0) { in print_user() 87 print_entry(db, userindex, verbose, "User entry"); in print_user() 88 print_entry(db, get_index(db, pp[DB_srpgN], 'I'), verbose, in print_user() 124 const char *passin, int verbose) in srp_verify_user() 138 if (verbose) in srp_verify_user() 122 srp_verify_user(const char *user, const char *srp_verifier, char *srp_usersalt, const char *g, const char *N, const char *passin, int verbose) srp_verify_user() argument 159 srp_create_user(char *user, char **srp_verifier, char **srp_usersalt, char *g, char *N, char *passout, int verbose) srp_create_user() argument 237 int gNindex = -1, maxgN = -1, ret = 1, errors = 0, verbose = 0, i; srp_main() local [all...] |
/third_party/jerryscript/tools/ |
H A D | srcgenerator.py | 35 verbose = kwargs.get('verbose', False) 38 if verbose: 39 cmd.append('--verbose') 44 def generate_jerry_core(output_dir, verbose=False): 75 run_commands(cmd_jerry_c_gen, cmd_jerry_h_gen, verbose=verbose) 81 def generate_jerry_port_default(output_dir, verbose=False): 104 run_commands(cmd_port_c_gen, cmd_port_h_gen, verbose=verbose) [all...] |
/third_party/python/Tools/peg_generator/pegen/ |
H A D | __main__.py | 24 verbose = args.verbose 25 verbose_tokenizer = verbose >= 3 26 verbose_parser = verbose == 2 or verbose >= 4 35 args.verbose, 41 if args.verbose: 53 verbose = args.verbose 54 verbose_tokenizer = verbose > [all...] |
/third_party/PyYAML/tests/lib/ |
H A D | test_appliance.py | 33 verbose = False 35 verbose = True 37 if '--verbose' in args: 38 verbose = True 39 args.remove('--verbose') 41 verbose = True 51 return include_functions, include_filenames, verbose 53 def execute(function, filenames, verbose): 55 if verbose: 59 function(verbose [all...] |
H A D | test_errors.py | 4 def test_loader_error(error_filename, verbose=False): 9 if verbose: 16 def test_loader_error_string(error_filename, verbose=False): 21 if verbose: 28 def test_loader_error_single(error_filename, verbose=False): 33 if verbose: 40 def test_emitter_error(error_filename, verbose=False): 46 if verbose: 53 def test_dumper_error(error_filename, verbose=False): 61 if verbose [all...] |
H A D | test_reader.py | 4 def _run_reader(data, verbose): 10 if verbose: 15 def test_stream_error(error_filename, verbose=False): 17 _run_reader(file, verbose) 19 _run_reader(file.read(), verbose) 29 _run_reader(data, verbose) 31 _run_reader(file, verbose)
|
/third_party/python/Lib/distutils/tests/ |
H A D | test_dir_util.py | 41 mkpath(self.target, verbose=0) 44 remove_tree(self.root_target, verbose=0) 46 mkpath(self.target, verbose=1) 52 remove_tree(self.root_target, verbose=1) 75 create_tree(self.root_target, ['one', 'two', 'three'], verbose=0) 77 remove_tree(self.root_target, verbose=0) 80 create_tree(self.root_target, ['one', 'two', 'three'], verbose=1) 83 remove_tree(self.root_target, verbose=0) 87 mkpath(self.target, verbose=0) 89 copy_tree(self.target, self.target2, verbose [all...] |
/third_party/icu/icu4c/source/tools/genren/ |
H A D | genren.pl | 47 /^-v/ && ($VERBOSE++, next); # verbose 152 &verbose(" $_"); 165 &verbose( "type: \"$type\" "); 168 &verbose( "Import: $_ \"$type\"\n"); 169 &verbose( "C++ method: $_\n"); 182 &verbose ( "(Chopping scope $CppName[0] )"); 188 &verbose ("Skipping C++ function: $_\n"); 190 &verbose ("Skipping C++ destructor: $_\n"); 192 &verbose( "Skipping C++ class: '$CppName[0]': $_ \n"); 197 &verbose ( " 254 sub verbose { global() subroutine [all...] |
/third_party/python/Lib/distutils/ |
H A D | dir_util.py | 17 def mkpath(name, mode=0o777, verbose=1, dry_run=0): 24 If 'verbose' is true, print a one-line summary of each mkdir to stdout. 65 if verbose >= 1: 80 def create_tree(base_dir, files, mode=0o777, verbose=1, dry_run=0): 87 will be created if it doesn't already exist. 'mode', 'verbose' and 97 mkpath(dir, mode, verbose=verbose, dry_run=dry_run) 100 preserve_symlinks=0, update=0, verbose=1, dry_run=0): 118 'update' and 'verbose' are the same as for 'copy_file'. 135 mkpath(dst, verbose [all...] |
/third_party/skia/third_party/externals/icu/source/tools/genren/ |
H A D | genren.pl | 47 /^-v/ && ($VERBOSE++, next); # verbose 152 &verbose(" $_"); 165 &verbose( "type: \"$type\" "); 168 &verbose( "Import: $_ \"$type\"\n"); 169 &verbose( "C++ method: $_\n"); 182 &verbose ( "(Chopping scope $CppName[0] )"); 188 &verbose ("Skipping C++ function: $_\n"); 190 &verbose ("Skipping C++ destructor: $_\n"); 192 &verbose( "Skipping C++ class: '$CppName[0]': $_ \n"); 197 &verbose ( " 254 sub verbose { global() subroutine [all...] |
/third_party/curl/tests/ |
H A D | servers.pm | 147 our $debugprotocol; # nonzero for verbose server logs 361 logmsg "startnew: $cmd\n" if ($verbose); 390 logmsg "startnew: $pidfile faked with pid=$child\n" if($verbose); 398 logmsg "startnew: child process has failed to start\n" if($verbose); 415 if($verbose); 456 killsockfilters("$LOGDIR/$PIDDIR", $proto, $ipvnum, $idnum, $verbose); 497 killpid($verbose, $pidlist); 514 killpid($verbose, $pid); 559 $flags .= "--verbose "; 571 logmsg "RUN: $cmd\n" if($verbose); [all...] |
/third_party/pcre2/pcre2/src/sljit/ |
H A D | sljitLir.c | 903 SLJIT_API_FUNC_ATTRIBUTE void sljit_compiler_verbose(struct sljit_compiler *compiler, FILE* verbose) in sljit_compiler_verbose() argument 905 compiler->verbose = verbose; in sljit_compiler_verbose() 925 fprintf(compiler->verbose, "r%d", r - SLJIT_R0); in sljit_verbose_reg() 927 fprintf(compiler->verbose, "s%d", SLJIT_NUMBER_OF_REGISTERS - r); in sljit_verbose_reg() 929 fprintf(compiler->verbose, "sp"); in sljit_verbose_reg() 935 fprintf(compiler->verbose, "fr%d", r - SLJIT_FR0); in sljit_verbose_freg() 937 fprintf(compiler->verbose, "fs%d", SLJIT_NUMBER_OF_FLOAT_REGISTERS - r); in sljit_verbose_freg() 943 fprintf(compiler->verbose, "#%" SLJIT_PRINT_D "d", (i)); in sljit_verbose_param() 946 fputc('[', compiler->verbose); in sljit_verbose_param() 2689 sljit_compiler_verbose(struct sljit_compiler *compiler, FILE* verbose) sljit_compiler_verbose() argument [all...] |
/third_party/mbedtls/programs/test/ |
H A D | selftest.c | 55 static int calloc_self_test(int verbose) in calloc_self_test() argument 68 if (verbose) { in calloc_self_test() 72 if (verbose) { in calloc_self_test() 77 if (verbose) { in calloc_self_test() 82 if (verbose) { in calloc_self_test() 93 if (verbose) { in calloc_self_test() 97 if (verbose) { in calloc_self_test() 102 if (verbose) { in calloc_self_test() 107 if (verbose) { in calloc_self_test() 113 if (verbose) { in calloc_self_test() 244 mbedtls_entropy_self_test_wrapper(int verbose) mbedtls_entropy_self_test_wrapper() argument 255 mbedtls_memory_buffer_alloc_free_and_self_test(int verbose) mbedtls_memory_buffer_alloc_free_and_self_test() argument [all...] |
/third_party/node/deps/v8/tools/ |
H A D | adb-d8.py | 29 def CreateFileHandlerClass(root_dirs, verbose): 46 if verbose: 55 if verbose: 63 def TransferD8ToDevice(adb, build_dir, device_d8_dir, verbose): 88 if verbose: 94 ], stdout=sys.stdout if verbose else open(os.devnull, 'wb')) 97 def AdbForwardDeviceToLocal(adb, device_port, server_port, verbose): 98 if verbose: 109 def AdbRunD8(adb, device_d8_dir, device_port, d8_args, verbose): 124 if verbose [all...] |
/third_party/node/deps/npm/node_modules/node-gyp/lib/ |
H A D | install.js | 26 log.verbose('install', 'input version string %j', release.version) 39 log.verbose('detected "pre" node version', release.version) 43 log.verbose('--nodedir flag was passed; skipping install', gyp.opts.nodedir) 48 log.verbose('install', 'installing version: %s', release.versionDir) 56 log.verbose('install', '--ensure was passed, so won\'t reinstall if already installed') 61 log.verbose('install', 'version not already installed, continuing with install', release.version) 72 log.verbose('install', 'version is already installed, need to check "installVersion"') 83 log.verbose('got "installVersion"', installVersion) 84 log.verbose('needs "installVersion"', gyp.package.installVersion) 86 log.verbose('instal [all...] |
/third_party/mbedtls/tests/scripts/ |
H A D | run-test-suites.pl | 24 run-test-suites.pl [[-v|--verbose] [VERBOSITY]] [--skip=SUITE[...]] 28 -v|--verbose Print detailed failure information. 29 -v 2|--verbose=2 Print detailed failure information and summary messages. 30 -v 3|--verbose=3 Print detailed information about every test case. 46 my $verbose = 0; 50 'verbose|v:1' => \$verbose, 100 if( $verbose ) { 111 if( $verbose > 2 ) { 119 if( $verbose ) { [all...] |
/third_party/icu/icu4c/source/python/icutools/databuilder/renderers/ |
H A D | common_exec.py | 18 def run(build_dirs, requests, common_vars, verbose=True, **kwargs): 22 status = run_helper(request, common_vars, verbose=verbose, **kwargs) 26 if verbose: 43 def run_helper(request, common_vars, platform, tool_dir, verbose, tool_cfg=None, **kwargs): 49 if verbose: 63 if verbose: 105 returncode = run_shell_command(command_line, platform, verbose) 118 returncode = run_shell_command(command_line, platform, verbose) 122 def run_shell_command(command_line, platform, verbose) [all...] |
/third_party/skia/third_party/externals/icu/source/python/icutools/databuilder/renderers/ |
H A D | common_exec.py | 18 def run(build_dirs, requests, common_vars, verbose=True, **kwargs): 22 status = run_helper(request, common_vars, verbose=verbose, **kwargs) 26 if verbose: 43 def run_helper(request, common_vars, platform, tool_dir, verbose, tool_cfg=None, **kwargs): 49 if verbose: 63 if verbose: 105 returncode = run_shell_command(command_line, platform, verbose) 118 returncode = run_shell_command(command_line, platform, verbose) 122 def run_shell_command(command_line, platform, verbose) [all...] |
/third_party/libunwind/libunwind/tests/ |
H A D | test-setjmp.c | 36 int verbose; variable 62 if (verbose) in test_setjmp() 73 if (verbose) in test_setjmp() 106 if (verbose) in test_sigsetjmp() 117 if (verbose) in test_sigsetjmp() 132 if (verbose) in sighandler() 136 if (verbose) in sighandler() 150 verbose = 1; in main() 180 else if (verbose) in main() 202 else if (verbose) in main() [all...] |
/third_party/googletest/googlemock/test/ |
H A D | gmock_test.cc | 50 const ::std::string old_verbose = GMOCK_FLAG_GET(verbose); in TestInitGoogleMock() 60 EXPECT_EQ(expected_gmock_verbose, GMOCK_FLAG_GET(verbose)); in TestInitGoogleMock() 61 GMOCK_FLAG_SET(verbose, old_verbose); // Restores the gmock_verbose flag. in TestInitGoogleMock() 69 TestInitGoogleMock(argv, new_argv, GMOCK_FLAG_GET(verbose)); in TEST() 77 TestInitGoogleMock(argv, new_argv, GMOCK_FLAG_GET(verbose)); in TEST() 106 TestInitGoogleMock(argv, new_argv, GMOCK_FLAG_GET(verbose)); in TEST() 123 TestInitGoogleMock(argv, new_argv, GMOCK_FLAG_GET(verbose)); in TEST() 131 TestInitGoogleMock(argv, new_argv, GMOCK_FLAG_GET(verbose)); in TEST() 160 TestInitGoogleMock(argv, new_argv, GMOCK_FLAG_GET(verbose)); in TEST() 177 GMOCK_FLAG_GET(catch_leaked_mocks) && GMOCK_FLAG_GET(verbose) in TEST() [all...] |
/third_party/python/Tools/peg_generator/scripts/ |
H A D | test_parse_directory.py | 39 "-v", "--verbose", action="store_true", help="Display detailed errors for failures" 46 verbose: bool, 73 if error and verbose: 105 def parse_directory(directory: str, verbose: bool, excluded_files: List[str], short: bool) -> int: 123 report_status(succeeded=True, file=file, verbose=verbose, short=short) 125 report_status(succeeded=False, file=file, verbose=verbose, error=error, short=short) 143 verbose = args.verbose [all...] |