Searched refs:sites (Results 1 - 16 of 16) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/rep/
H A Drep_elect.c17 * We need to check sites == nsites, not more than half
24 ((rep)->sites >= (rep)->nsites && (rep)->w_priority > 0)
132 * sites of potentially mixed versions. We set a bit indicating
134 * Old sites will never elect us, with 0 priority, but if all
135 * we have are new sites, then we can elect the best electable
267 if (__rep_tally(env, rep, rep->eid, &rep->sites, rep->egen,
338 if (rep->sites >= rep->nvotes) {
359 if (rep->sites >= rep->nvotes)
361 "No electable site found: recvd %d of %d votes from %d sites",
362 rep->sites, re
[all...]
H A Drep_stat.c96 stats->st_election_nsites = rep->sites;
364 "Number of sites expected to participate in elections",
469 STAT_LONG("Space allocated for sites", rep->asites);
489 STAT_LONG("Sites heard from", rep->sites);
H A Drep_util.c1020 rep->sites = 0;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_c/ex_rep/base/
H A Drep_msg.c323 repsite_t *sites; local
332 sites = aa->sites;
357 progname, &sites[i], &open, &hm_thr[i]);
H A Drep_base.h41 repsite_t *sites; member in struct:__anon2069
H A Drep_base.c203 aa.sites = sitep;
252 * exist at another site. However, in case we shut down all sites
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/dbinc/
H A Drepmgr.h20 * identify messages sent between sites, even sites running differing versions
168 int ref_count; /* # of sites' send queues pointing to us */
209 int eid; /* index into sites array in machtab */
324 * (We allocate EID numbers for other sites simply according to their index
369 * EID. We allocate EID numbers for remote sites simply according to their
374 #define SITE_FROM_EID(eid) (&db_rep->sites[eid])
375 #define EID_FROM_SITE(s) ((int)((s) - (&db_rep->sites[0])))
H A Drep.h203 u_int32_t asites; /* Space allocated for sites. */
204 u_int32_t nsites; /* Number of sites in group. */
275 u_int32_t sites; /* Sites heard from. */ member in struct:__rep
509 REPMGR_SITE *sites; /* Array of known sites. */ member in struct:__db_rep
572 * possible for various different sites to serve the various PAGE_REQ requests.
622 int nsites; /* Number of sites I've been in
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/repmgr/
H A Drepmgr_stat.c260 site = &db_rep->sites[i];
275 site = &db_rep->sites[i];
H A Drepmgr_util.c150 sizeof(REPMGR_SITE) * new_site_max, &db_rep->sites)) != 0)
156 site = &db_rep->sites[eid];
331 * Provide the appropriate value for nsites, the number of sites in the
333 * Otherwise, just use the number of sites we know of.
353 * The number of other sites in our table, plus 1 to count ourself.
H A Drepmgr_net.c43 * to the trouble of doing that, other sites to which we also want to send the
137 * Right now, nsites and npeers represent the (maximum) number of sites
140 * nsites/npeers other sites, that's the maximum number of ack's we
146 /* Number of sites in the group besides myself. */
161 /* Number of sites in the group besides myself. */
243 * Sends message to all sites with which we currently have an active
244 * connection. Sets result parameters according to how many sites we attempted
506 * Count up how many sites have ack'ed the given LSN. Returns TRUE if enough
507 * sites have ack'ed; FALSE otherwise.
564 * sites)
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/libdb_java/
H A Djava_typemaps.i739 jstring addr_host = (*jenv)->NewStringUTF(jenv, $1.sites[i].host);
743 rephost_class, rephost_construct, addr_host, $1.sites[i].port);
748 repmgr_siteinfo_class, repmgr_siteinfo_construct, jrep_addr, $1.sites[i].eid);
750 $1.sites[i].status);
756 __os_ufree(NULL, $1.sites);
H A Ddb.i54 DB_REPMGR_SITE *sites;
1407 struct __db_repmgr_sites sites;
1409 &sites.nsites, &sites.sites);
1410 return sites;
H A Ddb_java_wrap.c2458 DB_REPMGR_SITE *sites; member in struct:__db_repmgr_sites
3333 struct __db_repmgr_sites sites; local
3335 &sites.nsites, &sites.sites);
3336 return sites;
9676 jstring addr_host = (*jenv)->NewStringUTF(jenv, (&result)->sites[i].host);
9680 rephost_class, rephost_construct, addr_host, (&result)->sites[i].port);
9685 repmgr_siteinfo_class, repmgr_siteinfo_construct, jrep_addr, (&result)->sites[i].eid);
9687 (&result)->sites[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/
H A DEnvironmentConfig.java2220 {@link Environment#setReplicationTimeout} method and the number of sites in
2229 sites have a 2% variance, then <code>replicationClockskewFast</code> should be given as
2250 The value, relative to the <code>replicationClockskewSlow</code>, of the fastest clock in the group of sites.
2252 The value of the slowest clock in the group of sites.
2263 Return the current clock skew value for the fastest clock in the group of sites.
2267 The current clock skew value for the fastest clock in the group of sites.
2274 Return the current clock skew value for the slowest clock in the group of sites.
2278 The current clock skew value for the slowest clock in the group of sites.
2950 Set the total number of sites in the replication group.
2953 The total number of sites i
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/doc/
H A Dip-cref.tex2785 to other routing domains or to help while renumbering sites

Completed in 282 milliseconds