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

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/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...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/pseries/
H A Dkexec.c21 static void pseries_kexec_cpu_down(int crash_shutdown, int secondary) argument
43 static void pseries_kexec_cpu_down_mpic(int crash_shutdown, int secondary) argument
45 pseries_kexec_cpu_down(crash_shutdown, secondary);
46 mpic_teardown_this_cpu(secondary);
54 static void pseries_kexec_cpu_down_xics(int crash_shutdown, int secondary) argument
56 pseries_kexec_cpu_down(crash_shutdown, secondary);
57 xics_teardown_cpu(secondary);
H A Dxics.h19 extern void xics_teardown_cpu(int secondary);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/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...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/security/
H A Dcapability.c51 static int secondary; variable
71 secondary = 1;
74 secondary ? " as secondary" : "");
83 if (secondary) {
H A Droot_plug.c32 static int secondary; variable
113 secondary = 1;
123 if (secondary) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/ixp2000/
H A Dpm3386.c96 int secondary; local
98 secondary = pm3386_secondary_present();
103 if (secondary)
108 if (secondary)
114 if (secondary)
120 if (secondary)
127 if (secondary)
133 if (secondary)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/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.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/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:__anon2064
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)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/iseries/
H A Dhtab.c48 int secondary = 0; local
53 * The hypervisor tries both primary and secondary.
54 * If we are being called to insert in the secondary,
55 * it means we have already tried both primary and secondary,
82 if (slot < 0) { /* MSB set means secondary group */
84 secondary = 1;
93 HvCallHpt_addValidate(slot, secondary, &lhpte);
97 return (secondary << 3) | (slot & 7);
186 * 0x80000000xxxxxxxx : Entry found in secondary group, slot x
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/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.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/ps3/
H A Dhtab.c67 int secondary = 0; local
100 * [secondary] 0, 2, 4, 6, 1, 3, 5, 7
143 * the slot should be in secondary HPTE group.
147 secondary = 1;
150 secondary = 0;
160 return (slot & 7) | (secondary << 3);
H A Dsetup.c202 static void ps3_kexec_cpu_down(int crash_shutdown, int secondary) argument
206 if (secondary) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/tipc/
H A Dbcast.c68 * @secondary: pointer to secondary bearer
76 struct bearer *secondary; member in struct:bcbearer_pair
589 struct bearer *s = bcbearer->bpairs[bp_index].secondary;
611 bcbearer->bpairs[bp_index].secondary = p;
652 bp_temp[b->priority].secondary = b;
667 if (bp_temp[pri].secondary) {
669 &bp_temp[pri].secondary->nodes)) {
670 bp_curr->secondary = bp_temp[pri].secondary;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/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...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/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."
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/pci/hotplug/
H A Dshpchp_sysfs.c82 for (busnr = bus->secondary; busnr <= bus->subordinate; busnr++) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libvorbis-1.2.3/vq/
H A Dlatticepare.c314 long *secondary=_ogg_malloc(points*sizeof(long)); local
324 for(i=0;i<points;i++)secondary[i]=-1;
340 secondary[i]=secondhead[secondentry];
450 long next=secondary[head];
460 secondary[head]=secondhead[secondentry];
489 free(secondary);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/celleb/
H A Dsetup.c132 static void celleb_kexec_cpu_down(int crash, int secondary) argument

Completed in 121 milliseconds

123