Searched refs:PAGE (Results 1 - 25 of 55) sorted by relevance

123

/osnet-11/usr/src/lib/krb5/plugins/kdb/db2/libdb2/btree/
H A Dbt_page.c62 PAGE *h;
85 PAGE *
90 PAGE *h;
H A Dbt_split.c51 static int bt_broot __P((BTREE *, PAGE *, PAGE *, PAGE *));
52 static PAGE *bt_page
53 __P((BTREE *, PAGE *, PAGE **, PAGE **, indx_t *, size_t));
55 static PAGE *bt_psplit
56 __P((BTREE *, PAGE *, PAGE *, PAG
[all...]
H A Dextern.h81 int __bt_dleaf __P((BTREE *, const DBT *, PAGE *, u_int));
83 int __bt_free __P((BTREE *, PAGE *));
85 PAGE *__bt_new __P((BTREE *, db_pgno_t *));
94 int __bt_split __P((BTREE *, PAGE *,
104 int __bt_dpage __P((DB *, PAGE *));
105 int __bt_dmpage __P((PAGE *));
H A Dbt_conv.c48 static void mswap __P((PAGE *));
66 PAGE *h;
134 PAGE *h;
204 PAGE *pg;
H A Dbt_delete.c51 static int __bt_curdel __P((BTREE *, const DBT *, PAGE *, u_int));
52 static int __bt_pdelete __P((BTREE *, PAGE *));
53 static int __bt_relink __P((BTREE *, PAGE *));
54 static int __bt_stkacq __P((BTREE *, PAGE **, CURSOR *));
70 PAGE *h;
137 * hp: pointer to current, pinned PAGE pointer
146 PAGE **hp;
152 PAGE *h;
296 PAGE *h;
380 PAGE *
[all...]
H A Dbt_search.c48 static int __bt_snext __P((BTREE *, PAGE *, const DBT *, int *));
49 static int __bt_sprev __P((BTREE *, PAGE *, const DBT *, int *));
71 PAGE *h;
153 PAGE *h;
233 PAGE *h;
H A Dbt_overflow.c56 * nextpg field of the PAGE header.
87 PAGE *h;
144 PAGE *h, *last;
197 PAGE *h;
H A Dbt_debug.c94 PAGE *h;
133 * h: pointer to the PAGE
137 PAGE *h;
180 PAGE *h;
195 * h: pointer to the PAGE
200 PAGE *h;
311 PAGE *h;
/osnet-11/usr/src/cmd/sendmail/db/include/
H A Ddb_ext.h72 PAGE **, db_indx_t *, int (*)(DBC *, u_int32_t, PAGE **)));
74 PAGE **, u_int32_t, int (*)(DBC *, PAGE *)));
75 int __db_dend __P((DBC *, db_pgno_t, PAGE **));
76 int __db_ditem __P((DBC *, PAGE *, u_int32_t, u_int32_t));
78 __P((DBC *, PAGE *, u_int32_t, u_int32_t, DBT *, DBT *));
79 int __db_relink __P((DBC *, u_int32_t, PAGE *, PAGE **, int));
80 int __db_ddup __P((DBC *, db_pgno_t, int (*)(DBC *, PAGE *)));
[all...]
H A Dhash_ext.h74 void __ham_move_offpage __P((DBC *, PAGE *, u_int32_t, db_pgno_t));
88 void __ham_putitem __P((PAGE *p, const DBT *, int));
90 __P((PAGE *p, u_int32_t, u_int32_t, const DBT *, const DBT *));
93 void __ham_onpage_replace __P((PAGE *, size_t, u_int32_t, int32_t,
97 void __ham_copy_item __P((size_t, PAGE *, u_int32_t, PAGE *));
98 int __ham_add_ovflpage __P((DBC *, PAGE *, int, PAGE **));
99 int __ham_new_page __P((DB *, u_int32_t, u_int32_t, PAGE **));
100 int __ham_del_page __P((DBC *, PAGE *));
[all...]
H A Dbtree_ext.h5 PAGE *, u_int32_t, int (*)(const DBT *, const DBT *)));
10 int __bam_mswap __P((PAGE *));
22 int __bam_ditem __P((DBC *, PAGE *, u_int32_t));
23 int __bam_adjindx __P((DBC *, PAGE *, u_int32_t, u_int32_t, int));
30 int __bam_new __P((DBC *, u_int32_t, PAGE **));
32 int __bam_free __P((DBC *, PAGE *));
37 PAGE **, db_indx_t *, DBT *, DBT *, u_int32_t, u_int32_t));
38 int __bam_ritem __P((DBC *, PAGE *, u_int32_t, DBT *));
65 db_recno_t __bam_total __P((PAGE *));
71 int __bam_copy __P((DB *, PAGE *, PAG
[all...]
H A Ddb_page.h41 BTREE METADATA PAGE LAYOUT
70 HASH METADATA PAGE LAYOUT
105 MAIN PAGE LAYOUT
125 * sizeof(PAGE) == 26 bytes, and the following indices are guaranteed to be
161 } PAGE; typedef in typeref:struct:_db_page
164 #define LSN(p) (((PAGE *)p)->lsn)
165 #define PGNO(p) (((PAGE *)p)->pgno)
166 #define PREV_PGNO(p) (((PAGE *)p)->prev_pgno)
167 #define NEXT_PGNO(p) (((PAGE *)p)->next_pgno)
168 #define NUM_ENT(p) (((PAGE *)
[all...]
H A Dhash.h56 PAGE *split_buf; /* Temporary buffer for splits. */
63 PAGE *pagep; /* The current page. */
66 PAGE *dpagep; /* Duplicate page pointer. */
118 ((R) = __ham_get_page(D, 0, (PAGE **)&((I)->hdr))) != 0 && \
127 (void)__ham_put_page(D, (PAGE *)(I)->hdr, \
/osnet-11/usr/src/cmd/sendmail/db/btree/
H A Dbt_page.c68 * PUBLIC: int __bam_new __P((DBC *, u_int32_t, PAGE **));
74 PAGE **pagepp;
79 PAGE *h;
91 if ((ret = memp_fget(dbp->mpf, &pgno, 0, (PAGE **)&meta)) != 0)
115 (void)memp_fput(dbp->mpf, (PAGE *)meta, DB_MPOOL_DIRTY);
149 * PUBLIC: int __bam_free __P((DBC *, PAGE *));
154 PAGE *h;
176 if ((ret = memp_fget(dbp->mpf, &pgno, 0, (PAGE **)&meta)) != 0) {
189 (void)memp_fput(dbp->mpf, (PAGE *)meta, 0);
215 ret = memp_fput(dbp->mpf, (PAGE *)met
[all...]
H A Dbt_split.c62 static int __bam_broot __P((DBC *, PAGE *, PAGE *, PAGE *));
64 static int __bam_pinsert __P((DBC *, EPG *, PAGE *, PAGE *));
65 static int __bam_psplit __P((DBC *, EPG *, PAGE *, PAGE *, db_indx_t *));
67 static int __ram_root __P((DBC *, PAGE *, PAGE *, PAGE *));
[all...]
H A Dbt_put.c65 static int __bam_ndup __P((DBC *, PAGE *, u_int32_t));
66 static int __bam_ovput __P((DBC *, PAGE *, u_int32_t, DBT *));
68 DBT *, PAGE *, u_int32_t, u_int32_t, u_int32_t));
69 static u_int32_t __bam_partsize __P((DBT *, PAGE *, u_int32_t));
76 * PUBLIC: PAGE **, db_indx_t *, DBT *, DBT *, u_int32_t, u_int32_t));
81 PAGE **hp;
90 PAGE *h;
374 PAGE *h;
437 PAGE *h;
460 * PUBLIC: int __bam_ritem __P((DBC *, PAGE *, u_int32_
[all...]
H A Dbt_conv.c71 * PUBLIC: int __bam_mswap __P((PAGE *));
75 PAGE *pg;
H A Dbt_open.c214 PAGE *root;
231 memp_fget(dbp->mpf, &pgno, DB_MPOOL_CREATE, (PAGE **)&meta)) != 0) {
245 (void)memp_fput(dbp->mpf, (PAGE *)meta, 0);
286 if ((ret = memp_fput(dbp->mpf, (PAGE *)meta, DB_MPOOL_DIRTY)) != 0)
H A Dbt_rsearch.c75 PAGE *h;
289 PAGE *h;
334 PAGE *h;
358 * PUBLIC: db_recno_t __bam_total __P((PAGE *));
362 PAGE *h;
/osnet-11/usr/src/cmd/sendmail/db/db/
H A Ddb_dup.c27 PAGE **, db_indx_t *, int (*)(DBC *, u_int32_t, PAGE **)));
29 PAGE **, db_indx_t *, u_int32_t, int (*)(DBC *, u_int32_t, PAGE **)));
36 * PUBLIC: PAGE **, db_indx_t *, int (*)(DBC *, u_int32_t, PAGE **)));
42 PAGE **pp;
44 int (*newfunc) __P((DBC *, u_int32_t, PAGE **));
48 PAGE *pagep;
109 * PUBLIC: PAGE **, u_int32_
[all...]
H A Ddb_overflow.c90 PAGE *h;
164 * PUBLIC: int (*)(DBC *, u_int32_t, PAGE **)));
171 int (*newfunc) __P((DBC *, u_int32_t, PAGE **));
174 PAGE *pagep, *lastp;
262 PAGE *h;
286 * PUBLIC: int __db_doff __P((DBC *, db_pgno_t, int (*)(DBC *, PAGE *)));
292 int (*freefunc) __P((DBC *, PAGE *));
295 PAGE *pagep;
355 PAGE *pagep;
/osnet-11/usr/src/lib/krb5/plugins/kdb/db2/libdb2/recno/
H A Drec_delete.c125 PAGE *h;
156 PAGE *h;
H A Dextern.h58 int __rec_dleaf __P((BTREE *, PAGE *, u_int32_t));
/osnet-11/usr/src/cmd/sendmail/db/hash/
H A Dhash_conv.c47 tpgno = PGNO((PAGE *)pp);
H A Dhash_rec.c87 PAGE *pagep;
160 if ((ret = __ham_put_page(file_dbp, (PAGE *)pagep, 1)) != 0)
163 if ((ret = __ham_put_page(file_dbp, (PAGE *)pagep, 0)) != 0)
196 PAGE *pagep;
251 if ((ret = __ham_put_page(file_dbp, (PAGE *)pagep, 0)) != 0)
255 if ((ret = __ham_put_page(file_dbp, (PAGE *)pagep, 1)) != 0)
296 __ham_put_page(file_dbp, (PAGE *)pagep, 0)) != 0)
301 __ham_put_page(file_dbp, (PAGE *)pagep, 1)) != 0)
342 __ham_put_page(file_dbp, (PAGE *)pagep, 0)) != 0)
347 __ham_put_page(file_dbp, (PAGE *)page
[all...]

Completed in 48 milliseconds

123