| /netbsd-src/external/bsd/openldap/dist/servers/slapd/back-ldap/ |
| H A D | pbind.c | 64 BackendDB *be, in ldap_pbind_db_init() argument 67 slap_overinst *on = (slap_overinst *)be->bd_info; in ldap_pbind_db_init() 68 ConfigOCs *be_cf_ocs = be->be_cf_ocs; in ldap_pbind_db_init() 69 void *private = be->be_private; in ldap_pbind_db_init() 80 rc = lback->bi_db_init( be, cr ); in ldap_pbind_db_init() 81 on->on_bi.bi_private = be->be_private; in ldap_pbind_db_init() 82 be->be_cf_ocs = be_cf_ocs; in ldap_pbind_db_init() 83 be->be_private = private; in ldap_pbind_db_init() 90 BackendDB *be, in ldap_pbind_db_open() argument 93 slap_overinst *on = (slap_overinst *) be->bd_info; in ldap_pbind_db_open() [all …]
|
| H A D | distproc.c | 243 static int ldap_distproc_db_init_common( BackendDB *be ); 244 static int ldap_distproc_db_init_one( BackendDB *be ); 245 #define ldap_distproc_db_open_one(be) (lback)->bi_db_open( (be) ) argument 246 #define ldap_distproc_db_close_one(be) (0) argument 247 #define ldap_distproc_db_destroy_one(be, ca) (lback)->bi_db_destroy( (be), (ca) ) argument 390 assert( ca->be == NULL ); in distproc_ldadd() 391 ca->be = (BackendDB *)ch_calloc( 1, sizeof( BackendDB ) ); in distproc_ldadd() 393 ca->be->bd_info = (BackendInfo *)on; in distproc_ldadd() 421 rc = ldap_distproc_db_init_common( ca->be ); in distproc_ldadd() 424 rc = ldap_distproc_db_init_one( ca->be ); in distproc_ldadd() [all …]
|
| /netbsd-src/external/historical/nawk/dist/testdir/ |
| H A D | T.int-expr | 12 printf("%s ~ /%s/ -> should be %d, is %d\n", $1, pattern, $2, check) 82 ac ~ /ab{0}c/ -> should be 1, is 1 83 abc ~ /ab{0}c/ -> should be 0, is 0 84 ac ~ /a(b{0})c/ -> should be 1, is 1 85 abc ~ /a(b{0})c/ -> should be 0, is 0 86 ac ~ /ab{0}*c/ -> should be 1, is 1 87 abc ~ /ab{0}*c/ -> should be 0, is 0 88 ac ~ /a(b{0})*c/ -> should be 1, is 1 89 abc ~ /a(b{0})*c/ -> should be 0, is 0 90 ac ~ /ab{0,}c/ -> should be 1, is 1 [all …]
|
| /netbsd-src/external/bsd/openldap/dist/servers/slapd/ |
| H A D | slapcat.c | 71 if( !be->be_entry_open || in slapcat() 72 !be->be_entry_close || in slapcat() 73 !( be->be_entry_first_x || be->be_entry_first ) || in slapcat() 74 !be->be_entry_next || in slapcat() 75 !be->be_entry_get ) in slapcat() 82 if( be->be_entry_open( be, 0 ) != 0 ) { in slapcat() 88 op.o_bd = be; in slapcat() 89 if ( !requestBSF && be->be_entry_first ) { in slapcat() 90 id = be->be_entry_first( be ); in slapcat() 93 if ( be->be_entry_first_x ) { in slapcat() [all …]
|
| H A D | backend.c | 170 backend_set_controls( BackendDB *be ) in backend_set_controls() argument 172 BackendInfo *bi = be->bd_info; in backend_set_controls() 175 if ( overlay_is_over( be ) ) { in backend_set_controls() 176 bi = ((slap_overinfo *)be->bd_info->bi_private)->oi_orig; in backend_set_controls() 180 if ( be->be_ctrls[ SLAP_MAX_CIDS ] == 0 ) { in backend_set_controls() 181 AC_MEMCPY( be->be_ctrls, bi->bi_ctrls, in backend_set_controls() 182 sizeof( be->be_ctrls ) ); in backend_set_controls() 183 be->be_ctrls[ SLAP_MAX_CIDS ] = 1; in backend_set_controls() 190 be->be_ctrls[ i ] = bi->bi_ctrls[ i ]; in backend_set_controls() 201 int backend_startup_one(Backend *be, ConfigReply *cr) in backend_startup_one() argument [all …]
|
| H A D | slapschema.c | 74 if( !be->be_entry_open || in slapschema() 75 !be->be_entry_close || in slapschema() 76 !( be->be_entry_first || be->be_entry_first_x ) || in slapschema() 77 !be->be_entry_next || in slapschema() 78 !be->be_entry_get ) in slapschema() 85 if( be->be_entry_open( be, 0 ) != 0 ) { in slapschema() 95 op->o_bd = be; in slapschema() 98 if ( !requestBSF && be->be_entry_first ) { in slapschema() 99 id = be->be_entry_first( be ); in slapschema() 102 if ( be->be_entry_first_x ) { in slapschema() [all …]
|
| H A D | slapindex.c | 49 if( !be->be_entry_open || in slapindex() 50 !be->be_entry_close || in slapindex() 51 !( be->be_entry_first || be->be_entry_first_x ) || in slapindex() 52 !be->be_entry_next || in slapindex() 53 !be->be_entry_reindex ) in slapindex() 80 if( be->be_entry_open( be, 0 ) != 0 ) { in slapindex() 86 if ( be->be_entry_first ) { in slapindex() 87 id = be->be_entry_first( be ); in slapindex() 90 assert( be->be_entry_first_x != NULL ); in slapindex() 91 id = be->be_entry_first_x( be, NULL, LDAP_SCOPE_DEFAULT, NULL ); in slapindex() [all …]
|
| H A D | backover.c | 39 BackendDB *be, in over_db_config() argument 46 slap_overinfo *oi = be->bd_info->bi_private; in over_db_config() 48 BackendInfo *bi_orig = be->bd_info; in over_db_config() 49 struct ConfigOCs *be_cf_ocs = be->be_cf_ocs; in over_db_config() 54 be->bd_info = oi->oi_orig; in over_db_config() 55 be->be_cf_ocs = oi->oi_orig->bi_cf_ocs; in over_db_config() 56 rc = oi->oi_orig->bi_db_config( be, fname, lineno, in over_db_config() 59 if ( be->bd_info != oi->oi_orig ) { in over_db_config() 62 BackendDB be2 = *be; in over_db_config() 67 assert( overlay_is_over( be ) ); in over_db_config() [all …]
|
| H A D | ctxcsn.c | 47 BackendDB *be = op->o_bd->bd_self; in slap_get_commit_csn() local 62 ldap_pvt_thread_mutex_lock( &be->be_pcl_mutex ); in slap_get_commit_csn() 64 LDAP_TAILQ_FOREACH( csne, be->be_pending_csn_list, ce_csn_link ) { in slap_get_commit_csn() 72 LDAP_TAILQ_FOREACH( csne, be->be_pending_csn_list, ce_csn_link ) { in slap_get_commit_csn() 90 ldap_pvt_thread_mutex_unlock( &be->be_pcl_mutex ); in slap_get_commit_csn() 97 BackendDB *be = op->o_bd->bd_self; in slap_rewind_commit_csn() local 99 ldap_pvt_thread_mutex_lock( &be->be_pcl_mutex ); in slap_rewind_commit_csn() 101 LDAP_TAILQ_FOREACH( csne, be->be_pending_csn_list, ce_csn_link ) { in slap_rewind_commit_csn() 108 ldap_pvt_thread_mutex_unlock( &be->be_pcl_mutex ); in slap_rewind_commit_csn() 115 BackendDB *be; in slap_graduate_commit_csn() local [all …]
|
| H A D | slapmodify.c | 84 op->o_bd = be; in slapmodify() 86 if ( !be->be_entry_open || in slapmodify() 87 !be->be_entry_close || in slapmodify() 88 !be->be_entry_put || in slapmodify() 89 !be->be_dn2id_get || in slapmodify() 90 !be->be_entry_get || in slapmodify() 91 !be->be_entry_modify ) in slapmodify() 111 SLAP_DBFLAGS(be) &= ~(SLAP_DBFLAG_NO_SCHEMA_CHECK); in slapmodify() 116 if( !dryrun && be->be_entry_open( be, 1 ) != 0 ) { in slapmodify() 193 if ( be->be_entry_delete ) in slapmodify() [all …]
|
| H A D | backglue.c | 71 BackendDB *be, in glue_back_select() argument 75 slap_overinst *on = (slap_overinst *)be->bd_info; in glue_back_select() 86 be->bd_info = on->on_info->oi_orig; in glue_back_select() 87 return be; in glue_back_select() 290 BackendDB *be = op->o_bd; in glue_response() local 291 be = glue_back_select (op->o_bd, &op->o_req_ndn); in glue_response() 296 return ( op->o_bd == be ) ? SLAP_CB_CONTINUE : SLAP_CB_BYPASS; in glue_response() 1113 BackendDB *be, b2; in glue_tool_dn2id_get() local 1118 be = glue_back_select (&b2, dn); in glue_tool_dn2id_get() 1119 if ( be == &b2 ) be = &toolDB; in glue_tool_dn2id_get() [all …]
|
| /netbsd-src/external/gpl2/texinfo/dist/makeinfo/tests/ |
| H A D | accent-text.txi | 3 should be e`: @`{e} @`e 5 should be e': @'{e} @'e 7 should be e^: @^{e} @^e 9 should be u": @"{u} @"u 11 should be i`: @`{i} @`i 13 should be i': @'{i} @'i 15 should be i^: @^{i} @^i 17 should be u": @"{u} @"u 19 should be c,: @,{c} @,c 21 should be n~: @~{n} @~n [all …]
|
| /netbsd-src/external/bsd/tre/dist/tests/agrep/ |
| H A D | exitstatus.ok | 1 #### TEST: agrep this-will-be-found exitstatus.in 2 this-will-be-found 5 #### TEST: agrep this-will-be-found < exitstatus.in 6 this-will-be-found 9 #### TEST: agrep -c this-will-be-found exitstatus.in 13 #### TEST: agrep -c this-will-be-found < exitstatus.in 17 #### TEST: agrep -H this-will-be-found exitstatus.in 18 exitstatus.in:this-will-be-found 21 #### TEST: agrep -H this-will-be-found < exitstatus.in 22 (standard input):this-will-be-found [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/demos/cms/ |
| H A D | comp.txt | 3 Some Text To be Compressed 4 Some Text To be Compressed 5 Some Text To be Compressed 6 Some Text To be Compressed 7 Some Text To be Compressed 8 Some Text To be Compressed 9 Some Text To be Compressed 10 Some Text To be Compressed 11 Some Text To be Compressed 12 Some Text To be Compressed [all …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/demos/cms/ |
| H A D | comp.txt | 3 Some Text To be Compressed 4 Some Text To be Compressed 5 Some Text To be Compressed 6 Some Text To be Compressed 7 Some Text To be Compressed 8 Some Text To be Compressed 9 Some Text To be Compressed 10 Some Text To be Compressed 11 Some Text To be Compressed 12 Some Text To be Compressed [all …]
|
| /netbsd-src/external/bsd/openldap/dist/servers/slapd/back-mdb/ |
| H A D | init.c | 50 mdb_db_init( BackendDB *be, ConfigReply *cr ) in mdb_db_init() argument 74 be->be_private = mdb; in mdb_db_init() 75 be->be_cf_ocs = be->bd_info->bi_cf_ocs+1; in mdb_db_init() 78 SLAP_DBFLAGS( be ) |= SLAP_DBFLAG_ONE_SUFFIX; in mdb_db_init() 81 rc = mdb_monitor_db_init( be ); in mdb_db_init() 87 mdb_db_close( BackendDB *be, ConfigReply *cr ); 90 mdb_db_open( BackendDB *be, ConfigReply *cr ) in mdb_db_open() argument 93 struct mdb_info *mdb = (struct mdb_info *) be->be_private; in mdb_db_open() 99 if ( be->be_suffix == NULL ) { in mdb_db_open() 107 be->be_suffix[0].bv_val ); in mdb_db_open() [all …]
|
| /netbsd-src/external/bsd/openldap/dist/servers/slapd/back-wt/ |
| H A D | init.c | 35 wt_db_init( BackendDB *be, ConfigReply *cr ) in wt_db_init() argument 51 be->be_private = wi; in wt_db_init() 52 be->be_cf_ocs = be->bd_info->bi_cf_ocs; in wt_db_init() 58 wt_db_open( BackendDB *be, ConfigReply *cr ) in wt_db_open() argument 60 struct wt_info *wi = (struct wt_info *) be->be_private; in wt_db_open() 66 if ( be->be_suffix == NULL ) { in wt_db_open() 74 be->be_suffix[0].bv_val ); in wt_db_open() 83 be->be_suffix[0].bv_val, wi->wi_dbenv_home, saved_errno ); in wt_db_open() 95 be->be_suffix[0].bv_val, wi->wi_dbenv_home, saved_errno ); in wt_db_open() 104 be->be_suffix[0].bv_val, wiredtiger_strerror(rc) ); in wt_db_open() [all …]
|
| /netbsd-src/external/bsd/openldap/dist/servers/slapd/back-monitor/ |
| H A D | database.c | 38 static int monitor_back_add_plugin( monitor_info_t *mi, Backend *be, Entry *e ); 110 BackendDB *be, in monitor_subsys_overlay_init_one() argument 126 assert( overlay_is_over( be ) ); in monitor_subsys_overlay_init_one() 128 oi = (slap_overinfo *)be->bd_info->bi_private; in monitor_subsys_overlay_init_one() 170 if ( SLAP_MONITOR( be ) ) { in monitor_subsys_overlay_init_one() 172 be->be_suffix, be->be_nsuffix ); in monitor_subsys_overlay_init_one() 176 be->be_suffix, NULL ); in monitor_subsys_overlay_init_one() 205 BackendDB *be, in monitor_subsys_database_init_one() argument 222 bi = be->bd_info; in monitor_subsys_database_init_one() 224 if ( be->be_suffix == NULL ) { in monitor_subsys_database_init_one() [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/doc/ |
| H A D | init-creds | 27 /* XXX the next three should not be used, as they may be 83 specified can be determined correctly from system configuration or 86 of the structure should be used. In most cases, a NULL pointer can be 92 and will not be doing any other kerberos functions, then a NULL 93 pointer may be specified, and the credential will be destroyed. 95 If the client name is non-NULL, the initial ticket requested will be 96 for that principal. Otherwise, the principal will be the username 102 Otherwise, the prompter function will be used to prompt the user for 105 If a prompter function is non-NULL, it will be used if additional user 107 needs to be changed, or if input preauthentication is necessary. If [all …]
|
| /netbsd-src/external/bsd/openldap/dist/servers/slapd/back-relay/ |
| H A D | init.c | 65 relay_back_info *ri = ( relay_back_info * )c->be->be_private; in relay_back_cf() 90 if ( c->be->be_nsuffix == NULL ) { in relay_back_cf() 100 if ( !BER_BVISNULL( &c->be->be_nsuffix[ 1 ] ) ) { in relay_back_cf() 120 } else if ( bd->be_private == c->be->be_private ) { in relay_back_cf() 178 relay_back_db_init( Backend *be, ConfigReply *cr) in relay_back_db_init() argument 182 be->be_private = NULL; in relay_back_db_init() 193 be->be_cf_ocs = be->bd_info->bi_cf_ocs; in relay_back_db_init() 195 be->be_private = (void *)ri; in relay_back_db_init() 201 relay_back_db_open( Backend *be, ConfigReply *cr ) in relay_back_db_open() argument 203 relay_back_info *ri = (relay_back_info *)be->be_private; in relay_back_db_open() [all …]
|
| /netbsd-src/share/locale/monetary/ |
| H A D | mn_MN.UTF-8.src | 5 # WARNING: Empty lines and/or blank spaces may be essential. 48 # Must be either 1 or 0. 54 # Must be 0, 1, or 2 59 # Must be either 1 or 0. 64 # Must be 0, 1, or 2 69 # Must be 0, 1, 2, 3, or 4 74 # Must be 0, 1, 2, 3, or 4 79 # Must be either 1 or 0. 85 # Must be 0, 1, or 2 90 # Must be either 1 or 0. [all …]
|
| H A D | kk_KZ.PT154.src | 5 # WARNING: Empty lines and/or blank spaces may be essential. 48 # Must be either 1 or 0. 54 # Must be 0, 1, or 2 59 # Must be either 1 or 0. 64 # Must be 0, 1, or 2 69 # Must be 0, 1, 2, 3, or 4 74 # Must be 0, 1, 2, 3, or 4 79 # Must be either 1 or 0. 85 # Must be 0, 1, or 2 90 # Must be either 1 or 0. [all …]
|
| H A D | he_IL.UTF-8.src | 5 # WARNING: Empty lines and/or blank spaces may be essential. 48 # Must be either 1 or 0. 54 # Must be 0, 1, or 2 59 # Must be either 1 or 0. 64 # Must be 0, 1, or 2 69 # Must be 0, 1, 2, 3, or 4 74 # Must be 0, 1, 2, 3, or 4 79 # Must be either 1 or 0. 85 # Must be 0, 1, or 2 90 # Must be either 1 or 0. [all …]
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-c++-kde/admin/ |
| H A D | Doxyfile.global | 3 # This file describes the settings to be used by the documentation system 6 # All text after a hash (#) is considered a comment and will be ignored 9 # For lists items can also be appended using: 11 # Values that contain spaces should be placed between quotes (" ") 22 # The PROJECT_NUMBER tag can be used to enter a project or revision number. 23 # This could be handy for archiving the generated documentation or 29 # base path where the generated documentation will be put. 30 # If a relative path is entered, it will be relative to the location 31 # where doxygen was started. If left blank the current directory will be used. 47 # Private class members and static file members will be hidden unless [all …]
|
| /netbsd-src/external/mpl/bind/dist/doc/arm/ |
| H A D | tsig.inc.rst | 18 messages, originally specified in :rfc:`2845`. It allows DNS messages to be 19 cryptographically signed using a shared secret. TSIG can be used in any 22 control is insufficient or needs to be overridden, or as a way to ensure 40 TSIG keys can be generated using the :iscman:`tsig-keygen` command; the output 42 :iscman:`named.conf`. The key name, algorithm, and size can be specified by 46 Any string which is a valid DNS name can be used as a key name. For 47 example, a key to be shared between servers called ``host1`` and ``host2`` 48 could be called "host1-host2.", and this key can be generated using: 54 This key may then be copie [all...] |