HomeSort by: relevance | last modified time | path
    Searched refs:fallback (Results 1 - 25 of 172) sorted by relevancy

1 2 3 4 5 6 7

  /src/external/mpl/dhcp/bind/dist/lib/dns/
dst_pkcs11.h 27 isc_result_t fallback, CK_RV rv);
29 #define PK11_CALL(func, args, fallback) \
32 fallback, rv)), \
35 #define PK11_RET(func, args, fallback) \
38 fallback, rv)), \
pkcs11.c 31 isc_result_t fallback, CK_RV rv) {
38 return (fallback);
dst_openssl.h 56 dst__openssl_toresult(isc_result_t fallback);
59 dst__openssl_toresult2(const char *funcname, isc_result_t fallback);
63 isc_result_t fallback);
openssl_link.c 119 toresult(isc_result_t fallback) {
120 isc_result_t result = fallback;
151 dst__openssl_toresult(isc_result_t fallback) {
154 result = toresult(fallback);
161 dst__openssl_toresult2(const char *funcname, isc_result_t fallback) {
163 fallback));
168 isc_result_t fallback) {
175 result = toresult(fallback);
  /src/external/ibm-public/postfix/dist/src/util/
ldseed.c 78 time_t fallback = 0; local
106 fallback += ts.tv_sec ^ ts.tv_nsec;
109 fallback += gethrtime();
118 fallback += ts.tv_sec ^ ts.tv_nsec;
126 fallback += tv.tv_sec + tv.tv_usec;
129 fallback += getpid();
135 for (n = 0; n < sizeof(fallback) && n < len; n++) {
136 *(char *) dst++ ^= (fallback & 0xff);
137 fallback >>= CHAR_BIT;
msg_logger.c 15 /* void (*fallback)(const char *))
21 /* through a logger daemon, with an optional fallback mechanism.
41 /* .IP fallback
57 /* Disable the logging socket, and use the fallback function
61 /* Override the fallback setting (see above) with the specified
252 const char *unix_path, void (*fallback) (const char *))
286 msg_logger_fallback_fn = fallback;
351 static void fallback(const char *msg) function
364 msg_logger_init(argv[0], argv[1], argv[2], fallback);
  /src/external/bsd/jemalloc/dist/src/
edata_cache.c 59 edata_cache_fast_init(edata_cache_fast_t *ecs, edata_cache_t *fallback) {
61 ecs->fallback = fallback;
69 malloc_mutex_lock(tsdn, &ecs->fallback->mtx);
71 edata = edata_avail_remove_first(&ecs->fallback->avail);
76 atomic_load_sub_store_zu(&ecs->fallback->count, 1);
78 malloc_mutex_unlock(tsdn, &ecs->fallback->mtx);
88 return edata_cache_get(tsdn, ecs->fallback);
103 * Slowest path (fallback was also empty); allocate something
106 edata = base_alloc_edata(tsdn, ecs->fallback->base)
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
minsym-fallback.exp 20 standard_testfile .cc minsym-fallback-main.cc
22 include_file minsym-fallback.h
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
minsym-fallback.exp 20 standard_testfile .cc minsym-fallback-main.cc
22 include_file minsym-fallback.h
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
edata_cache.h 39 edata_cache_t *fallback; member in struct:edata_cache_fast_s
43 void edata_cache_fast_init(edata_cache_fast_t *ecs, edata_cache_t *fallback);
sec.h 90 pai_t *fallback; member in struct:sec_s
97 bool sec_init(tsdn_t *tsdn, sec_t *sec, base_t *base, pai_t *fallback,
  /src/external/bsd/jemalloc/include/jemalloc/internal/
edata_cache.h 39 edata_cache_t *fallback; member in struct:edata_cache_fast_s
43 void edata_cache_fast_init(edata_cache_fast_t *ecs, edata_cache_t *fallback);
sec.h 90 pai_t *fallback; member in struct:sec_s
97 bool sec_init(tsdn_t *tsdn, sec_t *sec, base_t *base, pai_t *fallback,
  /src/external/mpl/bind/dist/lib/dns/
dst_openssl.h 32 dst__openssl_toresult(isc_result_t fallback);
37 dst___openssl_toresult2(const char *funcname, isc_result_t fallback,
44 isc_result_t fallback, const char *file, int line);
  /src/crypto/external/apache2/openssl/dist/util/perl/OpenSSL/
fallback.pm 10 OpenSSL::fallback - push directories to the end of @INC at compile time
14 package OpenSSL::fallback;
24 use OpenSSL::fallback LIST;
28 This small simple module simplifies the addition of fallback directories
46 use fallback 'my/stuff';
53 use fallback 'file.txt';
73 carp "Empty compile time value given to use fallback";
81 croak "Parameter to use fallback must be a directory, not a file";
  /src/crypto/external/bsd/openssl/dist/util/perl/OpenSSL/
fallback.pm 10 OpenSSL::fallback - push directories to the end of @INC at compile time
14 package OpenSSL::fallback;
24 use OpenSSL::fallback LIST;
28 This small simple module simplifies the addition of fallback directories
46 use fallback 'my/stuff';
53 use fallback 'file.txt';
73 carp "Empty compile time value given to use fallback";
81 croak "Parameter to use fallback must be a directory, not a file";
  /src/external/apache2/llvm/dist/clang/utils/
CaptureCmd 38 fallback = os.getenv('CAPTURE_CMD_FALLBACK')
57 if fallback:
65 os.execv(fallback, sys.argv)
  /src/external/gpl2/dtc/dist/
dtc.c 116 static const char *guess_type_by_name(const char *fname, const char *fallback)
122 return fallback;
129 return fallback;
132 static const char *guess_input_format(const char *fname, const char *fallback)
139 return fallback;
145 return fallback;
149 return fallback;
152 return fallback;
159 return guess_type_by_name(fname, fallback);
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/building_blocks/
fallback_allocator.d 13 Fallback) allocator. All other requests are dispatched appropriately to one of
24 struct FallbackAllocator(Primary, Fallback)
32 static if (!stateSize!Primary && !stateSize!Fallback)
43 /// The fallback allocator.
44 static if (stateSize!Fallback) Fallback fallback;
45 else alias fallback = Fallback.instance;
48 If both `Primary` and `Fallback` are stateless, `FallbackAllocator
    [all...]
  /src/external/bsd/unbound/dist/testdata/root_zonemd.tdir/
root_zonemd.conf 29 fallback-enabled: yes
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dwarf2/
dwzbuildid.exp 30 # fallback - the buildids do not match but a match is found via buildid
34 dwzbuildid-fallback-base.S dwzbuildid-fallback-sep.S \
35 dwzbuildid-fallback-ok.S
134 # Copy a file into the .build-id place for the "fallback" test.
157 foreach_with_prefix testname { ok mismatch fallback } {
162 } elseif { $testname == "fallback" } {
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dwarf2/
dwzbuildid.exp 30 # fallback - the buildids do not match but a match is found via buildid
34 dwzbuildid-fallback-base.S dwzbuildid-fallback-sep.S \
35 dwzbuildid-fallback-ok.S
134 # Copy a file into the .build-id place for the "fallback" test.
157 foreach_with_prefix testname { ok mismatch fallback } {
162 } elseif { $testname == "fallback" } {
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
evp-openssl.c 89 const hc_EVP_CIPHER *fallback; member in struct:once_init_cipher_ctx
211 *arg->hc_memoizep = arg->fallback;
250 const hc_EVP_CIPHER *fallback,
258 arg.fallback = fallback;
337 const hc_EVP_MD *fallback; member in struct:once_init_md_ctx
355 *arg->hc_memoizep = arg->fallback;
375 const hc_EVP_MD *fallback,
383 ctx.fallback = fallback;
    [all...]
  /src/external/bsd/unbound/dist/testcode/
unitauth.c 751 struct query_info** qinfo, int* fallback, uint8_t** dp_nm,
759 *fallback = 0; /* default fallback value */
760 if(strstr(q->flags, "fallback"))
761 *fallback = 1;
908 int ret, fallback = 0; local
914 ret = auth_zones_lookup(az, qinfo, region, &msg, &fallback, dp_nm,
922 (ret?"ok":"fail"), (fallback?" fallback":""), ans_str);
925 /* ret is zero on fallback */
962 int fallback; local
    [all...]
  /src/external/cddl/osnet/dist/cmd/pyzfs/
pyzfs.py 45 fallback=True).gettext variable

Completed in 35 milliseconds

1 2 3 4 5 6 7