Searched refs:openinfo (Results 1 - 8 of 8) sorted by relevance

/macosx-10.10/Libc-1044.1.2/db/db/FreeBSD/
H A Ddb.c50 dbopen(fname, flags, mode, type, openinfo)
54 const void *openinfo;
66 mode, openinfo, flags & DB_FLAGS));
69 mode, openinfo, flags & DB_FLAGS));
72 mode, openinfo, flags & DB_FLAGS));
/macosx-10.10/Libc-1044.1.2/db/recno/FreeBSD/
H A Drec_open.c56 __rec_open(const char *fname, int flags, int mode, const RECNOINFO *openinfo, argument
72 if (openinfo) {
73 if (openinfo->flags & ~(R_FIXEDLEN | R_NOKEY | R_SNAPSHOT))
76 btopeninfo.cachesize = openinfo->cachesize;
79 btopeninfo.psize = openinfo->psize;
82 btopeninfo.lorder = openinfo->lorder;
83 dbp = __bt_open(openinfo->bfname,
97 if (openinfo) {
98 if (openinfo->flags & R_FIXEDLEN) {
100 t->bt_reclen = openinfo
[all...]
/macosx-10.10/adv_cmds-158/cap_mkdb/
H A Dcap_mkdb.c34 HASHINFO openinfo = { variable
85 DEFFILEMODE, DB_HASH, &openinfo)) == NULL)
/macosx-10.10/system_cmds-643.1.1/pwd_mkdb.tproj/
H A Dpwd_mkdb.c79 HASHINFO openinfo = { variable
195 /* Tweak openinfo values for large passwd files. */
197 openinfo.cachesize = MIN(st.st_size * 20, (off_t)12*1024*1024);
198 if (st.st_size / 128 > openinfo.nelem)
199 openinfo.nelem = st.st_size / 128;
229 O_RDWR, PERM_SECURE, DB_HASH, &openinfo);
232 O_RDWR|O_CREAT|O_EXCL, PERM_SECURE, DB_HASH, &openinfo);
250 &openinfo);
253 DB_HASH, &openinfo);
/macosx-10.10/Libc-1044.1.2/db/btree/FreeBSD/
H A Dbt_open.c90 __bt_open(const char *fname, int flags, int mode, const BTREEINFO *openinfo, int dflags) argument
111 if (openinfo) {
112 b = *openinfo;
/macosx-10.10/BerkeleyDB-21/db/db185/
H A Ddb185.c42 __db185_open(file, oflags, mode, type, openinfo)
46 const void *openinfo;
73 if ((bi = openinfo) != NULL) {
99 if ((hi = openinfo) != NULL) {
168 if ((ri = openinfo) != NULL) {
/macosx-10.10/BerkeleyDB-21/db/perl/DB_File/
H A DDB_File.xs950 void * openinfo = NULL ;
992 openinfo = (void*)info ;
1027 openinfo = (void*)info ;
1076 openinfo = (void *)info ;
1195 status = db_open(name, RETVAL->type, Flags, mode, NULL, (DB_INFO*)openinfo, &RETVAL->dbp) ;
1211 RETVAL->dbp = __db185_open(name, flags, mode, RETVAL->type, openinfo) ;
1213 RETVAL->dbp = dbopen(name, flags, mode, RETVAL->type, openinfo) ;
H A DDB_File.pm710 DBTYPE type, const void * openinfo)
715 I<openinfo> points to a data structure which allows tailoring of the
725 performs the function of both the C<type> and C<openinfo> parameters in
1360 C<"\n"> when the openinfo parameter in dbopen is NULL. If a non-NULL
1361 openinfo parameter is used at all, the value that happens to be in bval
1363 use of any of the options in the openinfo parameter. This documentation

Completed in 166 milliseconds