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

1 2 3 4 5 6 7 8 91011>>

  /src/external/ibm-public/postfix/dist/src/util/
dict_alloc.c 9 /* #include <dict.h>
11 /* DICT *dict_alloc(dict_type, dict_name, size)
16 /* void dict_free(dict)
17 /* DICT *ptr;
19 /* void dict_jmp_alloc(dict)
20 /* DICT *ptr;
57 /* dict(3)
85 #include "dict.h"
89 static const char *dict_default_lookup(DICT *dict, const char *unused_key
144 DICT *dict = (DICT *) mymalloc(size); local
    [all...]
dict_env.c 11 /* DICT *dict_env_open(name, dummy, dict_flags)
21 /* dict(3) generic dictionary manager
48 #include "dict.h"
53 static int dict_env_update(DICT *dict, const char *name, const char *value)
55 dict->error = 0;
60 if (dict->flags & DICT_FLAG_FOLD_FIX) {
61 if (dict->fold_buf == 0)
62 dict->fold_buf = vstring_alloc(10);
63 vstring_strcpy(dict->fold_buf, name)
103 DICT *dict; local
    [all...]
dict_utf8.c 9 /* #include <dict.h>
11 /* DICT *dict_utf8_activate(
12 /* DICT *dict)
56 #include <dict.h>
97 static char *dict_utf8_check_fold(DICT *dict, const char *string,
100 int fold_flag = (dict->flags & DICT_FLAG_FOLD_ANY);
115 && (fold_flag & ((dict->flags & DICT_FLAG_FIXED) ?
117 if (dict->fold_buf == 0
    [all...]
dict_file.c 9 /* #include <dict.h>
12 /* DICT *dict,
16 /* DICT *dict,
20 /* DICT *dict,
24 /* DICT *dict)
27 /* DICT *dict
    [all...]
dict_surrogate.c 11 /* DICT *dict_surrogate(dict_type, dict_name,
45 /* dict(3) generic dictionary manager
67 #include <dict.h>
72 DICT dict; /* generic members */ member in struct:__anon23237
78 static int dict_surrogate_sequence(DICT *dict, int unused_func,
81 DICT_SURROGATE *dp = (DICT_SURROGATE *) dict;
84 dict->type, dict->name, dp->reason)
    [all...]
