gmode 50 ext/dba/dba_db1.c int gmode; gmode 58 ext/dba/dba_db1.c gmode = 0; gmode 61 ext/dba/dba_db1.c gmode = O_RDONLY; gmode 64 ext/dba/dba_db1.c gmode = O_RDWR; gmode 67 ext/dba/dba_db1.c gmode = O_RDWR | O_CREAT; gmode 70 ext/dba/dba_db1.c gmode = O_RDWR | O_CREAT | O_TRUNC; gmode 76 ext/dba/dba_db1.c db = dbopen((char *)info->path, gmode, filemode, DB_HASH, NULL); gmode 51 ext/dba/dba_db2.c int gmode = 0; gmode 64 ext/dba/dba_db2.c gmode = info->mode == DBA_READER ? DB_RDONLY : gmode 70 ext/dba/dba_db2.c if (gmode == -1) { gmode 79 ext/dba/dba_db2.c if (db_open(info->path, type, gmode, filemode, NULL, NULL, &dbp)) { gmode 63 ext/dba/dba_db3.c int gmode = 0, err; gmode 76 ext/dba/dba_db3.c gmode = info->mode == DBA_READER ? DB_RDONLY : gmode 82 ext/dba/dba_db3.c if (gmode == -1) { gmode 92 ext/dba/dba_db3.c gmode |= DB_FCNTL_LOCKING; gmode 99 ext/dba/dba_db3.c (err=dbp->open(dbp, 0, info->path, NULL, type, gmode, filemode)) == 0) { gmode 101 ext/dba/dba_db3.c (err=dbp->open(dbp, info->path, NULL, type, gmode, filemode)) == 0) { gmode 77 ext/dba/dba_db4.c int gmode = 0, err; gmode 91 ext/dba/dba_db4.c gmode = info->mode == DBA_READER ? DB_RDONLY : gmode 105 ext/dba/dba_db4.c gmode = info->mode == DBA_READER ? DB_RDONLY : gmode 111 ext/dba/dba_db4.c if (gmode == -1) { gmode 116 ext/dba/dba_db4.c gmode |= DB_THREAD; gmode 128 ext/dba/dba_db4.c (err=dbp->open(dbp, 0, info->path, NULL, type, gmode, filemode)) == 0) { gmode 130 ext/dba/dba_db4.c (err=dbp->open(dbp, info->path, NULL, type, gmode, filemode)) == 0) { gmode 45 ext/dba/dba_gdbm.c int gmode = 0; gmode 48 ext/dba/dba_gdbm.c gmode = info->mode == DBA_READER ? GDBM_READER : gmode 53 ext/dba/dba_gdbm.c if(gmode == -1) gmode 61 ext/dba/dba_gdbm.c dbf = gdbm_open(info->path, 0, gmode, filemode, NULL); gmode 40 ext/dba/dba_ndbm.c int gmode = 0; gmode 46 ext/dba/dba_ndbm.c gmode = O_RDONLY; gmode 49 ext/dba/dba_ndbm.c gmode = O_RDWR; gmode 52 ext/dba/dba_ndbm.c gmode = O_RDWR | O_CREAT; gmode 55 ext/dba/dba_ndbm.c gmode = O_RDWR | O_CREAT | O_TRUNC; gmode 66 ext/dba/dba_ndbm.c dbf = dbm_open(info->path, gmode, filemode);