Searched refs:infop (Results 1 - 25 of 38) sorted by relevance

12

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/common/
H A Dcrypto_stub.c29 REGINFO *infop; local
32 infop = env->reginfo;
33 renv = infop->primary;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/env/
H A Denv_region.c36 REGINFO *infop; local
53 if ((ret = __os_calloc(env, 1, sizeof(REGINFO), &infop)) != 0)
55 infop->env = env;
56 infop->type = REGION_TYPE_ENV;
57 infop->id = REGION_ID_ENV;
58 infop->flags = REGION_JOIN_OK;
60 F_SET(infop, REGION_CREATE_OK);
64 ret = __os_strdup(env, "process-private", &infop->name);
68 __db_appname(env, DB_APP_NONE, buf, 0, NULL, &infop->name);
101 if ((ret = __os_open(env, infop
546 REGINFO *infop; local
576 REGINFO *infop; local
650 REGINFO *infop; local
684 REGINFO *infop; local
723 REGINFO *infop; local
795 REGINFO *infop, reginfo; local
[all...]
H A Denv_failchk.c98 REGINFO *infop; local
103 infop = env->reginfo;
104 renv = infop->primary;
124 __env_alloc(infop, sizeof(THREAD_INFO), &thread)) != 0) {
130 renv->thread_off = R_OFFSET(infop, thread);
136 if ((ret = __env_alloc(infop,
139 thread->thr_hashoff = R_OFFSET(infop, htab);
143 thread = R_ADDR(infop, renv->thread_off);
144 htab = R_ADDR(infop, thread->thr_hashoff);
166 REGINFO *infop; local
206 REGINFO *infop; local
293 REGINFO *infop; local
[all...]
H A Denv_alloc.c116 __env_alloc_init(infop, size)
117 REGINFO *infop;
125 env = infop->env;
134 head = infop->addr;
197 __env_alloc(infop, len, retp)
198 REGINFO *infop;
213 env = infop->env;
226 if (infop->allocated >= infop->max_alloc)
239 infop
[all...]
H A Denv_stat.c153 REGINFO *infop; local
156 infop = env->reginfo;
157 renv = infop->primary;
401 REGINFO *infop; local
406 infop = env->reginfo;
407 renv = infop->primary;
462 __db_print_reginfo(env, infop, "Primary", flags);
465 for (rp = R_ADDR(infop, renv->region_off),
524 REGINFO *infop; local
540 infop
[all...]
H A Denv_open.c183 REGINFO *infop; local
341 infop = env->reginfo;
343 __env_thread_init(env, F_ISSET(infop, REGION_CREATE) ? 1 : 0)) != 0)
476 F_ISSET(infop, REGION_CREATE) &&
502 infop = env->reginfo;
503 if (infop != NULL && F_ISSET(infop, REGION_CREATE)) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/os_windows/
H A Dos_map.c22 __os_attach(env, infop, rp)
24 REGINFO *infop;
46 if ((ret = __os_open(env, infop->name, 0, DB_OSO_REGION |
47 (F_ISSET(infop, REGION_CREATE_OK) ? DB_OSO_CREATE : 0),
49 __db_err(env, ret, "%s", infop->name);
59 ret = __os_map(env, infop->name, infop, fhp, rp->size,
60 1, F_ISSET(env, ENV_SYSTEM_MEM), 0, &infop->addr);
74 __os_detach(env, infop, destroy)
76 REGINFO *infop;
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/os_vxworks/
H A Dos_vx_map.c58 __os_attach(env, infop, rp)
60 REGINFO *infop;
74 ret = __os_segdata_find_byname(env, infop->name, infop, rp);
81 if (!F_ISSET(infop, REGION_CREATE)) {
84 infop->name);
111 dbenv->shm_key + (infop->id - 1));
116 ret = __os_segdata_allocate(env, infop->name, infop, rp);
127 __os_detach(env, infop, destro
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/os/
H A Dos_map.c40 __os_attach(env, infop, rp)
42 REGINFO *infop;
61 create_ok = F_ISSET(infop, REGION_CREATE) ? 1 : 0;
63 (dbenv, infop->name, rp->size, &create_ok, &infop->addr);
65 F_SET(infop, REGION_CREATE);
67 F_CLR(infop, REGION_CREATE);
101 if (F_ISSET(infop, REGION_CREATE)) {
122 ((u_long)dbenv->shm_key + (infop->id - 1));
157 if ((infop
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/mp/
H A Dmp_alloc.c25 __memp_alloc(dbmp, infop, mfp, len, offsetp, retp)
27 REGINFO *infop;
48 c_mp = infop->primary;
49 dbht = R_ADDR(infop, c_mp->htab);
72 MPOOL_REGION_LOCK(env, infop);
89 alloc: if ((ret = __env_alloc(infop, len, &p)) == 0) {
92 MPOOL_REGION_UNLOCK(env, infop);
100 *offsetp = R_OFFSET(infop, p);
124 MPOOL_REGION_UNLOCK(env, infop);
192 MPOOL_REGION_UNLOCK(env, infop);
[all...]
H A Dmp_region.c185 REGINFO *infop; local
193 infop = &dbmp->reginfo[reginfo_off];
194 if ((ret = __env_alloc(infop, sizeof(MPOOL), &infop->primary)) != 0)
196 infop->rp->primary = R_OFFSET(infop, infop->primary);
197 mp = infop->primary;
216 if ((ret = __env_alloc(infop,
219 mp->ftab = R_OFFSET(infop, hta
457 REGINFO *infop; local
[all...]
H A Dmp_mvcc.c96 REGINFO *infop; local
115 MP_GET_BUCKET(env, mfp, pgno, &infop, hp, ret);
148 __memp_bh_freeze(dbmp, infop, hp, bhp, need_frozenp)
150 REGINFO *infop;
168 c_mp = infop->primary;
185 MPOOL_REGION_LOCK(env, infop);
194 if (__env_alloc(infop,
202 MPOOL_REGION_UNLOCK(env, infop);
220 ncache = (u_int32_t)(infop - dbmp->reginfo);
221 nbucket = (u_int32_t)(hp - (DB_MPOOL_HASH *)R_ADDR(infop, c_m
[all...]
H A Dmp_fput.c75 REGINFO *infop, *reginfo; local
123 MP_GET_BUCKET(env, mfp, bhp->pgno, &infop, hp, ret);
126 c_mp = infop->primary;
146 region = (int)(infop - dbmp->reginfo);
147 b_ref = R_OFFSET(infop, bhp);
267 __memp_reset_lru(env, infop)
269 REGINFO *infop;
276 c_mp = infop->primary;
284 for (hp = R_ADDR(infop, c_mp->htab),
H A Dmp_resize.c38 REGINFO *infop; local
64 infop = *infopp = &dbmp->reginfo[region];
65 c_mp = infop->primary;
68 if (c_mp != NULL && regids[region] == infop->id)
76 hp = R_ADDR(infop, c_mp->htab);
84 if (regids[region] != infop->id) {
342 REGINFO *infop; local
354 infop = &dbmp->reginfo[mp->nreg];
355 infop->env = env;
356 infop
402 REGINFO *infop; local
[all...]
H A Dmp_fget.c119 REGINFO *infop, *t_infop, *reginfo; local
128 COMPQUIET(infop, NULL);
237 MP_GET_BUCKET(env, mfp, *pgnoaddr, &infop, hp, ret);
240 c_mp = infop->primary;
338 MPOOL_REGION_LOCK(env, infop);
340 __memp_free(infop, mfp, alloc_bhp);
346 MPOOL_REGION_UNLOCK(env, infop);
443 dbmp, infop, hp, bhp, BH_FREE_FREEMEM));
491 infop, hp, oldest_bhp,
496 infop, h
[all...]
H A Dmp_fset.c39 REGINFO *infop; local
97 MP_GET_BUCKET(env, dbmfp->mfp, pgno, &infop, hp, ret);
H A Dmp_bh.c524 __memp_bhfree(dbmp, infop, hp, bhp, flags)
526 REGINFO *infop;
613 MPOOL_REGION_LOCK(env, infop);
615 __memp_free(infop, mfp, bhp);
616 c_mp = infop->primary;
619 MPOOL_REGION_UNLOCK(env, infop);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/kernel/
H A Dexit.c1110 struct siginfo __user *infop,
1117 retval = put_user(SIGCHLD, &infop->si_signo);
1119 retval = put_user(0, &infop->si_errno);
1121 retval = put_user((short)why, &infop->si_code);
1123 retval = put_user(pid, &infop->si_pid);
1125 retval = put_user(uid, &infop->si_uid);
1127 retval = put_user(status, &infop->si_status);
1140 struct siginfo __user *infop,
1167 status, infop, ru);
1247 if (!retval && infop)
1108 wait_noreap_copyout(struct task_struct *p, pid_t pid, uid_t uid, int why, int status, struct siginfo __user *infop, struct rusage __user *rusagep) argument
1139 wait_task_zombie(struct task_struct *p, int noreap, struct siginfo __user *infop, int __user *stat_addr, struct rusage __user *ru) argument
1307 wait_task_stopped(struct task_struct *p, int delayed_group_leader, int noreap, struct siginfo __user *infop, int __user *stat_addr, struct rusage __user *ru) argument
1422 wait_task_continued(struct task_struct *p, int noreap, struct siginfo __user *infop, int __user *stat_addr, struct rusage __user *ru) argument
1485 do_wait(pid_t pid, int options, struct siginfo __user *infop, int __user *stat_addr, struct rusage __user *ru) argument
1651 sys_waitid(int which, pid_t pid, struct siginfo __user *infop, int options, struct rusage __user *ru) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/rep/
H A Drep_lease.c123 REGINFO *infop; local
131 infop = env->reginfo;
132 renv = infop->primary;
134 if ((ret = __env_alloc(infop, (size_t)nsites * sizeof(REP_LEASE_ENTRY),
137 __env_alloc_free(infop,
138 R_ADDR(infop, rep->lease_off));
139 rep->lease_off = R_OFFSET(infop, lease);
142 table = R_ADDR(infop, rep->lease_off);
232 REGINFO *infop; local
236 infop
271 REGINFO *infop; local
423 REGINFO *infop; local
[all...]
H A Drep_region.c31 REGINFO *infop; local
36 infop = env->reginfo;
37 renv = infop->primary;
42 if ((ret = __env_alloc(infop, sizeof(REP), &rep)) != 0)
105 renv->rep_off = R_OFFSET(infop, rep);
110 rep = R_ADDR(infop, renv->rep_off);
129 REGINFO *infop; local
135 infop = env->reginfo;
136 renv = infop->primary;
170 __env_alloc_free(infop, R_ADD
[all...]
H A Drep_util.c583 REGINFO *infop;
835 infop = env->reginfo;
836 renv = infop->primary;
909 REGINFO *infop;
913 infop = env->reginfo;
914 renv = infop->primary;
1057 REGINFO *infop;
1072 infop = env->reginfo;
1073 renv = infop->primary;
1081 if ((ret = __env_alloc(infop,
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/curl-7.23.1/lib/
H A Dmprintf.c1008 struct nsprintf *infop=(struct nsprintf *)data; local
1011 if(infop->length < infop->max) {
1013 infop->buffer[0] = outc; /* store */
1014 infop->buffer++; /* increase pointer */
1015 infop->length++; /* we are now one byte larger */
1056 struct asprintf *infop=(struct asprintf *)data; local
1059 if(!infop->buffer) {
1060 infop->buffer = malloc(32);
1061 if(!infop
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/dbreg/
H A Ddbreg.c97 REGINFO *infop; local
104 infop = &dblp->reginfo;
111 if ((ret = __env_alloc(infop, sizeof(FNAME), &fnp)) != 0)
118 if ((ret = __env_alloc(infop, len, &p)) != 0)
120 fnp->fname_off = R_OFFSET(infop, p);
127 if ((ret = __env_alloc(infop, len, &p)) != 0)
129 fnp->dname_off = R_OFFSET(infop, p);
205 REGINFO *infop; local
211 infop = &dblp->reginfo;
218 __env_alloc_free(infop, R_ADD
792 REGINFO *infop; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/txn/
H A Dtxn_chkpt.c103 REGINFO *infop; local
113 infop = env->reginfo;
114 renv = infop->primary;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/mutex/
H A Dmut_region.c330 __mutex_resource_return(env, infop)
332 REGINFO *infop;
358 mtxmgr->reginfo = *infop;

Completed in 204 milliseconds

12