Lines Matching refs:u_int32_t

65 typedef unsigned int u_int32_t;  typedef
78 typedef u_int32_t db_pgno_t; /* Page number type. */
82 typedef u_int32_t db_recno_t; /* Record number type. */
119 u_int32_t size; /* key/data length */
120 u_int32_t ulen; /* RO: length of user buffer. */
121 u_int32_t dlen; /* RO: get/put record length. */
122 u_int32_t doff; /* RO: get/put record offset. */
128 u_int32_t flags;
237 u_int32_t lk_modes; /* Number of lock modes in table. */
238 u_int32_t lk_max; /* Maximum number of locks. */
239 u_int32_t lk_detect; /* Deadlock detect on all conflicts. */
243 u_int32_t lg_max; /* Maximum file size. */
252 u_int32_t tx_max; /* Maximum number of transactions. */
275 u_int32_t flags; /* Flags. */
315 u_int32_t bt_maxkey; /* Maximum keys per page. */
316 u_int32_t bt_minkey; /* Minimum keys per page. */
323 u_int32_t h_ffactor; /* Fill factor. */
324 u_int32_t h_nelem; /* Number of elements. */
325 u_int32_t (*h_hash) /* Hash function. */
326 __P((const void *, u_int32_t));
331 u_int32_t re_len; /* Length for fixed-length records. */
342 u_int32_t flags;
437 u_int32_t log_fileid; /* Logging file id. */
444 u_int32_t (*h_hash) /* Hash function. */
445 __P((const void *, u_int32_t));
449 int (*close) __P((DB *, u_int32_t));
450 int (*cursor) __P((DB *, DB_TXN *, DBC **, u_int32_t));
451 int (*del) __P((DB *, DB_TXN *, DBT *, u_int32_t));
453 int (*get) __P((DB *, DB_TXN *, DBT *, DBT *, u_int32_t));
454 int (*join) __P((DB *, DBC **, u_int32_t, DBC **));
455 int (*put) __P((DB *, DB_TXN *, DBT *, DBT *, u_int32_t));
456 int (*stat) __P((DB *, void *, void *(*)(size_t), u_int32_t));
457 int (*sync) __P((DB *, u_int32_t));
476 u_int32_t flags;
500 u_int32_t lid; /* Default process' locker id. */
501 u_int32_t locker; /* Locker for this operation. */
512 int (*c_del) __P((DBC *, u_int32_t));
513 int (*c_get) __P((DBC *, DBT *, DBT *, u_int32_t));
514 int (*c_put) __P((DBC *, DBT *, DBT *, u_int32_t));
523 u_int32_t flags;
528 u_int32_t bt_flags; /* Open flags. */
529 u_int32_t bt_maxkey; /* Maxkey value. */
530 u_int32_t bt_minkey; /* Minkey value. */
531 u_int32_t bt_re_len; /* Fixed-length record length. */
532 u_int32_t bt_re_pad; /* Fixed-length record pad. */
533 u_int32_t bt_pagesize; /* Page size. */
534 u_int32_t bt_levels; /* Tree levels. */
535 u_int32_t bt_nrecs; /* Number of records. */
536 u_int32_t bt_int_pg; /* Internal pages. */
537 u_int32_t bt_leaf_pg; /* Leaf pages. */
538 u_int32_t bt_dup_pg; /* Duplicate pages. */
539 u_int32_t bt_over_pg; /* Overflow pages. */
540 u_int32_t bt_free; /* Pages on the free list. */
541 u_int32_t bt_int_pgfree; /* Bytes free in internal pages. */
542 u_int32_t bt_leaf_pgfree; /* Bytes free in leaf pages. */
543 u_int32_t bt_dup_pgfree; /* Bytes free in duplicate pages. */
544 u_int32_t bt_over_pgfree; /* Bytes free in overflow pages. */
545 u_int32_t bt_magic; /* Magic number. */
546 u_int32_t bt_version; /* Version number. */
551 u_int32_t hash_accesses; /* Number of accesses to this table. */
552 u_int32_t hash_collisions; /* Number of collisions on search. */
553 u_int32_t hash_expansions; /* Number of times we added a bucket. */
554 u_int32_t hash_overflows; /* Number of overflow pages. */
555 u_int32_t hash_bigpages; /* Number of big key/data pages. */
556 u_int32_t hash_dup; /* Number of dup pages. */
557 u_int32_t hash_free; /* Pages on the free list. */
558 u_int32_t hash_bfree; /* Bytes free on bucket pages. */
559 u_int32_t hash_dup_free; /* Bytes free on duplicate pages. */
560 u_int32_t hash_big_bfree; /* Bytes free on big item pages. */
561 u_int32_t hash_buckets; /* Number of hash buckets. */
562 u_int32_t hash_put; /* Number of puts. */
563 u_int32_t hash_deleted; /* Number of deletes. */
564 u_int32_t hash_get; /* Number of gets. */
565 u_int32_t hash_magic; /* Magic number. */
566 u_int32_t hash_version; /* Version number. */
567 u_int32_t hash_pagesize; /* Page size. */
568 u_int32_t hash_nrecs; /* Number of records. */
574 int db_appinit __P((const char *, char * const *, DB_ENV *, u_int32_t));
578 DBTYPE, u_int32_t, int, DB_ENV *, DB_INFO *, DB **));
582 DBTYPE, u_int32_t, int, DB_INFO *, DB **));
655 u_int32_t locker; /* Locker identity. */
673 u_int32_t st_magic; /* Lock file magic number. */
674 u_int32_t st_version; /* Lock file version number. */
675 u_int32_t st_maxlocks; /* Maximum number of locks in table. */
676 u_int32_t st_nmodes; /* Number of lock modes. */
677 u_int32_t st_numobjs; /* Number of objects. */
678 u_int32_t st_nlockers; /* Number of lockers. */
679 u_int32_t st_nconflicts; /* Number of lock conflicts. */
680 u_int32_t st_nrequests; /* Number of lock gets. */
681 u_int32_t st_nreleases; /* Number of lock puts. */
682 u_int32_t st_ndeadlocks; /* Number of lock deadlocks. */
683 u_int32_t st_region_wait; /* Region lock granted after wait. */
684 u_int32_t st_region_nowait; /* Region lock granted without wait. */
685 u_int32_t st_refcnt; /* Region reference count. */
686 u_int32_t st_regsize; /* Region size. */
693 int lock_detect __P((DB_LOCKTAB *, u_int32_t, u_int32_t));
695 u_int32_t, u_int32_t, const DBT *, db_lockmode_t, DB_LOCK *));
696 int lock_id __P((DB_LOCKTAB *, u_int32_t *));
698 u_int32_t, int, DB_ENV *, DB_LOCKTAB **));
701 DB_TXN *, u_int32_t, const DBT *, db_lockmode_t, DB_LOCK *));
705 u_int32_t, u_int32_t, DB_LOCKREQ *, int, DB_LOCKREQ **));
707 DB_TXN *, u_int32_t, DB_LOCKREQ *, int, DB_LOCKREQ **));
730 u_int32_t file; /* File ID. */
731 u_int32_t offset; /* File offset. */
736 u_int32_t st_magic; /* Log file magic number. */
737 u_int32_t st_version; /* Log file version number. */
739 u_int32_t st_lg_max; /* Maximum log file size. */
740 u_int32_t st_w_bytes; /* Bytes to log. */
741 u_int32_t st_w_mbytes; /* Megabytes to log. */
742 u_int32_t st_wc_bytes; /* Bytes to log since checkpoint. */
743 u_int32_t st_wc_mbytes; /* Megabytes to log since checkpoint. */
744 u_int32_t st_wcount; /* Total syncs to the log. */
745 u_int32_t st_scount; /* Total writes to the log. */
746 u_int32_t st_region_wait; /* Region lock granted after wait. */
747 u_int32_t st_region_nowait; /* Region lock granted without wait. */
748 u_int32_t st_cur_file; /* Current log file number. */
749 u_int32_t st_cur_offset; /* Current log file offset. */
750 u_int32_t st_refcnt; /* Region reference count. */
751 u_int32_t st_regsize; /* Region size. */
757 int log_archive __P((DB_LOG *, char **[], u_int32_t, void *(*)(size_t)));
762 int log_get __P((DB_LOG *, DB_LSN *, DBT *, u_int32_t));
763 int log_open __P((const char *, u_int32_t, int, DB_ENV *, DB_LOG **));
764 int log_put __P((DB_LOG *, DB_LSN *, const DBT *, u_int32_t));
765 int log_register __P((DB_LOG *, DB *, const char *, DBTYPE, u_int32_t *));
768 int log_unregister __P((DB_LOG *, u_int32_t));
789 u_int32_t st_cache_hit; /* Pages found in the cache. */
790 u_int32_t st_cache_miss; /* Pages not found in the cache. */
791 u_int32_t st_map; /* Pages from mapped files. */
792 u_int32_t st_page_create; /* Pages created in the cache. */
793 u_int32_t st_page_in; /* Pages read in. */
794 u_int32_t st_page_out; /* Pages written out. */
795 u_int32_t st_ro_evict; /* Clean pages forced from the cache. */
796 u_int32_t st_rw_evict; /* Dirty pages forced from the cache. */
797 u_int32_t st_hash_buckets; /* Number of hash buckets. */
798 u_int32_t st_hash_searches; /* Total hash chain searches. */
799 u_int32_t st_hash_longest; /* Longest hash chain searched. */
800 u_int32_t st_hash_examined; /* Total hash entries searched. */
801 u_int32_t st_page_clean; /* Clean pages. */
802 u_int32_t st_page_dirty; /* Dirty pages. */
803 u_int32_t st_page_trickle; /* Pages written by memp_trickle. */
804 u_int32_t st_region_wait; /* Region lock granted after wait. */
805 u_int32_t st_region_nowait; /* Region lock granted without wait. */
806 u_int32_t st_refcnt; /* Region reference count. */
807 u_int32_t st_regsize; /* Region size. */
816 u_int32_t clear_len; /* Cleared length on created pages. */
823 u_int32_t st_cache_hit; /* Pages found in the cache. */
824 u_int32_t st_cache_miss; /* Pages not found in the cache. */
825 u_int32_t st_map; /* Pages from mapped files. */
826 u_int32_t st_page_create; /* Pages created in the cache. */
827 u_int32_t st_page_in; /* Pages read in. */
828 u_int32_t st_page_out; /* Pages written out. */
836 int memp_fget __P((DB_MPOOLFILE *, db_pgno_t *, u_int32_t, void *));
838 u_int32_t, int, size_t, DB_MPOOL_FINFO *, DB_MPOOLFILE **));
839 int memp_fput __P((DB_MPOOLFILE *, void *, u_int32_t));
840 int memp_fset __P((DB_MPOOLFILE *, void *, u_int32_t));
842 int memp_open __P((const char *, u_int32_t, int, DB_ENV *, DB_MPOOL **));
872 u_int32_t txnid; /* Transaction ID */
880 u_int32_t st_last_txnid; /* last transaction id given out */
881 u_int32_t st_maxtxns; /* maximum number of active txns */
882 u_int32_t st_naborts; /* number of aborted transactions */
883 u_int32_t st_nbegins; /* number of begun transactions */
884 u_int32_t st_ncommits; /* number of committed transactions */
885 u_int32_t st_nactive; /* number of active transactions */
888 u_int32_t st_region_wait; /* Region lock granted after wait. */
889 u_int32_t st_region_nowait; /* Region lock granted without wait. */
890 u_int32_t st_refcnt; /* Region reference count. */
891 u_int32_t st_regsize; /* Region size. */
899 int txn_checkpoint __P((const DB_TXNMGR *, u_int32_t, u_int32_t));
902 u_int32_t txn_id __P((DB_TXN *));
903 int txn_open __P((const char *, u_int32_t, int, DB_ENV *, DB_TXNMGR **));