Home
last modified time | relevance | path

Searched refs:db (Results 1 – 25 of 177) sorted by last modified time

12345678

/dragonfly/sys/sys/
H A Dparam.h453 #define dbtoc(db) /* calculates devblks to pages */ \ argument
454 ((db + (ctodb(1) - 1)) >> (PAGE_SHIFT - DEV_BSHIFT))
456 #define ctodb(db) /* calculates pages to devblks */ \ argument
457 ((db) << (PAGE_SHIFT - DEV_BSHIFT))
/dragonfly/include/
H A DMakefile12 cpio.h ctype.h db.h dirent.h disktab.h \
/dragonfly/etc/rc.d/
H A Dnfsclient52 if [ -f /var/db/mounttab ]; then
H A Drandom36 entropy_dir=${entropy_dir:-/var/db/entropy}
H A Ddiskless73 if [ ! -d /var/db ]; then
74 mkdir /var/db
H A Dmountd41 rm -f /var/db/mountdtab
42 ( umask 022 ; > /var/db/mountdtab )
H A Dmixer60 /usr/sbin/mixer -f ${dev} -s > /var/db/${1}-state 2>/dev/null
/dragonfly/sys/bus/firewire/
H A Dfwohci.c893 db = &db_tr->db[0];
1341 db = db_tr->db;
1345 db[ldesc].db.desc.depend = db[0].db.desc.depend;
1353 db[0].db.desc.cmd,
1409 db = db_tr->db;
1511 db[ldesc].db.desc.depend = db[0].db.desc.depend =
2454 db = db_tr->db;
2463 FWOHCI_DMA_WRITE(db[1].db.immed[0], db[1].db.immed[0]);
2464 FWOHCI_DMA_WRITE(db[1].db.immed[1], db[1].db.immed[1]);
2474 db[0].db.desc.depend =
[all …]
/dragonfly/etc/mtree/
H A DBSD.usr.dist290 quiz.db
/dragonfly/sys/dev/raid/mpr/
H A Dmpr.c2034 uint32_t db; in mpr_periodic() local
2040 db = mpr_regread(sc, MPI2_DOORBELL_OFFSET); in mpr_periodic()
2041 if ((db & MPI2_IOC_STATE_MASK) == MPI2_IOC_STATE_FAULT) { in mpr_periodic()
2042 if ((db & MPI2_DOORBELL_FAULT_CODE_MASK) == in mpr_periodic()
2046 mpr_dprint(sc, MPR_FAULT, "IOC Fault 0x%08x, Resetting\n", db); in mpr_periodic()
/dragonfly/sys/dev/raid/mps/
H A Dmps.c288 uint32_t db; in mps_reinit() local
339 db = mps_regread(sc, MPI2_DOORBELL_OFFSET); in mps_reinit()
340 mps_printf(sc, "%s doorbell 0x%08x\n", __func__, db); in mps_reinit()
1239 uint32_t db; in mps_periodic() local
1248 db = mps_regread(sc, MPI2_DOORBELL_OFFSET); in mps_periodic()
1249 if ((db & MPI2_IOC_STATE_MASK) == MPI2_IOC_STATE_FAULT) { in mps_periodic()
1250 device_printf(sc->mps_dev, "IOC Fault 0x%08x, Resetting\n", db); in mps_periodic()
/dragonfly/sys/dev/netif/oce/
H A Doce_queue.c1016 OCE_WRITE_REG32(sc, db, PD_EQ_DB, eq_db.dw0); in oce_arm_eq()
1038 OCE_WRITE_REG32(sc, db, PD_CQ_DB, cq_db.dw0); in oce_arm_cq()
H A Doce_if.c949 OCE_WRITE_REG32(sc, db, wq->db_offset, reg_value); in oce_tx()
1571 OCE_WRITE_REG32(sc, db, PD_RXULP_DB, rxdb_reg.dw0); in oce_alloc_rx_bufs()
1577 OCE_WRITE_REG32(sc, db, PD_RXULP_DB, rxdb_reg.dw0); in oce_alloc_rx_bufs()
/dragonfly/
H A DMakefile_upgrade.inc364 TO_REMOVE+=/var/db/port.mkversion
1057 TO_REMOVE+=/var/db/ipf
3603 TO_REMOVE+=/usr/share/misc/vgrindefs.db
/dragonfly/contrib/dhcpcd/
H A DREADME.md85 dhcpcd-7 defaults the database directory to `/var/db/dhcpcd` instead of
86 `/var/db` and now stores dhcpcd.duid and dhcpcd.secret in there instead of
/dragonfly/share/misc/
H A Dpci_vendors2816 1043 04db Radeon R9 390X
8584 1093 77db cRIO-9035
9605 10db Rohm LSI Systems, Inc.
10186 01db G72M [Quadro NVS 120M]
13035 82db AJA HDNTV HD SDI Framestore
16139 11db Sega Enterprises Ltd
19708 14db AFAVLAB Technology Inc
22741 17db Cray Inc
26364 1014 00db Integrated Trio3D
30310 8086 24db P4C800 Mainboard
[all …]
/dragonfly/usr.sbin/makefs/ffs/
H A Dufs_inode.h73 #define i_ffs1_shortlink i_din.ffs1_din.db
95 #define i_ffs2_shortlink i_din.ffs2_din.db
/dragonfly/crypto/libressl/include/openssl/
H A Dx509v3.h124 char *(*get_string)(void *db, const char *section, const char *value);
125 STACK_OF(CONF_VALUE) *(*get_section)(void *db, const char *section);
126 void (*free_string)(void *db, char *string);
127 void (*free_section)(void *db, STACK_OF(CONF_VALUE) *section);
139 void *db; member
393 #define X509V3_set_ctx_nodb(ctx) (ctx)->db = NULL;
/dragonfly/crypto/libressl/crypto/x509/
H A Dx509_conf.c164 if (!ctx->db || !ctx->db_meth) { in do_ext_nconf()
432 return ctx->db_meth->get_section(ctx->db, section); in STACK_OF()
441 ctx->db_meth->free_string(ctx->db, str); in X509V3_string_free()
450 ctx->db_meth->free_section(ctx->db, section); in X509V3_section_free()
456 return NCONF_get_string(db, section, value); in nconf_get_string()
460 nconf_get_section(void *db, const char *section) in STACK_OF()
462 return NCONF_get_section(db, section); in STACK_OF()
476 ctx->db = conf; in X509V3_set_nconf()
517 return CONF_get_string(db, section, value); in conf_lhash_get_string()
523 return CONF_get_section(db, section); in STACK_OF()
[all …]
/dragonfly/crypto/libressl/crypto/rsa/
H A Drsa_oaep.c100 unsigned char *db, *seed; in RSA_padding_add_PKCS1_OAEP_mgf1() local
126 db = to + mdlen + 1; in RSA_padding_add_PKCS1_OAEP_mgf1()
131 memset(db + mdlen, 0, emlen - flen - 2 * mdlen - 1); in RSA_padding_add_PKCS1_OAEP_mgf1()
132 db[emlen - flen - mdlen - 1] = 0x01; in RSA_padding_add_PKCS1_OAEP_mgf1()
133 memcpy(db + emlen - flen - mdlen, from, flen); in RSA_padding_add_PKCS1_OAEP_mgf1()
145 db[i] ^= dbmask[i]; in RSA_padding_add_PKCS1_OAEP_mgf1()
178 unsigned char *db = NULL, *em = NULL; in RSA_padding_check_PKCS1_OAEP_mgf1() local
206 if ((db = malloc(dblen)) == NULL) { in RSA_padding_check_PKCS1_OAEP_mgf1()
243 if (PKCS1_MGF1(db, dblen, seed, mdlen, mgf1md)) in RSA_padding_check_PKCS1_OAEP_mgf1()
246 db[i] ^= maskeddb[i]; in RSA_padding_check_PKCS1_OAEP_mgf1()
[all …]
/dragonfly/crypto/libressl/
H A Dcert.pem1289 4c:aa:f9:ca:db:63:6f:e0:1f:f7:4e:d8:5b:03:86:9d
2068 92:b8:88:db:b0:8a:c1:63
3298 67:74:9d:8d:77:d8:3b:6a:db:22:f4:ff:59:e2:bf:ce
4626 2e:f5:9b:02:28:a7:db:7a:ff:d5:a3:a9:ee:bd:03:a0:cf:12:6a:1d
/dragonfly/crypto/libressl/apps/openssl/
H A Docsp.c91 CA_DB *db, X509 *ca, X509 *rcert, EVP_PKEY *rkey, STACK_OF(X509) *rother,
94 static char **lookup_serial(CA_DB *db, ASN1_INTEGER *ser);
1198 make_ocsp_response(OCSP_RESPONSE **resp, OCSP_REQUEST *req, CA_DB *db, in make_ocsp_response() argument
1248 inf = lookup_serial(db, serial); in make_ocsp_response()
1297 lookup_serial(CA_DB *db, ASN1_INTEGER *ser) in lookup_serial() argument
1314 rrow = TXT_DB_get_by_index(db->db, DB_serial, row); in lookup_serial()
H A Dca.c939 pp = sk_OPENSSL_PSTRING_value(db->db->data, i); in ca_main()
983 TXT_DB_write(out, db->db); in ca_main()
985 sk_OPENSSL_PSTRING_num(db->db->data)); in ca_main()
1447 pp = sk_OPENSSL_PSTRING_value(db->db->data, i); in ca_main()
2134 rrow = TXT_DB_get_by_index(db->db, DB_name, crow); in do_body()
2273 if (!TXT_DB_insert(db->db, irow)) { in do_body()
2492 rrow = TXT_DB_get_by_index(db->db, DB_serial, row); in do_revoke()
2535 if (!TXT_DB_insert(db->db, irow)) { in do_revoke()
2538 db->db->error); in do_revoke()
2612 rrow = TXT_DB_get_by_index(db->db, DB_serial, row); in get_certificate_status()
[all …]
H A Dapps.c1399 retdb->db = tmpdb; in load_index()
1422 index_index(CA_DB *db) in index_index() argument
1424 if (!TXT_DB_create_index(db->db, DB_serial, NULL, in index_index()
1428 db->db->error, db->db->arg1, db->db->arg2); in index_index()
1432 !TXT_DB_create_index(db->db, DB_name, index_name_qual, in index_index()
1435 db->db->error, db->db->arg1, db->db->arg2); in index_index()
1468 j = TXT_DB_write(out, db->db); in save_index()
1587 free_index(CA_DB *db) in free_index() argument
1589 if (db) { in free_index()
1590 TXT_DB_free(db->db); in free_index()
[all …]
H A Dapps.h223 TXT_DB *db; member
232 int index_index(CA_DB *db);
233 int save_index(const char *dbfile, const char *suffix, CA_DB *db);
236 void free_index(CA_DB *db);

12345678