Searched refs:secondary (Results 1 - 25 of 66) sorted by relevance

123

/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DForeignKeyNullifier.java4 boolean nullifyForeignKey(SecondaryDatabase secondary, DatabaseEntry data) argument
H A DForeignMultiKeyNullifier.java4 boolean nullifyForeignKey(SecondaryDatabase secondary, DatabaseEntry key, DatabaseEntry data, DatabaseEntry secKey) argument
H A DSecondaryKeyCreator.java12 The interface implemented for extracting single-valued secondary keys from
17 The secondary database configuration is specified when calling
23 public boolean createSecondaryKey(SecondaryDatabase secondary,
29 // DO HERE: Extract the secondary key from the primary key and
30 // data, and set the secondary key into the result parameter.
43 Creates a secondary key entry, given a primary key and data entry.
45 A secondary key may be derived from the primary key, primary data, or a
46 combination of the primary key and data. For secondary keys that are
48 will not be indexed. To ensure the integrity of a secondary database the
52 @param secondary th
70 createSecondaryKey(SecondaryDatabase secondary, DatabaseEntry key, DatabaseEntry data, DatabaseEntry result) argument
[all...]
H A DSecondaryMultiKeyCreator.java14 The interface implemented for extracting multi-valued secondary keys from
19 The secondary database configuration is specified when calling
25 public void createSecondaryKeys(SecondaryDatabase secondary,
31 // DO HERE: Extract the secondary keys from the primary key and
43 Use this interface when any number of secondary keys may be present in a single
45 When only zero or one secondary key is present (for many-to-one and one-to-one
89 Creates a secondary key entry, given a primary key and data entry.
91 A secondary key may be derived from the primary key, primary data, or a
92 combination of the primary key and data. Zero or more secondary keys may
94 To ensure the integrity of a secondary databas
113 createSecondaryKeys(SecondaryDatabase secondary, DatabaseEntry key, DatabaseEntry data, Set results) argument
[all...]
/macosx-10.10/BerkeleyDB-21/db/perl/BerkeleyDB/t/
H A Ddb-3.3.t59 # db->associate -- secondary keys
81 # create secondary database
82 ok 8, my $secondary = new BerkeleyDB::Hash -Filename => $Dfile2,
85 # associate primary with secondary
86 ok 9, $primary->associate($secondary, \&sec_key) == 0;
103 # check the records in the secondary
104 ok 11, countRecords($secondary) == 3 ;
106 ok 12, $secondary->db_get("house", $v) == 0;
109 ok 14, $secondary->db_get("sea", $v) == 0;
112 ok 16, $secondary
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_smime/
H A Dcmsarray.c131 * If "secondary" or "tertiary are not NULL, it must be arrays with the same
141 SecCmsArraySort(void **primary, int (*compare)(void *,void *), void **secondary, void **tertiary) argument
148 PORT_Assert(secondary == NULL || SecCmsArrayCount(secondary) == n);
164 if (secondary) { /* secondary array? */
165 tmp = secondary[i+1]; /* exchange there as well */
166 secondary[i+1] = secondary[i];
167 secondary[
[all...]
H A Dcmslocal.h247 * If "secondary" is not NULL, the same reordering gets applied to it.
255 SecCmsArraySort(void **primary, int (*compare)(void *,void *), void **secondary, void **tertiary);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_smime/lib/
H A Dcmsarray.c131 * If "secondary" or "tertiary are not NULL, it must be arrays with the same
141 SecCmsArraySort(void **primary, int (*compare)(void *,void *), void **secondary, void **tertiary) argument
148 PORT_Assert(secondary == NULL || SecCmsArrayCount(secondary) == n);
164 if (secondary) { /* secondary array? */
165 tmp = secondary[i+1]; /* exchange there as well */
166 secondary[i+1] = secondary[i];
167 secondary[
[all...]
H A Dcmslocal.h247 * If "secondary" is not NULL, the same reordering gets applied to it.
255 SecCmsArraySort(void **primary, int (*compare)(void *,void *), void **secondary, void **tertiary);
/macosx-10.10/Security-57031.1.35/libsecurity_smime/Security/
H A Dcmsarray.c132 * If "secondary" or "tertiary are not NULL, it must be arrays with the same
142 SecCmsArraySort(void **primary, int (*compare)(void *,void *), void **secondary, void **tertiary) argument
149 PORT_Assert(secondary == NULL || SecCmsArrayCount(secondary) == n);
165 if (secondary) { /* secondary array? */
166 tmp = secondary[i+1]; /* exchange there as well */
167 secondary[i+1] = secondary[i];
168 secondary[
[all...]
H A Dcmslocal.h239 * If "secondary" is not NULL, the same reordering gets applied to it.
247 SecCmsArraySort(void **primary, int (*compare)(void *,void *), void **secondary, void **tertiary);
/macosx-10.10/Security-57031.1.35/libsecurity_smime/lib/
H A Dcmsarray.c132 * If "secondary" or "tertiary are not NULL, it must be arrays with the same
142 SecCmsArraySort(void **primary, int (*compare)(void *,void *), void **secondary, void **tertiary) argument
149 PORT_Assert(secondary == NULL || SecCmsArrayCount(secondary) == n);
165 if (secondary) { /* secondary array? */
166 tmp = secondary[i+1]; /* exchange there as well */
167 secondary[i+1] = secondary[i];
168 secondary[
[all...]
H A Dcmslocal.h239 * If "secondary" is not NULL, the same reordering gets applied to it.
247 SecCmsArraySort(void **primary, int (*compare)(void *,void *), void **secondary, void **tertiary);
/macosx-10.10/Security-57031.1.35/libsecurity_smime/security_smime/
H A Dcmsarray.c132 * If "secondary" or "tertiary are not NULL, it must be arrays with the same
142 SecCmsArraySort(void **primary, int (*compare)(void *,void *), void **secondary, void **tertiary) argument
149 PORT_Assert(secondary == NULL || SecCmsArrayCount(secondary) == n);
165 if (secondary) { /* secondary array? */
166 tmp = secondary[i+1]; /* exchange there as well */
167 secondary[i+1] = secondary[i];
168 secondary[
[all...]
/macosx-10.10/BerkeleyDB-21/db/docs_src/ref/am/
H A Dsecond1.cs45 * Open/create secondary. Note that it supports duplicate data
56 /* Associate the secondary with the primary. */
62 * getname -- extracts a secondary key (the last name) from a primary
66 getname(secondary, pkey, pdata, skey)
67 DB *secondary;
72 * Since the secondary key is a simple structure member of the
78 * secondary key DBT.
/macosx-10.10/BerkeleyDB-21/db/examples_c/csv/
H A Ddb.c134 * Open any secondary indices.
144 * Create secondary database handles.
205 f->secondary = sdb;
213 * Close any secondary indices.
223 if (f->secondary != NULL && (t_ret =
224 f->secondary->close(f->secondary, 0)) != 0 && ret == 0)
H A Dcsv.h81 DB *secondary; /* Secondary index handle */ member in struct:__anon330
H A Dload_main.c20 DB **secondary; /* Secondaries */ variable
H A DDbRecord.c399 * If we have a secondary, set a cursor in the secondary, else set the
410 if (f->secondary == NULL || op == NEQ || op == WC || op == NWC) {
425 f->secondary->cursor(f->secondary, NULL, &dbc, 0)) != 0)
/macosx-10.10/bind9-45.101/bind9/contrib/named-bootconf/
H A Dnamed-bootconf.sh180 secondary|secondary/* )
182 secondary/chaos )
185 secondary/hs )
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/persist/impl/
H A DPersistKeyCreator.java27 * A persistence secondary key creator/nullifier. This class always uses
73 public boolean createSecondaryKey(SecondaryDatabase secondary, argument
95 public void createSecondaryKeys(SecondaryDatabase secondary, argument
111 public boolean nullifyForeignKey(SecondaryDatabase secondary, argument
149 * Returns the location from which the secondary key field can be copied.
/macosx-10.10/BerkeleyDB-21/db/test/scr016/src/com/sleepycat/db/test/
H A DAssociateTest.java133 // Test secondary get functionality.
155 // ensure that the retrievals are consistent using both primary and secondary keys.
160 TestUtils.ERR("Data retrieved from matching primary secondary keys is not consistent. secdata: " + new String(secdata.getData()) +
179 // ensure that the retrievals are consistent using both primary and secondary keys.
184 TestUtils.ERR("Data retrieved from matching primary secondary keys is not consistent. secdata: " + new String(secdata.getData()) +
195 /* creates a stupid secondary index as follows:
205 public boolean createSecondaryKey(SecondaryDatabase secondary, argument
215 if (savedPriDb.equals(secondary)) {
218 else if (savedSecDb.equals(secondary)) {
219 which = "secondary";
[all...]
/macosx-10.10/BerkeleyDB-21/db/test/
H A Dtest098.tcl8 # TEST Test of DB_GET_RECNO and secondary indices. Open a primary and
9 # TEST a secondary, and do a normal cursor get followed by a get_recno.
18 puts "Test098: $omethod ($args): DB_GET_RECNO and secondary indices."
59 {-create} $base-secondary.db]
79 puts "\tTest098.b: c_get(DB_FIRST) on the secondary."
83 puts "\tTest098.c: c_get(DB_GET_RECNO) on the secondary."
/macosx-10.10/emacs-93/emacs/lisp/
H A Dmouse-sel.el58 ;; & mouse-3, but operate on the X secondary selection rather than the
193 ([M-down-mouse-1] . mouse-select-secondary)
194 ([M-mouse-2] . mouse-insert-secondary)
195 ([M-down-mouse-3] . mouse-extend-secondary))
241 & mouse-3, but operate on the X secondary selection rather than the
288 (defvar mouse-sel-secondary-thing nil
290 (make-variable-buffer-local 'mouse-sel-secondary-thing)
292 ;; Ensure that secondary overlay is defined
293 (unless (overlayp mouse-secondary-overlay)
294 (setq mouse-secondary
[all...]
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Ducoleitr.cpp209 uint64_t primary = 0, secondary = 0, tertiary = 0, quaternary = 0; local
220 secondary = ucol_secondaryOrder(ce);
246 primary = secondary = tertiary = 0;
256 return primary << 48 | secondary << 32 | tertiary << 16 | quaternary;

Completed in 156 milliseconds

123