| /src/external/bsd/openldap/dist/servers/slapd/back-perl/ |
| modify.c | 44 Modification *mods = &modlist->sml_mod; local 46 switch ( mods->sm_op & ~LDAP_MOD_BVALUES ) { 61 XPUSHs(sv_2mortal(newSVpv( mods->sm_desc->ad_cname.bv_val, 62 mods->sm_desc->ad_cname.bv_len ))); 65 mods->sm_values != NULL && mods->sm_values[i].bv_val != NULL; 68 XPUSHs(sv_2mortal(newSVpv( mods->sm_values[i].bv_val, mods->sm_values[i].bv_len )));
|
| /src/external/bsd/openldap/dist/servers/slapd/back-ldap/ |
| modify.c | 48 *mods = NULL; local 61 /* just count mods */ ; 69 mods = (LDAPMod *)&modv[ i + 1 ]; 78 modv[ i ] = &mods[ i ]; 79 mods[ i ].mod_op = ( ml->sml_op | LDAP_MOD_BVALUES ); 80 mods[ i ].mod_type = ml->sml_desc->ad_cname.bv_val; 84 /* just count mods */ ; 85 mods[ i ].mod_bvalues = 89 mods[ i ].mod_bvalues[ j ] = &ml->sml_values[ j ]; 91 mods[ i ].mod_bvalues[ j ] = NULL [all...] |
| /src/external/bsd/openldap/dist/tests/progs/ |
| slapd-modify.c | 146 struct ldapmod *mods[2]; local 154 mods[0] = &mod; 155 mods[1] = NULL; 169 rc = ldap_modify_ext_s( ld, entry, mods, NULL, NULL ); 196 rc = ldap_modify_ext_s( ld, entry, mods, NULL, NULL );
|
| /src/external/bsd/mdocml/dist/ |
| tbl_layout.c | 56 static void mods(struct tbl_node *, struct tbl_cell *, 65 mods(struct tbl_node *tbl, struct tbl_cell *cp, function 262 mods(tbl, cell_alloc(tbl, rp, c), ln, p, pos);
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/bn/ |
| bn_prime.c | 25 static int probable_prime(BIGNUM *rnd, int bits, int safe, prime_t *mods); 26 static int probable_prime_dh(BIGNUM *rnd, int bits, int safe, prime_t *mods, 61 prime_t *mods = NULL; local 78 mods = OPENSSL_zalloc(sizeof(*mods) * NUMPRIMES); 79 if (mods == NULL) 92 if (!probable_prime(ret, bits, safe, mods)) 95 if (!probable_prime_dh(ret, bits, safe, mods, add, rem, ctx)) 138 OPENSSL_free(mods); 272 static int probable_prime(BIGNUM *rnd, int bits, int safe, prime_t *mods) [all...] |
| /src/external/bsd/openldap/dist/contrib/slapd-modules/addpartial/ |
| addpartial-overlay.c | 86 Modifications *mods = NULL; local 87 Modifications **modtail = &mods; 253 if(mods) 261 Debug(LDAP_DEBUG_TRACE, "%s: mods to do...\n", 265 nop.orm_modlist = mods; 270 for(m = mods, modcount = 0; m; m = m->sml_next, 273 /* count number of mods */ 276 Debug(LDAP_DEBUG_TRACE, "%s: number of mods: %d\n", 302 Debug(LDAP_DEBUG_TRACE, "%s: freeing mods...\n", 305 for(toDel = mods; toDel; toDel = mods [all...] |
| /src/external/bsd/openldap/dist/servers/slapd/back-asyncmeta/ |
| modify.c | 53 LDAPMod *mods = NULL; local 83 mods = (LDAPMod *)&modv[ i + 1 ]; 94 modv[ i ] = &mods[ i ]; 95 mods[ i ].mod_op = ml->sml_op | LDAP_MOD_BVALUES; 96 mods[ i ].mod_type = ml->sml_desc->ad_cname.bv_val; 100 mods[ i ].mod_bvalues =(struct berval **)op->o_tmpalloc( ( j + 1 ) *sizeof( struct berval * ), op->o_tmpmemctx ); 102 mods[ i ].mod_bvalues[ j ] = op->o_tmpalloc(sizeof( struct berval ), op->o_tmpmemctx ); 104 asyncmeta_dn_massage( &dc, &ml->sml_values[ j ], mods[ i ].mod_bvalues[ j ] ); 106 *mods[ i ].mod_bvalues[ j ] = ml->sml_values[ j ]; 108 mods[ i ].mod_bvalues[ j ] = NULL [all...] |
| /src/external/bsd/openldap/dist/servers/slapd/back-meta/ |
| modify.c | 47 LDAPMod *mods = NULL; local 86 mods = (LDAPMod *)&modv[ i + 1 ]; 113 modv[ i ] = &mods[ i ]; 114 mods[ i ].mod_op = ml->sml_op | LDAP_MOD_BVALUES; 115 mods[ i ].mod_type = mapped.bv_val; 126 mods[ i ].mod_bvalues = 139 mods[ i ].mod_bvalues[ j ] = &ml->sml_values[ j ]; 142 mods[ i ].mod_bvalues[ j ] = &mapping->dst; 146 mods[ i ].mod_bvalues[ j ] = NULL; 160 mods[ i ].mod_bvalues [all...] |
| /src/external/bsd/openldap/dist/contrib/slapd-modules/samba4/ |
| pguid.c | 213 pguid_mod_t *mods; member in struct:__anon7653 269 mod->next = pcb->mods; 270 pcb->mods = mod; 339 for ( pmod = pcb.mods; pmod != NULL; ) {
|
| rdnval.c | 309 /* NOTE: should we accept an entry still in mods format? */ 417 rdnval_mod_t *mods; member in struct:__anon7655 462 mod->next = rcb->mods; 463 rcb->mods = mod; 534 for ( rmod = rcb.mods; rmod != NULL; ) {
|
| vernum.c | 65 /* NOTE: should we accept an entry still in mods format? */ 199 vernum_mod_t *mods; member in struct:__anon7657 231 mod->next = rcb->mods; 232 rcb->mods = mod; 308 for ( rmod = rcb.mods; rmod != NULL; ) {
|
| /src/external/bsd/unbound/dist/testcode/ |
| unitzonemd.c | 254 struct module_stack mods; local 291 modstack_init(&mods); 292 if(!modstack_call_startup(&mods, env.cfg->module_conf, &env)) 294 if(!modstack_call_init(&mods, env.cfg->module_conf, &env)) 296 env.mesh = mesh_create(&mods, &env); 308 auth_zone_verify_zonemd(z, &env, &mods, &result, 1, 0); 333 modstack_call_deinit(&mods, &env); 334 modstack_call_destartup(&mods, &env); 335 modstack_free(&mods);
|
| /src/sys/arch/next68k/dev/ |
| nextkbd.c | 71 uint32_t mods; member in struct:nextkbd_internal 356 printf("datain %08x mods %08x\n", datain, id->mods); 359 if (((datain ^ id->mods) & KD_LSHIFT) != 0) { 360 id->mods ^= KD_LSHIFT; 366 } else if (((datain ^ id->mods) & KD_RSHIFT) != 0) { 367 id->mods ^= KD_RSHIFT; 373 } else if (((datain ^ id->mods) & KD_LALT) != 0) { 374 id->mods ^= KD_LALT; 380 } else if (((datain ^ id->mods) & KD_RALT) != 0) [all...] |
| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/disp/ |
| nouveau_nvkm_engine_disp_channv50.c | 56 char mods[16]; local 59 snprintf(mods, sizeof(mods), "-> %08x", next); 61 snprintf(mods, sizeof(mods), "%13c", ' '); 65 mthd, prev, mods, name ? " // " : "",
|
| /src/crypto/external/bsd/openssl/dist/crypto/bn/ |
| bn_prime.c | 22 static int probable_prime(BIGNUM *rnd, int bits, int safe, prime_t *mods, 24 static int probable_prime_dh(BIGNUM *rnd, int bits, int safe, prime_t *mods, 130 prime_t *mods = NULL; local 147 mods = OPENSSL_zalloc(sizeof(*mods) * NUMPRIMES); 148 if (mods == NULL) { 160 if (!probable_prime(ret, bits, safe, mods, ctx)) 163 if (!probable_prime_dh(ret, bits, safe, mods, add, rem, ctx)) 206 OPENSSL_free(mods); 472 * |mods| is a preallocated array that gets reused when called again [all...] |
| /src/external/bsd/openldap/dist/libraries/libldap/ |
| test.c | 289 LDAPMod **mods, **attrs; local 499 if ( (mods = get_modlist( 504 if ( (id = ldap_modify( ld, dn, mods )) == -1 )
|
| /src/external/bsd/openldap/dist/servers/slapd/slapi/ |
| slapi_pblock.c | 652 LDAPMod **mods = NULL; local 655 pblock_get_default( pb, param, (void **)&mods ); 656 if ( mods == NULL && pb->pb_intop == 0 ) { 669 mods = slapi_int_modifications2ldapmods( ml ); 670 pblock_set_default( pb, param, (void *)mods ); 673 *((LDAPMod ***)value) = mods; 1374 LDAPMod **mods = NULL; local 1387 pblock_get_default( pb, SLAPI_MODIFY_MODS, (void **)&mods ); 1388 ldap_mods_free( mods, 1 );
|
| /src/external/bsd/openldap/dist/servers/slapd/ |
| slapmodify.c | 310 Modification mods = { 0 }; local 316 local_rc = slap_str2ad( mod->mod_type, &mods.sm_desc, &text ); 325 local_rc = slap_str2undef_ad( mod->mod_type, &mods.sm_desc, &text, 0 ); 334 mods.sm_type = mods.sm_desc->ad_cname; 336 if ( mods.sm_desc->ad_type->sat_syntax->ssyn_pretty ) { 340 assert( mods.sm_desc->ad_type->sat_syntax->ssyn_validate != NULL ); 343 if ( mods.sm_desc->ad_type->sat_equality && 344 mods.sm_desc->ad_type->sat_equality->smr_normalize ) 360 mods.sm_values = ch_calloc( sizeof( struct berval ), i + 1 ) [all...] |
| modify.c | 62 * mods SEQUENCE OF SEQUENCE { 433 Modifications *mods; local 436 for ( mods = ml; mods != NULL; mods = mods->sml_next ) { 437 assert( mods->sml_op == LDAP_MOD_ADD ); 441 if ( mods->sml_desc == modp->sml_desc && mods != modp ) { 444 mods->sml_desc->ad_cname.bv_val ) [all...] |
| /src/external/bsd/unbound/dist/daemon/ |
| daemon.h | 127 struct module_stack mods; member in struct:daemon
|
| /src/external/bsd/unbound/dist/libunbound/ |
| context.h | 120 struct module_stack mods; member in struct:ub_ctx
|
| /src/crypto/external/apache2/openssl/dist/crypto/bn/ |
| bn_prime.c | 22 static int probable_prime(BIGNUM *rnd, int bits, int safe, prime_t *mods, 24 static int probable_prime_dh(BIGNUM *rnd, int bits, int safe, prime_t *mods, 130 prime_t *mods = NULL; local 147 mods = OPENSSL_zalloc(sizeof(*mods) * NUMPRIMES); 148 if (mods == NULL) 158 if (!probable_prime(ret, bits, safe, mods, ctx)) 161 if (!probable_prime_dh(ret, bits, safe, mods, add, rem, ctx)) 204 OPENSSL_free(mods); 481 * |mods| is a preallocated array that gets reused when called again [all...] |
| /src/external/bsd/pcc/dist/pcc/cc/cxxcom/ |
| gcc_compat.c | 277 struct atax mods[] = { variable in typeref:struct:atax 296 #define ATSZ (sizeof(mods)/sizeof(mods[0])) 416 if ((i = amatch(ap->aa[0].sarg, mods, ATSZ)) == 0) 418 ap->aa[0].iarg = ctype(mods[i].typ);
|
| /src/external/bsd/unbound/dist/services/ |
| mesh.h | 84 struct module_stack mods; member in struct:mesh_area
|
| /src/external/gpl3/binutils/dist/ld/ |
| ldmisc.c | 43 size_t mods = strspn (scan, "-+ #0"); local 45 while (scan[mods] != '0' && ISDIGIT (scan[mods])) 46 ++mods; 47 if (scan[mods] == '.') 48 ++mods; 49 while (scan[mods] != '0' && ISDIGIT (scan[mods])) 50 ++mods; 52 return mods; 257 size_t mods; local [all...] |