| /freebsd-12.1/contrib/sendmail/libsmdb/ |
| H A D | smdb1.c | 169 smdb1_close(database) in smdb1_close() argument 170 SMDB_DATABASE *database; in smdb1_close() 188 SMDB_DATABASE *database; in smdb1_del() 202 smdb1_fd(database, fd) in smdb1_fd() argument 203 SMDB_DATABASE *database; in smdb1_fd() 216 smdb1_lockfd(database) in smdb1_lockfd() argument 217 SMDB_DATABASE *database; in smdb1_lockfd() 227 SMDB_DATABASE *database; in smdb1_get() 255 SMDB_DATABASE *database; in smdb1_put() 504 *database = NULL; [all …]
|
| H A D | smndbm.c | 91 smdbm_close(database) in smdbm_close() argument 92 SMDB_DATABASE *database; in smdbm_close() 109 SMDB_DATABASE *database; in smdbm_del() 139 smdbm_fd(database, fd) in smdbm_fd() argument 140 SMDB_DATABASE *database; in smdbm_fd() 153 smdbm_lockfd(database) in smdbm_lockfd() argument 154 SMDB_DATABASE *database; in smdbm_lockfd() 163 SMDB_DATABASE *database; in smdbm_get() 197 SMDB_DATABASE *database; in smdbm_put() 510 *database = NULL; [all …]
|
| H A D | smdb2.c | 225 smdb2_close(database) in smdb2_close() argument 226 SMDB_DATABASE *database; in smdb2_close() 244 SMDB_DATABASE *database; in smdb2_del() 258 smdb2_fd(database, fd) in smdb2_fd() argument 259 SMDB_DATABASE *database; in smdb2_fd() 268 smdb2_lockfd(database) in smdb2_lockfd() argument 269 SMDB_DATABASE *database; in smdb2_lockfd() 278 SMDB_DATABASE *database; in smdb2_get() 300 SMDB_DATABASE *database; in smdb2_put() 593 *database = NULL; [all …]
|
| H A D | smdb.c | 59 smdb_free_database(database) in smdb_free_database() argument 60 SMDB_DATABASE *database; in smdb_free_database() 62 if (database != NULL) 63 free(database); 192 SMDB_DATABASE **database; in smdb_open_database() 379 smdb_lock_map(database, type) in smdb_lock_map() argument 380 SMDB_DATABASE *database; in smdb_lock_map() 385 fd = database->smdb_lockfd(database); 403 smdb_unlock_map(database) in smdb_unlock_map() argument 404 SMDB_DATABASE *database; in smdb_unlock_map() [all …]
|
| /freebsd-12.1/lib/libsecureboot/efi/ |
| H A D | efi_variables.c | 91 UINT8 *database; in efi_get_certs() local 98 database = NULL; in efi_get_certs() 110 database = malloc(db_size); in efi_get_certs() 111 if (database == NULL) in efi_get_certs() 157 xfree(database); in efi_get_certs() 162 xfree(database); in efi_get_certs() 174 UINT8 *database; in efi_get_forbidden_digests() local 184 database = NULL; in efi_get_forbidden_digests() 192 if (database == NULL) in efi_get_forbidden_digests() 251 xfree(database); in efi_get_forbidden_digests() [all …]
|
| /freebsd-12.1/contrib/sendmail/editmap/ |
| H A D | editmap.c | 96 SMDB_DATABASE *database; local 282 errno = smdb_open_database(&database, mapname, mode, smode, sff, 301 (void) database->smdb_sync(database, 0); 305 errno = database->smdb_set_owner(database, TrustedUid, -1); 325 errno = database->smdb_get(database, &db_key, &db_val, 0); 354 errno = database->smdb_put(database, &db_key, &db_val, 375 errno = database->smdb_del(database, &db_key, 0); 405 errno = database->smdb_close(database); 412 smdb_free_database(database);
|
| /freebsd-12.1/crypto/heimdal/lib/hdb/ |
| H A D | hdb_err.et | 13 #error_code INUSE, "Entry already exists in database" 16 error_code NOENTRY, "No such entry in the database" 19 error_code RECURSIVELOCK, "Attempt to lock database twice" 20 error_code NOTLOCKED, "Attempt to unlock database when not locked" 22 error_code CANT_LOCK_DB, "Insufficient access to lock database" 23 error_code EXISTS, "Entry already exists in database" 24 error_code BADVERSION, "Wrong database version" 28 error_code NOT_FOUND_HERE, "The secret for this entry is not replicated to this database"
|
| /freebsd-12.1/contrib/sendmail/makemap/ |
| H A D | makemap.c | 100 SMDB_DATABASE *database; local 321 errno = smdb_open_database(&database, mapname, mode, smode, sff, 340 (void) database->smdb_sync(database, 0); 344 errno = database->smdb_set_owner(database, TrustedUid, -1); 360 errno = database->smdb_cursor(database, &cursor, 0); 473 errno = database->smdb_put(database, &db_key, &db_val, 515 errno = database->smdb_close(database); 523 smdb_free_database(database);
|
| /freebsd-12.1/contrib/sendmail/praliases/ |
| H A D | praliases.c | 241 SMDB_DATABASE *database = NULL; local 305 result = smdb_open_database(&database, db_name, O_RDONLY, 0, 320 result = database->smdb_cursor(database, &cursor, 0); 368 get_res = database->smdb_get(database, &db_key, &db_value, 0); 372 get_res = database->smdb_get(database, &db_key, 393 if (database != NULL) 394 (void) database->smdb_close(database);
|
| /freebsd-12.1/crypto/heimdal/doc/ |
| H A D | kerberos4.texi | 13 * Converting a version 4 database:: 53 principal exists in the database. The KDC will use 58 @section Converting a version 4 database 60 If you want to convert an existing version 4 database, the principal 63 If you decide to convert your database once and for all, you will only 66 happen every time the database is propagated. When doing this 89 you have a database that consists of the following principals: 157 @subsection Converting a database 159 The database conversion is done with @samp{hprop}. You can run this 160 command to propagate the database to the machine called [all …]
|
| /freebsd-12.1/usr.sbin/cron/cron/ |
| H A D | cron.c | 51 static cron_db database; variable 153 database.head = NULL; 154 database.tail = NULL; 155 database.mtime = (time_t) 0; 156 load_database(&database); 157 secres1 = secres2 = run_at_secres(&database); 159 run_reboot_jobs(&database); 165 cron_sleep(&database, secres1); 168 load_database(&database); 169 secres2 = run_at_secres(&database); [all …]
|
| /freebsd-12.1/contrib/wpa/hostapd/ |
| H A D | hlr_auc_gw.txt | 1 HLR/AuC testing gateway for hostapd EAP-SIM/AKA database/authenticator 4 database/authentication gateway interface to HLR/AuC. It could be 18 database for more dynamic operations. This is enabled by adding 36 -D<DB file> = path to SQLite database 40 The SQLite database can be initialized with sqlite, e.g., by running 67 pseudonyms and reauth information into a SQLite database. This is 73 Milenage parameters based on IMSI from the database. The database can be
|
| /freebsd-12.1/contrib/subversion/ |
| H A D | .ycm_extra_conf.py | 37 database = ycm_core.CompilationDatabase( compilation_database_folder ) variable 39 database = None variable 71 if database: 74 compilation_info = database.GetCompilationInfoForFile( filename )
|
| /freebsd-12.1/contrib/file/magic/Magdir/ |
| H A D | database | 24 0 string GDBM GNU dbm 2.x database 148 ## XBase database files 184 # database file 455 ## End of XBase database stuff 457 # MS Access database 474 # file_type 0~database 1~stream 514 # SE Linux policy database 579 # Type: TokyoCabinet database 612 # database name 627 # CDB database [all …]
|
| /freebsd-12.1/contrib/netbsd-tests/lib/libc/db/ |
| H A D | README | 5 the test runs, and even larger files (the database files) are created in 17 + must be followed by [kK][dD]; the data value in the database 29 + dump the database out, if 'r' is set, in reverse order. 34 S: sync the database 56 -f: Use the file argument as the database file. 62 -s: Don't delete the database file before opening it, i.e. 63 use the database file from a previous run.
|
| /freebsd-12.1/usr.bin/locate/locate/ |
| H A D | locate.rc | 12 # the actual database 13 #FCODES="/var/db/locate.database" 15 # directories to be put in the database 26 # an empty database.
|
| H A D | fastfind.c | 119 (pathpart, paddr, len, database) in fastfind_mmap_icase() argument 123 char *database; /* for error message */ 135 (fp, pathpart, database) 138 char *database; /* for error message */ 219 errx(1, "corrupted database: %s", database);
|
| /freebsd-12.1/lib/libc/db/test/ |
| H A D | README | 13 the test runs, and even larger files (the database files) are created in 25 + must be followed by [kK][dD]; the data value in the database 37 + dump the database out, if 'r' is set, in reverse order. 42 S: sync the database 64 -f: Use the file argument as the database file. 70 -s: Don't delete the database file before opening it, i.e. 71 use the database file from a previous run.
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | BuiltinsLe64.def | 1 //==- BuiltinsLe64.def - Le64 Builtin function database ----------*- C++ -*-==// 10 // This file defines the Le64-specific builtin function database. Users of this 15 // The format of this database matches clang/Basic/Builtins.def.
|
| H A D | BuiltinsNEON.def | 1 //===--- BuiltinsNEON.def - NEON Builtin function database ------*- C++ -*-===// 10 // This file defines the NEON-specific builtin function database. Users of 15 // The format of this database matches clang/Basic/Builtins.def.
|
| H A D | BuiltinsXCore.def | 1 //===--- BuiltinsXCore.def - XCore Builtin function database ----*- C++ -*-===// 10 // This file defines the XCore-specific builtin function database. Users of 15 // The format of this database matches clang/Basic/Builtins.def.
|
| /freebsd-12.1/crypto/heimdal/kdc/ |
| H A D | hpropd.c | 40 static const char *database; variable 46 { "database", 'd', arg_string, rk_UNCONST(&database), "database", "file" }, 115 if (database == NULL) in main() 116 database = hdb_default_db(context); in main() 210 asprintf(&tmp_db, "%s~", database); in main() 245 ret = db->hdb_rename(context, db, database); in main()
|
| H A D | hprop.c | 41 static const char *database; variable 128 { "database", 'd', arg_string, rk_UNCONST(&database), "database", "file" }, 444 if (database == NULL) in main() 448 ret = hdb_create (context, &db, database); in main() 450 krb5_err(context, 1, ret, "hdb_create: %s", database); in main() 461 exit_code = dump_database (context, type, database, db); in main() 463 exit_code = propagate_database (context, type, database, in main()
|
| /freebsd-12.1/lib/libc/net/ |
| H A D | nsdispatch.c | 278 return (strcmp(((const ns_mtab *)a)->database, in mtab_compare() 279 ((const ns_mtab *)b)->database)); in mtab_compare() 579 nss_method_lookup(const char *source, const char *database, in nss_method_lookup() argument 595 key.database = database; in nss_method_lookup() 618 _nsdispatch(void *retval, const ns_dtab disp_tab[], const char *database, in _nsdispatch() argument 662 dbt = vector_search(&database, _nsmap, _nsmapsize, sizeof(*_nsmap), in _nsdispatch() 664 fb_method = nss_method_lookup(NSSRC_FALLBACK, database, in _nsdispatch() 684 method = nss_method_lookup(srclist[i].name, database, in _nsdispatch() 740 srclist[i].name, database, method_name); in _nsdispatch()
|
| /freebsd-12.1/crypto/openssl/doc/man3/ |
| H A D | SSL_CTX_sessions.pod | 21 L<LHASH(3)> type database. It is possible to directly 22 access this database e.g. for searching. In parallel, the sessions 24 L<LHASH(3)> operations, so that the database must not be
|