dict_fail.c 11 /* DICT *dict_fail_open(name, open_flags, dict_flags)
19 /* dict(3) generic dictionary manager
40 #include <dict.h>
46 DICT dict; /* generic members */ member in struct:__anon23212
52 static int dict_fail_sequence(DICT *dict, int unused_func,
55 DICT_FAIL *dp = (DICT_FAIL *) dict;
58 DICT_ERR_VAL_RETURN(dict, dp->dict_errno, DICT_STAT_ERROR);
63 static int dict_fail_update(DICT *dict, const char *unused_name
    [all...]
dict_lmdb.c 15 /* DICT *dict_lmdb_open(path, open_flags, dict_flags)
29 /* This variable cannot be exported via the dict(3) API and
44 /* dict(3) generic dictionary manager
85 #include <dict.h>
92 DICT dict; /* generic members */ member in struct:__anon23214
116 * Each dict(3) API call is retried no more than a few times. For bulk-mode
126 #define DICT_LMDB_API_RETRY_LIMIT 2 /* Retries per dict(3) API call */
135 static const char *dict_lmdb_lookup(DICT *dict, const char *name
550 DICT *dict; local
    [all...]
dict_ht.c 11 /* DICT *dict_ht_open(name, open_flags, dict_flags)
21 /* dict(3) generic dictionary manager
41 #include "dict.h"
49 DICT dict; /* generic members */ member in struct:__anon23213
55 static int dict_ht_delete(DICT *dict, const char *name)
57 DICT_HT *dict_ht = (DICT_HT *) dict;
62 if (dict->flags & DICT_FLAG_FOLD_FIX) {
63 if (dict->fold_buf == 0
    [all...]
dict_debug.c 9 /* #include <dict.h>
11 /* DICT *dict_debug(dict_handle)
12 /* DICT *dict_handle;
14 /* DICT *DICT_DEBUG(dict_handle)
15 /* DICT *dict_handle;
47 #include <dict.h>
52 DICT dict; /* the proxy service */ member in struct:__anon23211
53 DICT *real_dict; /* encapsulated object */
58 static const char *dict_debug_lookup(DICT *dict, const char *key
    [all...]
dict_nis.c 11 /* DICT *dict_nis_open(map, open_flags, dict_flags)
19 /* dict(3) generic dictionary manager
60 #include "dict.h"
68 DICT dict; /* generic members */ member in struct:__anon23216
141 static const char *dict_nis_lookup(DICT *dict, const char *key)
143 DICT_NIS *dict_nis = (DICT_NIS *) dict;
149 dict->error = 0;
154 if ((dict->flags & (DICT_FLAG_TRY1NULL | DICT_FLAG_TRY0NULL)) == 0
    [all...]
dict_cidr.h 19 #include <dict.h>
24 extern DICT *dict_cidr_open(const char *, int, int);
dict_env.h 19 #include <dict.h>
26 extern DICT *dict_env_open(const char *, int, int);
dict_inline.h 19 #include <dict.h>
26 extern DICT *dict_inline_open(const char *, int, int);
dict_ni.h 19 #include <dict.h>
26 extern DICT *dict_ni_open(const char *, int, int);
dict_nis.h 19 #include <dict.h>
26 extern DICT *dict_nis_open(const char *, int, int);
dict_nisplus.h 19 #include <dict.h>
26 extern DICT *dict_nisplus_open(const char *, int, int);
dict_pcre.h 19 #include <dict.h>
26 extern DICT *dict_pcre_open(const char *, int, int);
dict_pipe.h 19 #include <dict.h>
26 extern DICT *dict_pipe_open(const char *, int, int);
  /src/crypto/external/bsd/libsaslc/dist/test/
t_dict.c 39 #include "dict.h"
41 /* src/dict.c test cases */
53 saslc__dict_t *dict; local
54 ATF_REQUIRE(dict = saslc__dict_create());
55 saslc__dict_destroy(dict);
68 saslc__dict_t *dict; local
69 ATF_REQUIRE(dict = saslc__dict_create());
70 ATF_CHECK_EQ(saslc__dict_insert(dict, "foo", "bar"), DICT_OK);
71 ATF_CHECK_EQ(saslc__dict_insert(dict, "bar", "blah"), DICT_OK);
72 ATF_CHECK_EQ(saslc__dict_insert(dict, " ", "bar"), DICT_KEYINVALID)
95 saslc__dict_t *dict; local
128 saslc__dict_t *dict; local
158 saslc__dict_t *dict; local
    [all...]
  /src/external/public-domain/xz/dist/src/liblzma/lz/
lz_decoder.h 124 /// Function to decode from in[] to *dict
126 lzma_dict *restrict dict, const uint8_t *restrict in,
169 dict_get(const lzma_dict *const dict, const uint32_t distance)
171 return dict->buf[dict->pos - distance - 1
172 + (distance < dict->pos
173 ? 0 : dict->size - LZ_DICT_REPEAT_MAX)];
177 /// Optimized version of dict_get(dict, 0)
179 dict_get0(const lzma_dict *const dict)
181 return dict->buf[dict->pos - 1]
    [all...]
  /src/external/ibm-public/postfix/dist/src/global/
dict_ldap.h 19 #include <dict.h>
26 extern DICT *dict_ldap_open(const char *, int, int);
dict_mongodb.h 19 #include <dict.h>
26 extern DICT *dict_mongodb_open(const char *, int, int);
dict_mysql.h 19 #include <dict.h>
26 extern DICT *dict_mysql_open(const char *, int, int);
dict_sqlite.h 19 #include <dict.h>
26 extern DICT *dict_sqlite_open(const char *, int, int);
resolve_local.h 19 #include <dict.h>

Completed in 19 milliseconds

1 2 3 4 5 6 7 8 91011>>