Searched refs:rep (Results 1 - 25 of 131) sorted by relevance

123456

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/rep/
H A Drep_elect.c23 #define IS_PHASE1_DONE(rep) \
24 ((rep)->sites >= (rep)->nsites && (rep)->w_priority > 0)
26 #define I_HAVE_WON(rep, winner) \
27 ((rep)->votes >= (rep)->nvotes && winner == (rep)->eid)
57 REP *rep; local
80 rep
508 REP *rep; local
719 REP *rep; local
980 REP *rep; local
1103 REP *rep; local
[all...]
H A Drep_region.c32 REP *rep; local
42 if ((ret = __env_alloc(infop, sizeof(REP), &rep)) != 0)
44 memset(rep, 0, sizeof(*rep));
52 env, MTX_REP_REGION, 0, &rep->mtx_region)) != 0)
62 env, MTX_REP_DATABASE, 0, &rep->mtx_clientdb)) != 0)
66 env, MTX_REP_CHKPT, 0, &rep->mtx_ckp)) != 0)
70 env, MTX_REP_EVENT, 0, &rep->mtx_event)) != 0)
73 rep->newmaster_event_gen = 0;
74 rep
130 REP *rep; local
[all...]
H A Drep_verify.c40 REP *rep; local
46 rep = db_rep->region;
51 if (!F_ISSET(rep, REP_F_RECOVER_VERIFY))
69 MUTEX_LOCK(env, rep->mtx_clientdb);
71 MUTEX_UNLOCK(env, rep->mtx_clientdb);
85 if ((ret = __rep_log_backup(env, rep, logc, &lsn)) == 0) {
86 MUTEX_LOCK(env, rep->mtx_clientdb);
89 lp->wait_ts = rep->request_gap;
90 MUTEX_UNLOCK(env, rep->mtx_clientdb);
99 STAT(rep
139 REP *rep; local
275 REP *rep; local
329 REP *rep; local
459 REP *rep; local
[all...]
H A Drep_record.c33 #define MASTER_ONLY(rep, rp) do { \
34 if (!F_ISSET(rep, REP_F_MASTER)) { \
44 #define CLIENT_ONLY(rep, rp) do { \
45 if (!F_ISSET(rep, REP_F_CLIENT)) { \
75 if (F_ISSET(rep, REP_F_CLIENT)) { \
76 STAT(rep->stat.st_client_svc_req++); \
78 STAT(rep->stat.st_client_svc_miss++); \
79 ret = __rep_skip_msg(env, rep, eid, rp->rectype);\
94 STAT(rep->stat.st_msgs_recover++); \
95 ret = __rep_skip_msg(env, rep, ei
153 REP *rep; local
966 REP *rep; local
1372 REP *rep; local
1617 REP *rep; local
1689 REP *rep; local
1851 REP *rep; local
2054 REP *rep; local
2196 REP *rep; local
2221 REP *rep; local
[all...]
H A Drep_method.c105 REP *rep; local
125 rep = db_rep->region;
126 if (FLD_ISSET(rep->config, mapped))
156 REP *rep; local
182 rep = db_rep->region;
188 if (F_ISSET(rep, REP_F_START_CALLED)) {
201 MUTEX_LOCK(env, rep->mtx_clientdb);
203 orig = rep->config;
205 FLD_SET(rep->config, mapped);
207 FLD_CLR(rep
326 REP *rep; local
748 REP *rep; local
918 REP *rep; local
1163 REP *rep; local
1206 REP *rep; local
1245 REP *rep; local
1276 REP *rep; local
1302 REP *rep; local
1325 REP *rep; local
1349 REP *rep; local
1426 REP *rep; local
1485 REP *rep; local
1534 REP *rep; local
1591 REP *rep; local
1632 REP *rep; local
1660 REP *rep; local
1777 REP *rep; local
[all...]
H A Drep_stat.c67 REP *rep; local
72 rep = db_rep->region;
87 dolock = FLD_ISSET(rep->flags, REP_F_RECOVER_MASK) ? 0 : 1;
88 memcpy(stats, &rep->stat, sizeof(*stats));
91 if (F_ISSET(rep, REP_F_EPHASE1))
93 else if (F_ISSET(rep, REP_F_EPHASE2))
96 stats->st_election_nsites = rep->sites;
97 stats->st_election_cur_winner = rep->winner;
98 stats->st_election_priority = rep->w_priority;
99 stats->st_election_gen = rep
438 REP *rep; local
[all...]
H A Drep_lease.c34 REP *rep; local
42 rep = db_rep->region;
52 timespecadd(&mytime, &rep->lease_duration);
58 if (IN_ELECTION(rep)) {
62 if (timespeccmp(&mytime, &rep->grant_expire, >))
63 rep->grant_expire = mytime;
77 (void)__rep_send_message(env, rep->master_id, REP_LEASE_GRANT,
95 REP *rep; local
99 rep = db_rep->region;
106 return (timespeccmp(&mytime, &rep
124 REP *rep; local
167 REP *rep; local
272 REP *rep; local
377 REP *rep; local
424 REP *rep; local
465 REP *rep; local
[all...]
H A Drep_util.c68 REP *rep; local
76 rep = db_rep->region;
88 MUTEX_LOCK(env, rep->mtx_clientdb);
90 MUTEX_UNLOCK(env, rep->mtx_clientdb);
92 MUTEX_LOCK(env, rep->mtx_clientdb);
105 STAT(rep->stat.st_bulk_overflows++);
110 MUTEX_UNLOCK(env, rep->mtx_clientdb);
124 STAT(rep->stat.st_bulk_fills++);
126 MUTEX_UNLOCK(env, rep->mtx_clientdb);
145 MUTEX_UNLOCK(env, rep
216 REP *rep; local
331 REP *rep; local
[all...]
H A Drep_backup.c527 REP *rep; local
532 rep = db_rep->region;
551 if (F_ISSET(rep, REP_F_MASTER))
588 REP *rep; local
599 rep = db_rep->region;
607 use_bulk = FLD_ISSET(rep->config, REP_C_BULK);
653 repth.gbytes = rep->gbytes;
654 repth.bytes = rep->bytes;
706 if (F_ISSET(rep, REP_F_MASTER)) {
836 REP *rep; local
1328 REP *rep; local
1479 REP *rep; local
[all...]
H A Drep_log.c33 REP *rep; local
45 rep = db_rep->region;
61 use_bulk = FLD_ISSET(rep->config, REP_C_BULK);
68 repth.gbytes = rep->gbytes;
69 repth.bytes = rep->bytes;
81 if (ret == DB_NOTFOUND && F_ISSET(rep, REP_F_MASTER))
114 ret = __rep_chk_newfile(env, logc, rep, rp, eid);
123 if (ret == DB_NOTFOUND && F_ISSET(rep, REP_F_MASTER)) {
147 if (rep->version < DB_REPVERSION_47)
169 (F_ISSET(rep, REP_F_MASTE
228 REP *rep; local
334 REP *rep; local
375 REP *rep; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/md/
H A Dunroll.pl13 $rep = $n;
15 $rep = 1;
17 for ( $i = 0 ; $i < $rep ; $i++ ) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/x86_64/lib/
H A Diomap_copy.S27 rep movsd
H A Drwlock.S13 1: rep
29 1: rep
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-arm/arch-omap/
H A Dkeypad.h18 unsigned int rep:1; member in struct:omap_kp_platform_data
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/examples/hello-librep/
H A DMakefile.am19 rep --batch --no-rc -l compiler -f compile-batch $<
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/wrepld/
H A Dprocess.c117 r->rep.msg_type=MESSAGE_REP_ADD_VERSION_REQUEST;
126 r->rep.msg_type=MESSAGE_REP_UPDATE_NOTIFY_REQUEST;
127 r->rep.un_rq.partner_count=partner_count;
129 r->rep.un_rq.wins_owner=(WINS_OWNER *)talloc(mem_ctx, partner_count*sizeof(WINS_OWNER));
130 if (r->rep.un_rq.wins_owner==NULL) {
137 r->rep.un_rq.wins_owner[i]=global_wins_table[0][i];
241 r->rep.avmt_rep.wins_owner=(WINS_OWNER *)talloc(mem_ctx, partner_count*sizeof(WINS_OWNER));
242 if (r->rep.avmt_rep.wins_owner==NULL) {
251 r->rep.avmt_rep.wins_owner[i]=global_wins_table[0][i];
254 r->rep
[all...]
H A Dparser.c245 static void decode_replicate(struct BUFFER *inbuf, REPLICATE *rep) argument
250 rep->msg_type = RIVAL(inbuf->buffer, inbuf->offset);
254 switch (rep->msg_type) {
259 decode_add_version_number_map_table_reply(inbuf, &rep->avmt_rep);
263 decode_send_entries_request(inbuf, &rep->se_rq);
267 decode_send_entries_reply(inbuf, &rep->se_rp);
271 decode_update_notify_request(inbuf, &rep->un_rq);
274 DEBUG(0,("decode_replicate: unknown message type:%d\n", rep->msg_type));
350 decode_replicate(inbuf, &q->rep);
504 static void encode_replicate(struct BUFFER *outbuf, REPLICATE *rep) argument
668 dump_replicate(REPLICATE *rep) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/hw/amso1100/
H A Dc2_wr.h330 struct c2wr_rnic_open_rep rep; member in union:c2wr_rnic_open
376 struct c2wr_rnic_query_rep rep; member in union:c2wr_rnic_query
399 struct c2wr_rnic_getconfig_rep rep; member in union:c2wr_rnic_getconfig
419 struct c2wr_rnic_setconfig_rep rep; member in union:c2wr_rnic_setconfig
436 struct c2wr_rnic_close_rep rep; member in union:c2wr_rnic_close
461 struct c2wr_cq_create_rep rep; member in union:c2wr_cq_create
478 struct c2wr_cq_modify_rep rep; member in union:c2wr_cq_modify
493 struct c2wr_cq_destroy_rep rep; member in union:c2wr_cq_destroy
511 struct c2wr_pd_alloc_rep rep; member in union:c2wr_pd_alloc
526 struct c2wr_pd_dealloc_rep rep; member in union:c2wr_pd_dealloc
555 struct c2wr_srq_create_rep rep; member in union:c2wr_srq_create
570 struct c2wr_srq_destroy_rep rep; member in union:c2wr_srq_destroy
627 struct c2wr_qp_create_rep rep; member in union:c2wr_qp_create
661 struct c2wr_qp_query_rep rep; member in union:c2wr_qp_query
694 struct c2wr_qp_modify_rep rep; member in union:c2wr_qp_modify
709 struct c2wr_qp_destroy_rep rep; member in union:c2wr_qp_destroy
757 struct c2wr_nsmr_stag_alloc_rep rep; member in union:c2wr_nsmr_stag_alloc
785 struct c2wr_nsmr_register_rep rep; member in union:c2wr_nsmr_register
804 struct c2wr_nsmr_pbl_rep rep; member in union:c2wr_nsmr_pbl
824 struct c2wr_mr_query_rep rep; member in union:c2wr_mr_query
843 struct c2wr_mw_query_rep rep; member in union:c2wr_mw_query
859 struct c2wr_stag_dealloc_rep rep; member in union:c2wr_stag_dealloc
889 struct c2wr_nsmr_reregister_rep rep; member in union:c2wr_nsmr_reregister
910 struct c2wr_smr_register_rep rep; member in union:c2wr_smr_register
926 struct c2wr_mw_alloc_rep rep; member in union:c2wr_mw_alloc
994 struct c2wr_ce rep; member in union:c2wr_send
1007 struct c2wr_ce rep; member in union:c2wr_rdma_write
1021 struct c2wr_ce rep; member in union:c2wr_rdma_read
1037 struct c2wr_ce rep; member in union:c2wr_mw_bind
1056 struct c2wr_ce rep; member in union:c2wr_nsmr_fastreg
1068 struct c2wr_ce rep; member in union:c2wr_stag_invalidate
1095 struct c2wr_ce rep; member in union:c2wr_recv
1175 struct c2wr_init_rep rep; member in union:c2wr_init
1195 struct c2wr_flash_init_rep rep; member in union:c2wr_flash_init
1211 struct c2wr_flash_rep rep; member in union:c2wr_flash
1228 struct c2wr_buf_alloc_rep rep; member in union:c2wr_buf_alloc
1244 struct c2wr_ce rep; member in union:c2wr_buf_free
1263 struct c2wr_flash_write_rep rep; member in union:c2wr_flash_write
1294 struct c2wr_ep_listen_create_rep rep; member in union:c2wr_ep_listen_create
1309 struct c2wr_ep_listen_destroy_rep rep; member in union:c2wr_ep_listen_destroy
1329 struct c2wr_ep_query_rep rep; member in union:c2wr_ep_query
1357 struct c2wr_cr_accept_rep rep; member in union:c2wr_cr_accept
1381 struct c2wr_cr_reject_rep rep; member in union:c2wr_cr_reject
1422 struct c2wr_console_rep rep; member in union:c2wr_console
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/IGMP-PROXY/src/
H A Digmprt.c44 igmp_rep_t *rep; local
57 for (rep=gp->igmpg_members;rep;rep=(igmp_rep_t *)rep->igmpr_next)
59 printf("%17s\n",inet_ntoa(rep->igmpr_addr));
61 printf("%70s\n",inet_ntoa(rep->igmpr_addr));
100 igmp_rep_t* rep; local
102 if (rep = (igmp_rep_t*) malloc(sizeof(*rep))) {
115 igmp_rep_cleanup( igmp_group_t *gp, igmp_rep_t * rep) argument
142 igmp_rep_print( igmp_rep_t* rep) argument
158 igmp_rep_t *rep; local
177 igmp_rep_t* rep; local
197 igmp_rep_t* rep; local
363 igmp_rep_t *rep; local
628 igmp_rep_t *rep; local
692 igmp_rep_t *rep; local
1606 igmp_rep_t *rep; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/tests/
H A Dlang-librep12 (require 'rep.i18n.gettext)
76 # Test for presence of rep version 0.15.3 or newer.
77 (rep --version) >/dev/null 2>/dev/null \
78 || { echo "Skipping test: rep not found"; rm -fr $tmpfiles; exit 77; }
79 case `rep --version | sed -e 's/^[^0-9]*//'` in
81 echo "Skipping test: rep version too old"; rm -fr $tmpfiles; exit 77;;
126 LANGUAGE= LC_ALL=$LOCALE_FR rep --no-rc --batch prog.jl > prog.out || exit 1
130 LANGUAGE= LC_ALL=$LOCALE_FR_UTF8 rep --no-rc --batch prog.jl > prog.out || exit 1
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/tc/
H A Dlk201.c202 static int write_kbd_rate(struct kbd_repeat *rep) argument
207 delay = rep->delay / 5;
208 rate = rep->rate;
223 static int lk201_kbd_rate(struct kbd_repeat *rep) argument
225 if (rep == NULL)
228 parse_kbd_rate(rep);
230 if (write_kbd_rate(rep)) {
231 memcpy(rep, &kbdrate, sizeof(struct kbd_repeat));
235 memcpy(&kbdrate, rep, sizeof(struct kbd_repeat));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/minizip/
H A Dminizip.c277 char rep=0; local
288 rep = answer[0] ;
289 if ((rep>='a') && (rep<='z'))
290 rep -= 0x20;
292 while ((rep!='Y') && (rep!='N') && (rep!='A'));
293 if (rep=='N')
295 if (rep
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/minizip/
H A Dminizip.c277 char rep=0; local
288 rep = answer[0] ;
289 if ((rep>='a') && (rep<='z'))
290 rep -= 0x20;
292 while ((rep!='Y') && (rep!='N') && (rep!='A'));
293 if (rep=='N')
295 if (rep
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/repmgr/
H A Drepmgr_msg.c65 REP *rep; local
111 rep = db_rep->region;
114 rep->priority == 0))
345 REP *rep; local
348 rep = db_rep->region;
350 db_rep->generation = rep->gen;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/
H A Dkeyboard.c134 static char rep; /* flag telling character repeat */ variable
248 int kbd_rate(struct kbd_repeat *rep) argument
259 if (rep->delay > 0)
260 input_inject_event(handle, EV_REP, REP_DELAY, rep->delay);
261 if (rep->period > 0)
262 input_inject_event(handle, EV_REP, REP_PERIOD, rep->period);
263 d = dev->rep[REP_DELAY];
264 p = dev->rep[REP_PERIOD];
267 rep->delay = d;
268 rep
[all...]

Completed in 217 milliseconds

123456