Home
last modified time | relevance | path

Searched full:verbose (Results 1 – 25 of 4992) sorted by relevance

12345678910>>...200

/external/libcap/contrib/
Dpcaps4server31 VERBOSE="-v"
32 #VERBOSE=""
85 chown $VERBOSE -R apache:apache /var/run/apache/
86 chown $VERBOSE -R apache:apache /etc/apache/
87 chown $VERBOSE -R apache:apache /var/log/apache/
88 chown $VERBOSE apache:apache /usr/sbin/httpd
89 chmod $VERBOSE u+s /usr/sbin/httpd
95 chown $VERBOSE -R root:root /var/run/apache/
96 chown $VERBOSE -R root:root /etc/apache/
97 chown $VERBOSE -R root:root /var/log/apache/
[all …]
/external/rust/crates/log/.github/workflows/
Dmain.yml39 - run: cargo test --verbose
40 - run: cargo test --verbose --no-default-features
41 - run: cargo test --verbose --all-features
42 - run: cargo test --verbose --features serde
43 - run: cargo test --verbose --features std
44 - run: cargo test --verbose --features kv_unstable
45 - run: cargo test --verbose --features kv_unstable_sval
46 - run: cargo test --verbose --features kv_unstable_serde
47 …- run: cargo test --verbose --features "kv_unstable kv_unstable_std kv_unstable_sval kv_unstable_s…
48 - run: cargo run --verbose --manifest-path test_max_level_features/Cargo.toml
[all …]
/external/python/cpython2/Tools/versioncheck/
Dpyversioncheck.py7 # Verbose options
17 def versioncheck(package, url, version, verbose=0): argument
18 ok, newversion, fp = checkonly(package, url, version, verbose)
19 if verbose > VERBOSE_NORMAL:
28 if verbose > VERBOSE_SILENT:
35 def checkonly(package, url, version, verbose=0): argument
36 if verbose >= VERBOSE_EACHFILE:
39 ok, newversion, fp = _check1version(package, url, version, verbose)
42 ok, newversion, fp = _check1version(package, u, version, verbose)
43 if ok >= 0 and verbose < VERBOSE_CHECKALL:
[all …]
/external/libcups/systemv/
Dcupstestppd.c91 static int check_constraints(ppd_file_t *ppd, int errors, int verbose,
93 static int check_case(ppd_file_t *ppd, int errors, int verbose);
94 static int check_defaults(ppd_file_t *ppd, int errors, int verbose,
96 static int check_duplex(ppd_file_t *ppd, int errors, int verbose,
99 int verbose, int warn);
101 int verbose, int warn);
102 static int check_sizes(ppd_file_t *ppd, int errors, int verbose, int warn);
103 static int check_translations(ppd_file_t *ppd, int errors, int verbose,
106 static int test_raster(ppd_file_t *ppd, int verbose);
109 int verbose, int warn);
[all …]
/external/sg3_utils/lib/
Dsg_cmds_basic.c76 sg_cmds_open_device(const char * device_name, bool read_only, int verbose) in sg_cmds_open_device() argument
78 return scsi_pt_open_device(device_name, read_only, verbose); in sg_cmds_open_device()
84 sg_cmds_open_flags(const char * device_name, int flags, int verbose) in sg_cmds_open_flags() argument
86 return scsi_pt_open_flags(device_name, flags, verbose); in sg_cmds_open_flags()
111 int slen, bool noisy, int verbose, int * o_sense_cat) in sg_cmds_process_helper() argument
148 if (verbose || n) { in sg_cmds_process_helper()
153 sg_get_sense_str(NULL, sbp, slen, (verbose > 1), in sg_cmds_process_helper()
158 if ((verbose > 2) || check_data_in || (act_din_x > 0)) in sg_cmds_process_helper()
161 if (verbose) in sg_cmds_process_helper()
169 if ((verbose > 1) && (act_dout_x > 0)) in sg_cmds_process_helper()
[all …]
Dsg_cmds_basic2.c90 int verbose) in sg_ll_sync_cache_10() argument
111 if (verbose) { in sg_ll_sync_cache_10()
122 res = do_scsi_pt(ptvp, sg_fd, DEF_PT_TIMEOUT, verbose); in sg_ll_sync_cache_10()
123 ret = sg_cmds_process_resp(ptvp, cdb_s, res, noisy, verbose, &sense_cat); in sg_ll_sync_cache_10()
150 int mx_resp_len, bool noisy, int verbose) in sg_ll_readcap_16() argument
166 if (verbose) { in sg_ll_readcap_16()
178 res = do_scsi_pt(ptvp, sg_fd, DEF_PT_TIMEOUT, verbose); in sg_ll_readcap_16()
179 ret = sg_cmds_process_resp(ptvp, cdb_s, res, noisy, verbose, &sense_cat); in sg_ll_readcap_16()
206 int mx_resp_len, bool noisy, int verbose) in sg_ll_readcap_10() argument
219 if (verbose) { in sg_ll_readcap_10()
[all …]
/external/selinux/libsemanage/src/
Dpywrap-test.py30 -v for verbose output\
72 self.verbose = False
155 if self.verbose:
164 if self.verbose:
181 if self.verbose:
201 if self.verbose:
231 if self.verbose:
261 if self.verbose:
289 if self.verbose:
316 if self.verbose:
[all …]
/external/llvm/test/tools/llvm-objdump/X86/
Dmacho-universal-x86_64.i386.test8 RUN: -non-verbose | FileCheck %s -check-prefix NON-VERBOSE
50 NON-VERBOSE: Fat headers
51 NON-VERBOSE: fat_magic 0xcafebabe
52 NON-VERBOSE: nfat_arch 2
53 NON-VERBOSE: architecture 0
54 NON-VERBOSE: cputype 16777223
55 NON-VERBOSE: cpusubtype 3
56 NON-VERBOSE: capabilities 0x80
57 NON-VERBOSE: offset 4096
58 NON-VERBOSE: size 4360
[all …]
/external/ltp/testcases/commands/tar/
Dtar_tests.sh19 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" $TAR_FILES
[all …]
/external/sg3_utils/examples/
Dsg_persist_tst.sh14 verbose=""
24 echo " -v, --verbose more verbose output"
25 echo " -vv even more verbose output"
26 echo " -vvv even more verbose output"
44 vvv) verbose="-vvv" ;;
45 vv) verbose="-vv" ;;
46 v|-verbose) verbose="-v" ;;
60 sg_persist -c ${verbose} "$1"
84 sg_persist --no-inquiry --read-keys ${verbose} "$1"
89 sg_persist -n --out --register --param-sark=${kk} ${verbose} "$1"
[all …]
/external/python/cpython2/Mac/scripts/
Dgenallsuites.py10 verbose=sys.stdout variable
27 edit_modnames=[], verbose=verbose)
32 verbose=verbose)
36 edit_modnames=[], verbose=verbose)
40 edit_modnames=[], verbose=verbose)
44 edit_modnames=[], verbose=verbose)
48 edit_modnames=[('WorldWideWeb_suite_2c__as_d', 'WorldWideWeb_suite')], verbose=verbose)
52 edit_modnames=[], verbose=verbose)
/external/python/pyyaml/tests/lib/
Dtest_appliance.py33 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): argument
55 if verbose:
59 function(verbose=verbose, *filenames)
[all …]
/external/pcre/src/sljit/
DsljitLir.c903 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()
949 fprintf(compiler->verbose, " + "); in sljit_verbose_param()
[all …]
/external/python/cpython2/Lib/distutils/tests/
Dtest_dir_util.py39 mkpath(self.target, verbose=0)
42 remove_tree(self.root_target, verbose=0)
44 mkpath(self.target, verbose=1)
50 remove_tree(self.root_target, verbose=1)
69 create_tree(self.root_target, ['one', 'two', 'three'], verbose=0)
71 remove_tree(self.root_target, verbose=0)
74 create_tree(self.root_target, ['one', 'two', 'three'], verbose=1)
77 remove_tree(self.root_target, verbose=0)
82 mkpath(self.target, verbose=0)
84 copy_tree(self.target, self.target2, verbose=0)
[all …]
/external/compiler-rt/test/BlocksRuntime/
Drecursive-test.c14 int verbose = 0; variable
18 if (argc > 1) verbose = 1; in main()
22 if (verbose) printf("recursive_local_block is a local recursive block\n"); in main()
24 if (verbose) printf("%d\n", i); in main()
30 …if (verbose) printf("recursive_local_block's address is %p, running it:\n", (void*)recursive_local… in main()
33 …if (verbose) printf("Creating other_local_block: a local block that calls recursive_local_block\n"… in main()
36 if (verbose) printf("other_local_block running\n"); in main()
40 if (verbose) printf("other_local_block's address is %p, running it:\n", (void*)other_local_block); in main()
45 …if (verbose) printf("Creating other_copied_block: a Block_copy of a block that will call recursive… in main()
48 if (verbose) printf("other_copied_block running\n"); in main()
[all …]
/external/sg3_utils/src/
Dsg_ident.c50 {"verbose", no_argument, 0, 'v'},
57 bool raw, int verbose) in decode_ii() argument
72 if (verbose && (n < 1)) in decode_ii()
82 if (verbose) in decode_ii()
98 " [--verbose] [--version] DEVICE\n" in usage()
111 " --verbose|-v increase verbosity of output\n" in usage()
133 int verbose = 0; in main() local
171 ++verbose; in main()
198 pr2serr("but override: '-vV' given, zero verbose and continue\n"); in main()
201 verbose = 0; in main()
[all …]
/external/iptables/iptables/
Dnft-cmd.c20 int rulenum, bool verbose) in nft_cmd_new() argument
34 cmd->verbose = verbose; in nft_cmd_new()
94 void *ref, bool verbose) in nft_cmd_rule_append() argument
99 verbose); in nft_cmd_rule_append()
110 int rulenum, bool verbose) in nft_cmd_rule_insert() argument
115 rulenum, verbose); in nft_cmd_rule_insert()
131 bool verbose) in nft_cmd_rule_delete() argument
136 -1, verbose); in nft_cmd_rule_delete()
146 const char *table, int rulenum, bool verbose) in nft_cmd_rule_delete_num() argument
151 rulenum, verbose); in nft_cmd_rule_delete_num()
[all …]
/external/python/cpython3/Lib/distutils/tests/
Dtest_dir_util.py41 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)
71 create_tree(self.root_target, ['one', 'two', 'three'], verbose=0)
73 remove_tree(self.root_target, verbose=0)
76 create_tree(self.root_target, ['one', 'two', 'three'], verbose=1)
79 remove_tree(self.root_target, verbose=0)
83 mkpath(self.target, verbose=0)
85 copy_tree(self.target, self.target2, verbose=0)
[all …]
/external/python/setuptools/setuptools/_distutils/tests/
Dtest_dir_util.py41 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)
71 create_tree(self.root_target, ['one', 'two', 'three'], verbose=0)
73 remove_tree(self.root_target, verbose=0)
76 create_tree(self.root_target, ['one', 'two', 'three'], verbose=1)
79 remove_tree(self.root_target, verbose=0)
83 mkpath(self.target, verbose=0)
85 copy_tree(self.target, self.target2, verbose=0)
[all …]
/external/strace/tests-mx32/
Dioctl_dm.c45 # ifndef VERBOSE
46 # define VERBOSE 0 macro
152 # if VERBOSE
163 # endif /* VERBOSE */
374 # if VERBOSE in main()
377 # else /* !VERBOSE */ in main()
379 # endif /* VERBOSE */ in main()
402 # if VERBOSE in main()
406 # endif /* VERBOSE */ in main()
419 # if VERBOSE in main()
[all …]
/external/strace/tests/
Dioctl_dm.c45 # ifndef VERBOSE
46 # define VERBOSE 0 macro
152 # if VERBOSE
163 # endif /* VERBOSE */
374 # if VERBOSE in main()
377 # else /* !VERBOSE */ in main()
379 # endif /* VERBOSE */ in main()
402 # if VERBOSE in main()
406 # endif /* VERBOSE */ in main()
419 # if VERBOSE in main()
[all …]
/external/strace/tests-m32/
Dioctl_dm.c45 # ifndef VERBOSE
46 # define VERBOSE 0 macro
152 # if VERBOSE
163 # endif /* VERBOSE */
374 # if VERBOSE in main()
377 # else /* !VERBOSE */ in main()
379 # endif /* VERBOSE */ in main()
402 # if VERBOSE in main()
406 # endif /* VERBOSE */ in main()
419 # if VERBOSE in main()
[all …]
/external/python/cpython3/Tools/peg_generator/pegen/
Dparser.py50 # Fast path: cache hit, and not verbose.
55 # Slow path: no cache hit, or verbose.
56 verbose = self._verbose
60 if verbose:
65 if verbose:
71 if verbose:
87 # Fast path: cache hit, and not verbose.
92 # Slow path: no cache hit, or verbose.
93 verbose = self._verbose
96 if verbose:
[all …]
/external/arm-trusted-firmware/plat/brcm/board/stingray/src/
Dfsx.c187 VERBOSE("fsx %s init start\n", fsx_type_names[fsx_type]); in fsx_init()
191 VERBOSE(" - enable fsx clock\n"); in fsx_init()
197 VERBOSE(" - reset fsx\n"); in fsx_init()
216 VERBOSE(" - wait for HW-init done\n"); in fsx_init()
230 VERBOSE(" - make all rings non-secured\n"); in fsx_init()
235 VERBOSE(" - set start stream-id for rings to 0x%x\n", in fsx_init()
242 VERBOSE(" - set timer configuration\n"); in fsx_init()
253 VERBOSE(" - set burst length, fifo and bd threshold\n"); in fsx_init()
268 VERBOSE(" - set memory configuration\n"); in fsx_init()
287 VERBOSE(" - set AXI control = 0x%x\n", in fsx_init()
[all …]
/external/python/cpython2/Lib/bsddb/test/
Dtest_thread.py19 from test_all import db, dbutils, test_support, verbose, have_threads, \
39 if verbose:
76 if verbose:
95 )#verbose = verbose)
110 )#verbose = verbose)
131 if verbose:
140 if verbose and x % 100 == 0:
148 if verbose:
151 if verbose:
169 if verbose:
[all …]

12345678910>>...200