| /src/external/bsd/openldap/dist/libraries/libldap/ |
| references.c | 92 char **refs = NULL; local 106 if ( ber_scanf( &be, "{v" /*}*/, &refs ) == LBER_ERROR ) { 127 *referralsp = refs; 130 LDAP_VFREE( refs );
|
| /src/external/bsd/openldap/dist/servers/slapd/back-mdb/ |
| referral.c | 122 BerVarray refs = get_entry_referrals( op, e ); local 124 refs, &e->e_name, &op->o_req_dn, LDAP_SCOPE_DEFAULT ); 143 ber_bvarray_free( refs );
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/ |
| event.h | 19 int *refs; member in struct:nvkm_event
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/ |
| nouveau_vmm.h | 11 int refs; member in struct:nouveau_vma
|
| /src/external/bsd/openldap/dist/clients/tools/ |
| ldapwhoami.c | 118 char *matcheddn = NULL, *text = NULL, **refs = NULL; local 177 &code, &matcheddn, &text, &refs, &ctrls, 0 ); 184 tool_perror( "ldap_parse_result", rc, NULL, matcheddn, text, refs ); 208 ( matcheddn && *matcheddn ) || ( text && *text ) || refs || ctrls ) 220 if( refs ) { 222 for( i=0; refs[i]; i++ ) { 223 printf(_("Referral: %s\n"), refs[i] ); 235 ber_memvfree( (void **) refs );
|
| ldapcompare.c | 285 char **refs; local 319 rc = ldap_parse_result( ld, res, &code, &matcheddn, &text, &refs, &ctrls, 1 ); 328 (matcheddn && *matcheddn) || (text && *text) || (refs && *refs) ) ) 341 if( refs ) { 343 for( i=0; refs[i]; i++ ) { 344 printf(_("Referral: %s\n"), refs[i] ); 367 ber_memvfree( (void **) refs );
|
| ldapexop.c | 80 char *matcheddn = NULL, *text = NULL, **refs = NULL; local 240 &code, &matcheddn, &text, &refs, &ctrls, 0 ); 246 tool_perror( "ldap_parse_result", rc, NULL, matcheddn, text, refs ); 327 ( matcheddn && *matcheddn ) || ( text && *text ) || refs ) { 338 if( refs ) { 340 for( i=0; refs[i]; i++ ) { 341 printf(_("Referral: %s\n"), refs[i] ); 353 ber_memvfree( (void **) refs );
|
| ldapmodrdn.c | 250 char *matcheddn=NULL, *text=NULL, **refs=NULL; local 295 rc = ldap_parse_result( ld, res, &code, &matcheddn, &text, &refs, &ctrls, 1 ); 304 (matcheddn && *matcheddn) || (text && *text) || (refs && *refs) ) 317 if( refs ) { 319 for( i=0; refs[i]; i++ ) { 320 printf(_("Referral: %s\n"), refs[i] ); 332 ber_memvfree( (void **) refs );
|
| ldapdelete.c | 236 char *matcheddn = NULL, *text = NULL, **refs = NULL; local 286 rc = ldap_parse_result( ld, res, &code, &matcheddn, &text, &refs, &ctrls, 1 ); 309 tool_perror( "ldap_delete", code, NULL, matcheddn, text, refs ); 311 ((matcheddn && *matcheddn) || (text && *text) || (refs && *refs) )) 324 if( refs ) { 326 for( i=0; refs[i]; i++ ) { 327 printf(_("Referral: %s\n"), refs[i] ); 339 ber_memvfree( (void **) refs );
|
| ldappasswd.c | 189 char *matcheddn = NULL, *text = NULL, **refs = NULL; local 366 &code, &matcheddn, &text, &refs, &ctrls, 0 ); 409 ( matcheddn && *matcheddn ) || ( text && *text ) || refs || ctrls ) 421 if( refs ) { 423 for( i=0; refs[i]; i++ ) { 424 printf(_("Referral: %s\n"), refs[i] ); 436 ber_memvfree( (void **) refs );
|
| ldapvc.c | 297 char *matcheddn = NULL, *text = NULL, **refs = NULL; local 463 &code, &matcheddn, &text, &refs, &ctrls, 0 ); 468 tool_perror( "ldap_parse_result", rc, NULL, matcheddn, text, refs ); 496 ( matcheddn && *matcheddn ) || ( text && *text ) || refs || ctrls ) 508 if( refs ) { 510 for( i=0; refs[i]; i++ ) { 511 printf(_("Referral: %s\n"), refs[i] ); 523 ber_memvfree( (void **) refs );
|
| ldapmodify.c | 671 char *text = NULL, *matched = NULL, **refs = NULL; local 697 rc = ldap_parse_result( ld, res, &err, &matched, &text, &refs, &ctrls, 1 ); 703 tool_perror( res2str( op ), rc, NULL, matched, text, refs ); local 712 if ( refs ) ber_memvfree( (void **)refs );
|
| /src/external/bsd/openldap/dist/contrib/ldapc++/src/ |
| LDAPResult.cpp | 23 char **refs=0; local 28 &matchedDN, &errMsg,&refs,&srvctrls,0); 30 ber_memvfree((void**) refs); 34 if (refs){ 35 m_referrals=LDAPUrlList(refs); 36 ber_memvfree((void**) refs);
|
| /src/sys/arch/xen/include/ |
| xenio_gntdev.h | 62 struct ioctl_gntdev_grant_ref refs[1]; member in struct:ioctl_gntdev_map_grant_ref
|
| /src/external/bsd/openldap/dist/servers/slapd/ |
| referral.c | 205 BerVarray refs; local 220 refs = ch_malloc( ( i + 1 ) * sizeof( struct berval ) ); 222 for ( iv = in, jv = refs; !BER_BVISNULL( iv ); iv++ ) { 257 if ( jv == refs ) { 258 ch_free( refs ); 259 refs = NULL; 265 return refs; 274 BerVarray refs; local 290 refs = ch_malloc( (i + 1) * sizeof(struct berval)); 292 for( iv=attr->a_vals, jv=refs; iv->bv_val != NULL; iv++ ) [all...] |
| /src/external/gpl2/texinfo/dist/info/ |
| footnotes.c | 72 REFERENCE **refs; local 74 refs = info_xrefs_of_node (node); 76 if (refs) 87 for (i = 0; refs[i]; i++) 88 if ((refs[i]->nodename != (char *)NULL) && 91 (strcmp (refs[i]->nodename, refname) == 0 || 92 (strncmp (refs[i]->nodename, refname, reflen - 1) == 0 && 93 refs[i]->nodename[reflen - 1] == '-' && 94 isdigit (refs[i]->nodename[reflen])))) 111 info_free_references (refs); [all...] |
| info-utils.c | 246 REFERENCE **refs = (REFERENCE **)NULL; 329 (entry, refs_index, refs, refs_slots, 50, REFERENCE *); 331 return (refs); 245 REFERENCE **refs = (REFERENCE **)NULL; local
|
| /src/external/bsd/openldap/dist/tests/progs/ |
| slapd-common.c | 275 char **refs = NULL; local 277 ldap_get_option( ld, LDAP_OPT_REFERRAL_URLS, (void *)&refs ); 279 if ( refs ) { 283 for ( i = 0; refs[ i ] != NULL; i++ ) { 284 fprintf( stderr, "\t\t%s\n", refs[ i ] ); 287 ber_memvfree( (void **)refs );
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/ |
| peer.h | 54 isc_refcount_t refs; member in struct:dns_peerlist 63 isc_refcount_t refs; member in struct:dns_peer
|
| tsig.h | 87 isc_refcount_t refs; /*%< reference counter */ member in struct:dns_tsigkey
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/mmu/ |
| nouveau_nvkm_subdev_mmu_base.c | 123 u32 refs; member in struct:nvkm_mmu_ptc 140 ptc->refs = 0; 162 if (pt->ptc->refs < 8 /* Heuristic. */ && !force) { 164 pt->ptc->refs++; 202 ptc->refs--;
|
| /src/external/gpl3/gcc/dist/gcc/ |
| ipa-modref-tree.h | 212 vec <modref_ref_node <T> *, va_gc> *refs; variable 217 refs (NULL), 225 FOR_EACH_VEC_SAFE_ELT (refs, i, n) 248 /* We always allow inserting ref 0. For non-0 refs there is upper 251 if (ref && refs && refs->length () >= max_refs) 254 fprintf (dump_file, "--param modref-max-refs limit reached;" 267 vec_safe_push (refs, ref_node); 276 if (refs) 278 FOR_EACH_VEC_SAFE_ELT (refs, i, r [all...] |
| regs.h | 61 int refs; /* # of times (REG n) is used or set */ member in struct:regstat_n_sets_and_refs_t 70 return regstat_n_sets_and_refs[regno].refs; 74 #define SET_REG_N_REFS(N,V) (regstat_n_sets_and_refs[N].refs = V) 75 #define INC_REG_N_REFS(N,V) (regstat_n_sets_and_refs[N].refs += V)
|
| rtlanal.h | 137 iterator_range<rtx_obj_reference *> refs () const; 202 rtx_properties::refs () const function in class:rtx_properties
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| ipa-modref-tree.h | 212 vec <modref_ref_node <T> *, va_gc> *refs; variable 217 refs (NULL), 225 FOR_EACH_VEC_SAFE_ELT (refs, i, n) 248 /* We always allow inserting ref 0. For non-0 refs there is upper 251 if (ref && refs && refs->length () >= max_refs) 254 fprintf (dump_file, "--param modref-max-refs limit reached;" 267 vec_safe_push (refs, ref_node); 276 if (refs) 278 FOR_EACH_VEC_SAFE_ELT (refs, i, r [all...] |