Searched refs:pass (Results 1 - 25 of 681) sorted by path

1234567891011>>

/macosx-10.10/BerkeleyDB-21/db/dist/
H A Dconfigure1591 LIBS libraries to pass to the linker, e.g. -l<library>
9027 # PORTME Check for flag to pass linker flags through the system compiler.
10179 # cannot just pass the convience library names through
10517 # especially as we might pass files found there to a mingw objdump,
12065 # How to pass a linker flag through the compiler.
13462 # flag to pass the commands to the underlying system
13463 # linker. We must also pass each convience library through
13466 # cannot just pass the convience library names through
14440 # especially as we might pass files found there to a mingw objdump,
15097 # How to pass
[all...]
H A Dltmain.sh1072 # which system we are compiling for in order to pass an extra
1619 # -q* pass through compiler args for the IBM compiler
1620 # -m* pass through architecture-specific compiler args for GCC
1621 # -m*, -t[45]*, -txscale* pass through architecture-specific
1623 # -pg pass through profiling flag for GCC
2075 for pass in $passes; do
2076 if test "$linkmode,$pass" = "lib,link" ||
2077 test "$linkmode,$pass" = "prog,scan"; then
2082 case $pass in
2088 if test "$pass"
[all...]
H A Ds_windows71 \ * Windows defines off_t to long (i.e., 32 bits). We need to pass 64-bit\\
/macosx-10.10/BerkeleyDB-21/db/env/
H A Denv_recover.c69 char *p, *pass; local
79 pass = "initial";
158 * Read forward through the log from the position found in pass 0
161 * 0,0). At the end of this pass, we know all transactions for
184 * Read forward through the log from the LSN found in pass #2,
186 * specified rollback point). During this pass, checkpoint
206 * pass we've accomplished.
388 pass = "backward";
426 * point for the forward pass, and then reset appropriately to
427 * derive a real stop_lsn that tells how far the forward pass
[all...]
/macosx-10.10/BerkeleyDB-21/db/mod_db4/
H A Dconfigure802 --with-cxxflags Specify additional flags to pass to compiler
803 --with-ldflags Specify additional flags to pass to linker
H A Dconfigure.in21 [ --with-cxxflags Specify additional flags to pass to compiler],
30 [ --with-ldflags Specify additional flags to pass to linker],
/macosx-10.10/BerkeleyDB-21/db/mp/
H A Dmp_sync.c265 int filecnt, maxopenfd, pass, required_write, ret, t_ret; local
271 filecnt = pass = wrote_total = 0;
442 for (i = pass = wrote_cnt = 0, remaining = ar_cnt; remaining > 0; ++i) {
445 ++pass;
484 if (F_ISSET(bhp, BH_LOCKED) || (bhp->ref != 0 && pass < 2)) {
665 * list is never re-ordered, a single pass is sufficient. It
743 * a flag to schedule a clean-out pass. (Not likely,
756 * locked. The mfp will get freed via the cleanup pass.
791 * We may need to do a last pass through the MPOOLFILE list -- if we
/macosx-10.10/BerkeleyDB-21/db/perl/BerkeleyDB/t/Test/
H A DBuilder.pm1258 A simple summary of the tests so far. True for pass, false for fail.
1259 This is a logical pass/fail, so todos are passes.
1278 { 'ok' => is the test considered a pass?
1285 'ok' is true if Test::Harness will consider the test to be a pass.
H A DMore.pm29 pass fail
100 pass($test_name);
597 =item B<pass>
601 pass($test_name);
606 wedge into an ok(). In this case, you can simply use pass() (to
614 sub pass (;$) { subroutine
/macosx-10.10/BerkeleyDB-21/db/perl/DB_File/
H A DDB_File.pm1800 To delete a filter pass C<undef> to it.
/macosx-10.10/BerkeleyDB-21/db/php_db4/
H A Ddb4.cpp1324 char *pass; local
1328 if(zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &pass, &passlen,
1333 RETURN_BOOL(db->set_encrypt(db, pass, flags)?0:1);
1687 /* FIXME should pass in dbc's parent txn */
1990 char *pass; local
1995 if(zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &pass, &passlen,
2000 RETURN_BOOL(dbenv->set_encrypt(dbenv, pass, flags)?0:1);
/macosx-10.10/BerkeleyDB-21/db/php_db4/samples/
H A Dtransactional_counter.php9 // we pass null in as the transaction, db4 forces this
/macosx-10.10/CPANInternal-159.1/Bencode-1.4/lib/
H A DBencode.pm183 If you pass a true value for the second option, it will disregard the sort order of dict keys. This violation of the I<bencode> format is somewhat common.
185 If you pass an integer for the third option, it will croak when attempting to parse dictionaries nested deeper than this level, to prevent DoS attacks using maliciously crafted input.
/macosx-10.10/CPANInternal-159.1/Class-C3-XS-0.13/t/
H A D02_MRO.t17 class O: pass
18 class F(O): pass
19 class E(O): pass
20 class D(O): pass
21 class C(D,F): pass
22 class B(D,E): pass
23 class A(B,C): pass
H A D03_MRO.t18 class O: pass
19 class F(O): pass
20 class E(O): pass
21 class D(O): pass
22 class C(D,F): pass
23 class B(E,D): pass
24 class A(B,C): pass
/macosx-10.10/CPANInternal-159.1/Class-DBI-v3.0.17/lib/Class/
H A DDBI.pm676 # we pass. Used by copy() and move().
1451 Music::DBI->connection(dbi:foo:dbname','user','pass',{ChopBlanks=>0});
1575 has_a(), you can pass an object to insert() for the value of that key.
2396 If this is not true you can pass an additional third argument to
2665 (If there are placeholders in the query, you must pass the relevant
3091 fail with the current code, but pass when I fix the problem. If it
/macosx-10.10/CPANInternal-159.1/Class-DBI-v3.0.17/t/testlib/
H A DPgBase.pm8 my $pass = $ENV{DBD_PG_PASSWD} || '';
10 __PACKAGE__->connection("dbi:Pg:dbname=$db", $user, $pass,
/macosx-10.10/CPANInternal-159.1/Class-Std-0.011/lib/Class/
H A DStd.pm1189 appropriate base class. The easiest way to accomplish that is to pass
2122 to pass in the corresponding initialization value. Often this happens because
2146 happened to be empty. Make sure you pass an actual value.
/macosx-10.10/CPANInternal-159.1/Class-Trigger-0.14/inc/Test/
H A DBase.pm14 skip todo_skip pass fail
H A DMore.pm30 pass fail
261 sub pass (;$) { subroutine
/macosx-10.10/CPANInternal-159.1/Config-Std-0.900/lib/Config/
H A DStd.pm816 If you pass a reference to the string as the first argument to
917 you. Did you mean to pass the subroutine a hash instead of a scalar?
979 you must explicitly pass a reference to the config hash.
/macosx-10.10/CPANInternal-159.1/Config-Std-0.901/lib/Config/
H A DStd.pm818 If you pass a reference to the string as the first argument to
919 you. Did you mean to pass the subroutine a hash instead of a scalar?
981 you must explicitly pass a reference to the config hash.
/macosx-10.10/CPANInternal-159.1/Crypt-OpenSSL-Bignum-0.04/
H A DBignum.pm221 Crypt::OpenSSL::Bignum perl object so that they can pass them to other
/macosx-10.10/CPANInternal-159.1/Crypt-SSLeay-0.64/
H A DSSLeay.pm323 To remove the pass phrase from the key file, run:
/macosx-10.10/CPANInternal-159.1/Crypt-SSLeay-0.64/eg/
H A Dnet-ssl-test111 If you need to use a proxy, please pass it in as an argument like

Completed in 872 milliseconds

1234567891011>>