| /netbsd-src/external/bsd/atf/dist/tools/ |
| H A D | parser_test.cpp | 222 tokenizer mt(iss, false); in ATF_TEST_CASE_BODY() local 224 EXPECT(mt, eof_type, "<<EOF>>"); in ATF_TEST_CASE_BODY() 225 EXPECT(mt, eof_type, "<<EOF>>"); in ATF_TEST_CASE_BODY() 230 tokenizer mt(iss, false); in ATF_TEST_CASE_BODY() local 232 EXPECT(mt, nl_type, "<<NEWLINE>>"); in ATF_TEST_CASE_BODY() 233 EXPECT(mt, eof_type, "<<EOF>>"); in ATF_TEST_CASE_BODY() 234 EXPECT(mt, eof_type, "<<EOF>>"); in ATF_TEST_CASE_BODY() 239 tokenizer mt(iss, false); in ATF_TEST_CASE_BODY() local 241 EXPECT(mt, nl_type, "<<NEWLINE>>"); in ATF_TEST_CASE_BODY() 242 EXPECT(mt, nl_type, "<<NEWLINE>>"); in ATF_TEST_CASE_BODY() [all …]
|
| /netbsd-src/external/bsd/openldap/dist/servers/slapd/back-meta/ |
| H A D | init.c | 160 metatarget_t *mt, in meta_target_finish() argument 170 ber_str2bv( mt->mt_uri, 0, 0, &sb.sb_uri ); in meta_target_finish() 171 sb.sb_version = mt->mt_version; in meta_target_finish() 175 if ( META_BACK_TGT_T_F_DISCOVER( mt ) ) { in meta_target_finish() 180 mt->mt_flags |= LDAP_BACK_F_T_F; in meta_target_finish() 184 if ( META_BACK_TGT_CANCEL_DISCOVER( mt ) ) { in meta_target_finish() 189 mt->mt_flags |= LDAP_BACK_F_CANCEL_EXOP; in meta_target_finish() 193 if ( !( mt->mt_idassert_flags & LDAP_BACK_AUTH_OVERRIDE ) in meta_target_finish() 194 || mt->mt_idassert_authz != NULL ) in meta_target_finish() 199 if ( ( mt->mt_idassert_flags & LDAP_BACK_AUTH_AUTHZ_ALL ) in meta_target_finish() [all …]
|
| H A D | config.c | 575 metatarget_t *mt; in meta_back_new_target() local 579 mt = ch_calloc( sizeof( metatarget_t ), 1 ); in meta_back_new_target() 581 if ( meta_rwi_init( &mt->mt_rwmap.rwm_rw )) { in meta_back_new_target() 582 ch_free( mt ); in meta_back_new_target() 586 ldap_pvt_thread_mutex_init( &mt->mt_uri_mutex ); in meta_back_new_target() 588 mt->mt_idassert_mode = LDAP_BACK_IDASSERT_LEGACY; in meta_back_new_target() 589 mt->mt_idassert_authmethod = LDAP_AUTH_NONE; in meta_back_new_target() 590 mt->mt_idassert_tls = SB_TLS_DEFAULT; in meta_back_new_target() 593 mt->mt_idassert_flags = LDAP_BACK_AUTH_PRESCRIPTIVE; in meta_back_new_target() 595 *mtp = mt; in meta_back_new_target() [all …]
|
| H A D | back-meta.h | 365 #define META_BACK_TGT_ISSET(mt,f) ( ( (mt)->mt_flags & (f) ) == (f) ) argument 366 #define META_BACK_TGT_ISMASK(mt,m,f) ( ( (mt)->mt_flags & (m) ) == (f) ) argument 368 #define META_BACK_TGT_SAVECRED(mt) META_BACK_TGT_ISSET( (mt), LDAP_BACK_F_SAVECRED ) argument 370 #define META_BACK_TGT_USE_TLS(mt) META_BACK_TGT_ISSET( (mt), LDAP_BACK_F_USE_TLS ) argument 371 #define META_BACK_TGT_PROPAGATE_TLS(mt) META_BACK_TGT_ISSET( (mt), LDAP_BACK_F_PROPAGATE_TLS ) argument 372 #define META_BACK_TGT_TLS_CRITICAL(mt) META_BACK_TGT_ISSET( (mt), LDAP_BACK_F_TLS_CRITICAL ) argument 374 #define META_BACK_TGT_CHASE_REFERRALS(mt) META_BACK_TGT_ISSET( (mt), LDAP_BACK_F_CHASE_REFERRALS ) argument 376 #define META_BACK_TGT_T_F(mt) META_BACK_TGT_ISMASK( (mt), LDAP_BACK_F_T_F_MASK, LDAP_BACK_F_T_F ) argument 377 #define META_BACK_TGT_T_F_DISCOVER(mt) META_BACK_TGT_ISMASK( (mt), LDAP_BACK_F_T_F_MASK2, LDAP_BAC… argument 379 #define META_BACK_TGT_ABANDON(mt) META_BACK_TGT_ISMASK( (mt), LDAP_BACK_F_CANCEL_MASK, LDAP_BACK_F… argument [all …]
|
| H A D | bind.c | 128 metatarget_t *mt = mi->mi_targets[ i ]; in meta_back_bind() local 156 if ( mt->mt_idassert_authmethod == LDAP_AUTH_NONE in meta_back_bind() 157 || BER_BVISNULL( &mt->mt_idassert_authcDN ) ) in meta_back_bind() 310 metatarget_t *mt = mi->mi_targets[ candidate ]; in meta_back_bind_op_result() local 315 int nretries = mt->mt_nretries; in meta_back_bind_op_result() 345 timeout = mt->mt_timeout[ opidx ]; in meta_back_bind_op_result() 378 tv = mt->mt_bind_timeout; in meta_back_bind_op_result() 453 metatarget_t *mt = mi->mi_targets[ candidate ]; in meta_back_single_bind() local 477 dc.target = mt; in meta_back_single_bind() 529 if ( mt->mt_idassert_flags & LDAP_BACK_AUTH_OVERRIDE ) { in meta_back_single_bind() [all …]
|
| H A D | candidates.c | 61 meta_subtree_match( metatarget_t *mt, struct berval *ndn, int scope ) in meta_subtree_match() argument 63 metasubtree_t *ms = mt->mt_subtree; in meta_subtree_match() 65 for ( ms = mt->mt_subtree; ms; ms = ms->ms_next ) { in meta_subtree_match() 100 metatarget_t *mt, in meta_back_is_candidate() argument 105 int d = ndn->bv_len - mt->mt_nsuffix.bv_len; in meta_back_is_candidate() 108 if ( !dnIsSuffix( ndn, &mt->mt_nsuffix ) ) { in meta_back_is_candidate() 123 if ( mt->mt_subtree ) { in meta_back_is_candidate() 124 int match = ( meta_subtree_match( mt, ndn, scope ) != NULL ); in meta_back_is_candidate() 126 if ( !mt->mt_subtree_exclude ) { in meta_back_is_candidate() 135 switch ( mt->mt_scope ) { in meta_back_is_candidate() [all …]
|
| /netbsd-src/external/bsd/openldap/dist/servers/slapd/back-asyncmeta/ |
| H A D | init.c | 179 a_metatarget_t *mt, in asyncmeta_target_finish() argument 188 ber_str2bv( mt->mt_uri, 0, 0, &sb.sb_uri ); in asyncmeta_target_finish() 189 sb.sb_version = mt->mt_version; in asyncmeta_target_finish() 193 if ( META_BACK_TGT_T_F_DISCOVER( mt ) ) { in asyncmeta_target_finish() 198 mt->mt_flags |= LDAP_BACK_F_T_F; in asyncmeta_target_finish() 202 if ( META_BACK_TGT_CANCEL_DISCOVER( mt ) ) { in asyncmeta_target_finish() 207 mt->mt_flags |= LDAP_BACK_F_CANCEL_EXOP; in asyncmeta_target_finish() 211 if ( !( mt->mt_idassert_flags & LDAP_BACK_AUTH_OVERRIDE ) in asyncmeta_target_finish() 212 || mt->mt_idassert_authz != NULL ) in asyncmeta_target_finish() 217 if ( ( mt->mt_idassert_flags & LDAP_BACK_AUTH_AUTHZ_ALL ) in asyncmeta_target_finish() [all …]
|
| H A D | config.c | 496 a_metatarget_t *mt; in asyncmeta_back_new_target() local 500 mt = ch_calloc( sizeof( a_metatarget_t ), 1 ); in asyncmeta_back_new_target() 502 ldap_pvt_thread_mutex_init( &mt->mt_uri_mutex ); in asyncmeta_back_new_target() 504 mt->mt_idassert_mode = LDAP_BACK_IDASSERT_LEGACY; in asyncmeta_back_new_target() 505 mt->mt_idassert_authmethod = LDAP_AUTH_NONE; in asyncmeta_back_new_target() 506 mt->mt_idassert_tls = SB_TLS_DEFAULT; in asyncmeta_back_new_target() 508 mt->mt_idassert_flags = LDAP_BACK_AUTH_PRESCRIPTIVE; in asyncmeta_back_new_target() 510 *mtp = mt; in asyncmeta_back_new_target() 521 a_metatarget_t *mt in asyncmeta_suffixm_config() argument 584 mt->mt_lsuffixm = pvnc; in asyncmeta_suffixm_config() [all …]
|
| H A D | candidates.c | 62 asyncmeta_subtree_match( a_metatarget_t *mt, struct berval *ndn, int scope ) in asyncmeta_subtree_match() argument 64 a_metasubtree_t *ms = mt->mt_subtree; in asyncmeta_subtree_match() 66 for ( ms = mt->mt_subtree; ms; ms = ms->ms_next ) { in asyncmeta_subtree_match() 101 a_metatarget_t *mt, in asyncmeta_is_candidate() argument 106 int d = ndn->bv_len - mt->mt_nsuffix.bv_len; in asyncmeta_is_candidate() 109 if ( !dnIsSuffix( ndn, &mt->mt_nsuffix ) ) { in asyncmeta_is_candidate() 124 if ( mt->mt_subtree ) { in asyncmeta_is_candidate() 125 int match = ( asyncmeta_subtree_match( mt, ndn, scope ) != NULL ); in asyncmeta_is_candidate() 127 if ( !mt->mt_subtree_exclude ) { in asyncmeta_is_candidate() 136 switch ( mt->mt_scope ) { in asyncmeta_is_candidate() [all …]
|
| H A D | back-asyncmeta.h | 303 #define META_BACK_TGT_ISSET(mt,f) ( ( (mt)->mt_flags & (f) ) == (f) ) argument 304 #define META_BACK_TGT_ISMASK(mt,m,f) ( ( (mt)->mt_flags & (m) ) == (f) ) argument 306 #define META_BACK_TGT_SAVECRED(mt) META_BACK_TGT_ISSET( (mt), LDAP_BACK_F_SAVECRED ) argument 308 #define META_BACK_TGT_USE_TLS(mt) META_BACK_TGT_ISSET( (mt), LDAP_BACK_F_USE_TLS ) argument 309 #define META_BACK_TGT_PROPAGATE_TLS(mt) META_BACK_TGT_ISSET( (mt), LDAP_BACK_F_PROPAGATE_TLS ) argument 310 #define META_BACK_TGT_TLS_CRITICAL(mt) META_BACK_TGT_ISSET( (mt), LDAP_BACK_F_TLS_CRITICAL ) argument 312 #define META_BACK_TGT_CHASE_REFERRALS(mt) META_BACK_TGT_ISSET( (mt), LDAP_BACK_F_CHASE_REFERRALS ) argument 314 #define META_BACK_TGT_T_F(mt) META_BACK_TGT_ISMASK( (mt), LDAP_BACK_F_T_F_MASK, LDAP_BACK_F_T_F ) argument 315 #define META_BACK_TGT_T_F_DISCOVER(mt) META_BACK_TGT_ISMASK( (mt), LDAP_BACK_F_T_F_MASK2, LDAP_BAC… argument 317 #define META_BACK_TGT_ABANDON(mt) META_BACK_TGT_ISMASK( (mt), LDAP_BACK_F_CANCEL_MASK, LDAP_BACK_F… argument [all …]
|
| H A D | bind.c | 129 a_metatarget_t *mt = mi->mi_targets[ i ]; in asyncmeta_back_bind() local 157 if ( mt->mt_idassert_authmethod == LDAP_AUTH_NONE in asyncmeta_back_bind() 158 || BER_BVISNULL( &mt->mt_idassert_authcDN ) ) in asyncmeta_back_bind() 253 a_metatarget_t *mt = mi->mi_targets[ candidate ]; in asyncmeta_bind_op_result() local 258 int nretries = mt->mt_nretries; in asyncmeta_bind_op_result() 288 timeout = mt->mt_timeout[ opidx ]; in asyncmeta_bind_op_result() 319 tv = mt->mt_bind_timeout; in asyncmeta_bind_op_result() 385 a_metatarget_t *mt = mi->mi_targets[ candidate ]; in asyncmeta_single_bind() local 410 dc.target = mt; in asyncmeta_single_bind() 457 if ( mt->mt_idassert_flags & LDAP_BACK_AUTH_OVERRIDE ) { in asyncmeta_single_bind() [all …]
|
| H A D | conn.c | 83 a_metatarget_t *mt = mi->mi_targets[ candidate ]; in asyncmeta_init_one_conn() local 98 if ( mt->mt_isquarantined ) { in asyncmeta_init_one_conn() 99 slap_retry_info_t *ri = &mt->mt_quarantine; in asyncmeta_init_one_conn() 102 if ( mt->mt_quarantine.ri_interval ) { in asyncmeta_init_one_conn() 103 ldap_pvt_thread_mutex_lock( &mt->mt_quarantine_mutex ); in asyncmeta_init_one_conn() 104 dont_retry = ( mt->mt_isquarantined > LDAP_BACK_FQ_NO ); in asyncmeta_init_one_conn() 115 mt->mt_isquarantined = LDAP_BACK_FQ_RETRYING; in asyncmeta_init_one_conn() 119 ldap_pvt_thread_mutex_unlock( &mt->mt_quarantine_mutex ); in asyncmeta_init_one_conn() 178 ldap_pvt_thread_mutex_lock( &mt->mt_uri_mutex ); in asyncmeta_init_one_conn() 180 rs->sr_err = ldap_initialize( &msc->msc_ld, mt->mt_uri ); in asyncmeta_init_one_conn() [all …]
|
| /netbsd-src/sys/dev/mscp/ |
| H A D | mscp_tape.c | 114 CFATTACH_DECL_NEW(mt, sizeof(struct mt_softc), 177 struct mt_softc *mt = device_private(self); in mtattach() local 182 mt->mt_dev = self; in mtattach() 183 mt->mt_hwunit = mp->mscp_unit; in mtattach() 194 mt_putonline(struct mt_softc *mt) in mt_putonline() argument 198 device_private(device_parent(mt->mt_dev)); in mt_putonline() 200 ((volatile struct mt_softc *) mt)->mt_state = MT_OFFLINE; in mt_putonline() 203 mp->mscp_unit = mt->mt_hwunit; in mt_putonline() 204 mp->mscp_cmdref = (long)&mt->mt_state; in mt_putonline() 209 if (tsleep(&mt->mt_state, PRIBIO, "mtonline", 240 * hz)) in mt_putonline() [all …]
|
| /netbsd-src/external/bsd/libfido2/dist/fuzz/ |
| H A D | prng.c | 57 static unsigned long mt[N]; /* the array for the state vector */ variable 63 mt[0]= s & 0xffffffffUL; in init_genrand() 65 mt[mti] = in init_genrand() 66 (1812433253UL * (mt[mti-1] ^ (mt[mti-1] >> 30)) + in init_genrand() 72 mt[mti] &= 0xffffffffUL; in init_genrand() 91 y = (mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK); in genrand_int32() 92 mt[kk] = mt[kk+M] ^ (y >> 1) ^ mag01[y & 0x1UL]; in genrand_int32() 95 y = (mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK); in genrand_int32() 96 mt[kk] = mt[kk+(M-N)] ^ (y >> 1) ^ mag01[y & 0x1UL]; in genrand_int32() 98 y = (mt[N-1]&UPPER_MASK)|(mt[0]&LOWER_MASK); in genrand_int32() [all …]
|
| /netbsd-src/external/bsd/mdocml/dist/ |
| H A D | man_term.c | 47 struct mtermp *mt, \ 147 struct mtermp mt; in terminal_man() local 161 memset(&mt, 0, sizeof(mt)); in terminal_man() 162 mt.lmargin[mt.lmargincur] = term_len(p, p->defindent); in terminal_man() 163 mt.offset = term_len(p, p->defindent); in terminal_man() 164 mt.pardist = 1; in terminal_man() 173 print_man_nodelist(p, &mt, in terminal_man() 184 print_man_nodelist(p, &mt, n, man); in terminal_man() 264 mt->pardist = 1; in pre_PD() 269 mt->pardist = term_vspan(p, &su); in pre_PD() [all …]
|
| /netbsd-src/external/bsd/am-utils/dist/amq/ |
| H A D | amq.c | 97 show_mti(amq_mount_tree *mt, enum show_opt e, int *mwid, int *dwid, int *twid) in show_mti() argument 102 int mw = strlen(mt->mt_mountinfo); in show_mti() 103 int dw = strlen(mt->mt_directory); in show_mti() 104 int tw = strlen(mt->mt_type); in show_mti() 118 *mt->mt_directory ? mt->mt_directory : "/", /* XXX */ in show_mti() 120 mt->mt_type, in show_mti() 122 mt->mt_mountinfo, in show_mti() 123 mt->mt_mountpoint, in show_mti() 125 mt->mt_mountuid, in show_mti() 126 mt->mt_getattr, in show_mti() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | typesem.d | 191 private void resolveHelper(TypeQualified mt, const ref Loc loc, Scope* sc, Dsymbol s, Dsymbol scope… 196 printf("TypeQualified::resolveHelper(sc = %p, idents = '%s')\n", sc, mt.toChars()); in version() 205 const p = mt.mutableOf().unSharedOf().toChars(); 239 for (size_t i = 0; i < mt.idents.dim; i++) 241 RootObject id = mt.idents[i]; 258 ex = typeToExpressionHelper(mt, ex, i + 1); 302 e = typeToExpressionHelper(mt, e, i); in helper3() 366 …ntifier `%s` of `%s` is not defined, did you mean %s `%s`?", id.toChars(), mt.toChars(), sm.kind()… 368 … error(loc, "identifier `%s` of `%s` is not defined", id.toChars(), mt.toChars()); 438 if (ti != mt && !ti.deco) [all …]
|
| /netbsd-src/sys/dev/ic/ |
| H A D | ns8477reg.h | 109 #define FDC_CMD_WRITE_DATA(mt,mfm) (0x05|mt|mfm) argument 110 #define FDC_CMD_READ_DATA(mt,mfm,sk) (0x06|mt|mfm|sk) argument 113 #define FDC_CMD_WRITE_DEL_DATA(mt,mfm) (0x09|mt|mfm) argument 115 #define FDC_CMD_READ_DEL_DATA(mt,mfm,sk) (0x0c|mt|mfm|sk) argument 120 #define FDC_CMD_SCAN_EQUAL(mt,mfm,sk) (0x11|mt|mfm|sk) argument 124 #define FDC_CMD_VERIFY(mt,mfm,sk) (0x16|mt|mfm|sk) argument 126 #define FDC_CMD_SCAN_LO_EQUAL(mt,mfm,sk) (0x19|mt|mfm|sk) argument 127 #define FDC_CMD_SCAN_HI_EQUAL(mt,mfm,sk) (0x1d|mt|mfm|sk) argument
|
| /netbsd-src/external/lgpl3/gmp/dist/rand/ |
| H A D | randmt.c | 169 __gmp_mt_recalc_buffer (gmp_uint_least32_t mt[]) in __gmp_mt_recalc_buffer() argument 176 y = (mt[kk] & 0x80000000) | (mt[kk + 1] & 0x7FFFFFFF); in __gmp_mt_recalc_buffer() 177 mt[kk] = mt[kk + M] ^ (y >> 1) ^ ((y & 0x01) != 0 ? MATRIX_A : 0); in __gmp_mt_recalc_buffer() 181 y = (mt[kk] & 0x80000000) | (mt[kk + 1] & 0x7FFFFFFF); in __gmp_mt_recalc_buffer() 182 mt[kk] = mt[kk - (N - M)] ^ (y >> 1) ^ ((y & 0x01) != 0 ? MATRIX_A : 0); in __gmp_mt_recalc_buffer() 185 y = (mt[N - 1] & 0x80000000) | (mt[0] & 0x7FFFFFFF); in __gmp_mt_recalc_buffer() 186 mt[N - 1] = mt[M - 1] ^ (y >> 1) ^ ((y & 0x01) != 0 ? MATRIX_A : 0); in __gmp_mt_recalc_buffer() 201 gmp_uint_least32_t *mt; in __gmp_randget_mt() local 204 mt = ((gmp_rand_mt_struct *) RNG_STATE (rstate))->mt; in __gmp_randget_mt() 214 __gmp_mt_recalc_buffer (mt); \ in __gmp_randget_mt() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/util/perl/ |
| H A D | checkhandshake.pm | 112 $chnum++ if $message->mt() == TLSProxy::Message::MT_CLIENT_HELLO; 113 $shnum++ if $message->mt() == TLSProxy::Message::MT_SERVER_HELLO; 115 next if ($message->mt() != TLSProxy::Message::MT_CLIENT_HELLO 116 && $message->mt() != TLSProxy::Message::MT_SERVER_HELLO 117 && $message->mt() != 119 && $message->mt() != TLSProxy::Message::MT_CERTIFICATE 120 && $message->mt() != TLSProxy::Message::MT_CERTIFICATE_REQUEST); 122 next if $message->mt() == TLSProxy::Message::MT_CERTIFICATE 138 next if ($message->mt() != $extensions[$extloop][0]); 174 ok($message->mt == $handmessages[$loop][0], [all …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/util/perl/ |
| H A D | checkhandshake.pm | 112 $chnum++ if $message->mt() == TLSProxy::Message::MT_CLIENT_HELLO; 113 $shnum++ if $message->mt() == TLSProxy::Message::MT_SERVER_HELLO; 115 next if ($message->mt() != TLSProxy::Message::MT_CLIENT_HELLO 116 && $message->mt() != TLSProxy::Message::MT_SERVER_HELLO 117 && $message->mt() != 119 && $message->mt() != TLSProxy::Message::MT_CERTIFICATE 120 && $message->mt() != TLSProxy::Message::MT_CERTIFICATE_REQUEST); 122 next if $message->mt() == TLSProxy::Message::MT_CERTIFICATE 138 next if ($message->mt() != $extensions[$extloop][0]); 174 ok($message->mt == $handmessages[$loop][0], [all …]
|
| /netbsd-src/lib/libc/resolv/ |
| H A D | mtctxres.c | 63 mtctxres_t *mt; in __res_init_ctx() local 72 if ((mt = malloc(sizeof (mtctxres_t))) == 0) { in __res_init_ctx() 77 memset(mt, 0, sizeof (mtctxres_t)); in __res_init_ctx() 79 if ((ret = pthread_setspecific(key, mt)) != 0) { in __res_init_ctx() 80 free(mt); in __res_init_ctx() 91 mtctxres_t *mt = (mtctxres_t *)value; in __res_destroy_ctx() local 93 if (mt != 0) in __res_destroy_ctx() 94 free(mt); in __res_destroy_ctx() 101 mtctxres_t *mt; in ___mtctxres() local 122 if (((mt = pthread_getspecific(key)) != 0) || in ___mtctxres() [all …]
|
| /netbsd-src/external/bsd/libbind/dist/resolv/ |
| H A D | mtctxres.c | 64 mtctxres_t *mt; in __res_init_ctx() local 73 if ((mt = malloc(sizeof (mtctxres_t))) == 0) { in __res_init_ctx() 78 memset(mt, 0, sizeof (mtctxres_t)); in __res_init_ctx() 80 if ((ret = pthread_setspecific(key, mt)) != 0) { in __res_init_ctx() 81 free(mt); in __res_init_ctx() 92 mtctxres_t *mt = (mtctxres_t *)value; in __res_destroy_ctx() local 94 if (mt != 0) in __res_destroy_ctx() 95 free(mt); in __res_destroy_ctx() 102 mtctxres_t *mt; in ___mtctxres() local 123 if (((mt = pthread_getspecific(key)) != 0) || in ___mtctxres() [all …]
|
| /netbsd-src/external/bsd/openldap/dist/servers/slapd/overlays/ |
| H A D | seqmod.c | 63 modtarget *mt, mtdummy; in seqmod_op_cleanup() local 72 mt = av->avl_data; in seqmod_op_cleanup() 75 if ( mt->mt_next ) { in seqmod_op_cleanup() 76 av->avl_data = mt->mt_next; in seqmod_op_cleanup() 77 mt->mt_next->mt_tail = mt->mt_tail; in seqmod_op_cleanup() 79 ldap_avl_delete( &sm->sm_mods, mt, sm_avl_cmp ); in seqmod_op_cleanup() 93 modtarget *mt; in seqmod_op_mod() local 99 mt = (modtarget *)(cb+1); in seqmod_op_mod() 100 mt->mt_next = NULL; in seqmod_op_mod() 101 mt->mt_tail = mt; in seqmod_op_mod() [all …]
|
| /netbsd-src/external/bsd/openldap/dist/servers/slapd/back-monitor/ |
| H A D | thread.c | 50 monitor_thread_t mt; member 51 } mt[] = { variable 132 for ( i = 0; !BER_BVISNULL( &mt[ i ].rdn ); i++ ) { in monitor_subsys_thread_init() 142 &mt[ i ].rdn, in monitor_subsys_thread_init() 148 mt[ i ].rdn.bv_val, in monitor_subsys_thread_init() 155 dnRdn( &e->e_nname, &mt[ i ].nrdn ); in monitor_subsys_thread_init() 157 switch ( mt[ i ].param ) { in monitor_subsys_thread_init() 163 mt[ i ].param, (void *)&state ) == 0 ) in monitor_subsys_thread_init() 175 mt[ i ].param, (void *)&count ); in monitor_subsys_thread_init() 185 if ( !BER_BVISNULL( &mt[ i ].desc ) ) { in monitor_subsys_thread_init() [all …]
|