| /netbsd/src/external/bsd/openldap/dist/contrib/ldapc++/src/ |
| D | LDAPConnection.cpp | 48 LDAPUrlList urls = res->getReferralUrls(); in bind() local 51 throw LDAPReferralException(urls); in bind() 82 LDAPUrlList urls = res->getReferralUrls(); in saslInteractiveBind() local 85 throw LDAPReferralException(urls); in saslInteractiveBind() 128 LDAPUrlList urls = res->getReferralUrls(); in compare() local 131 throw LDAPReferralException(urls); in compare() 162 LDAPUrlList urls = res->getReferralUrls(); in del() local 165 throw LDAPReferralException(urls); in del() 197 LDAPUrlList urls = res->getReferralUrls(); in add() local 200 throw LDAPReferralException(urls); in add() [all …]
|
| D | LDAPSearchRequest.cpp | 91 LDAPUrlList urls; in followReferral() local 97 urls = ((LDAPSearchReference *)ref)->getUrls(); in followReferral() 99 urls = ((LDAPResult *)ref)->getReferralUrls(); in followReferral() 101 con = getConnection()->referralConnect(urls,usedUrl,m_cons); in followReferral()
|
| D | LDAPUrlList.h | 32 LDAPUrlList(const LDAPUrlList& urls); 41 LDAPUrlList(char** urls);
|
| D | LDAPUrlList.cpp | 18 LDAPUrlList::LDAPUrlList(const LDAPUrlList& urls){ in LDAPUrlList() argument 20 m_urls = urls.m_urls; in LDAPUrlList()
|
| D | LDAPSearchResults.cpp | 54 LDAPUrlList urls= refPos->getUrls(); in getNext() local 56 throw(LDAPReferralException(urls)); in getNext()
|
| D | LDAPException.cpp | 83 LDAPReferralException::LDAPReferralException(const LDAPUrlList& urls) throw() in LDAPReferralException() argument 84 : LDAPException(LDAPResult::REFERRAL) , m_urlList(urls) in LDAPReferralException()
|
| D | LDAPDeleteRequest.cpp | 61 LDAPUrlList urls= ((LDAPResult*)refs)->getReferralUrls(); in followReferral() local 64 con = getConnection()->referralConnect(urls,usedUrl,m_cons); in followReferral()
|
| D | LDAPModifyRequest.cpp | 67 LDAPUrlList urls = ((LDAPResult*)ref)->getReferralUrls(); in followReferral() local 70 con = getConnection()->referralConnect(urls,usedUrl,m_cons); in followReferral()
|
| D | LDAPCompareRequest.cpp | 67 LDAPUrlList urls = ((LDAPResult*)ref)->getReferralUrls(); in followReferral() local 70 con=getConnection()->referralConnect(urls,usedUrl,m_cons); in followReferral()
|
| D | LDAPAddRequest.cpp | 66 LDAPUrlList urls = ((LDAPResult*)ref)->getReferralUrls(); in followReferral() local 69 con = getConnection()->referralConnect(urls,usedUrl,m_cons); in followReferral()
|
| D | LDAPExtRequest.cpp | 70 LDAPUrlList urls = ((LDAPResult*)ref)->getReferralUrls(); in followReferral() local 73 con = getConnection()->referralConnect(urls,usedUrl,m_cons); in followReferral()
|
| D | LDAPModDNRequest.cpp | 74 LDAPUrlList urls = ((LDAPResult*)ref)->getReferralUrls(); in followReferral() local 77 con = getConnection()->referralConnect(urls,usedUrl,m_cons); in followReferral()
|
| D | LDAPAsynConnection.cpp | 316 const LDAPUrlList& urls, LDAPUrlList::const_iterator& usedUrl, in referralConnect() argument 324 for(conUrl=urls.begin(); conUrl!=urls.end(); conUrl++){ in referralConnect()
|
| /netbsd/src/external/bsd/openldap/dist/servers/slapd/back-dnssrv/ |
| D | referral.c | 47 BerVarray urls = NULL; in dnssrv_back_referrals() local 107 if ( ber_bvarray_add( &urls, &url ) < 0 ) { in dnssrv_back_referrals() 117 op->o_req_dn.bv_val, urls[0].bv_val ); in dnssrv_back_referrals() 120 op->o_req_dn.bv_val, urls[0].bv_val ); in dnssrv_back_referrals() 122 rs->sr_ref = urls; in dnssrv_back_referrals() 132 ber_bvarray_free( urls ); in dnssrv_back_referrals()
|
| D | search.c | 50 BerVarray urls = NULL; in dnssrv_back_search() local 116 if( ber_bvarray_add( &urls, &url ) < 0 ) { in dnssrv_back_search() 127 op->o_req_dn.bv_len ? op->o_req_dn.bv_val : "", urls[0].bv_val ); in dnssrv_back_search() 133 urls[0].bv_val ); in dnssrv_back_search() 215 attr_merge_normalize_one( &e, ad_ref, urls, NULL ); in dnssrv_back_search() 242 if( urls != NULL ) ber_bvarray_free( urls ); in dnssrv_back_search()
|
| /netbsd/src/external/gpl3/gdb/dist/gdb/ |
| D | debuginfod-support.c | 231 const char *urls = skip_spaces (getenv (DEBUGINFOD_URLS_ENV_VAR)); in debuginfod_is_enabled() local 234 || urls == nullptr in debuginfod_is_enabled() 235 || *urls == '\0') in debuginfod_is_enabled() 243 std::string_view url_view (urls); in debuginfod_is_enabled() 522 set_debuginfod_urls (const std::string &urls) in set_debuginfod_urls() argument 525 if (setenv (DEBUGINFOD_URLS_ENV_VAR, urls.c_str (), 1) != 0) in set_debuginfod_urls() 537 static std::string urls; in get_debuginfod_urls() local 542 urls = envvar; in get_debuginfod_urls() 544 urls.clear (); in get_debuginfod_urls() 547 return urls; in get_debuginfod_urls()
|
| /netbsd/src/external/bsd/fetch/dist/libfetch/ |
| D | common.c | 869 tmp = realloc(ue->urls, (ue->alloc_size * 2 + 1) * sizeof(*tmp)); 877 ue->urls = tmp; 880 tmp = ue->urls + ue->length; 923 ue->urls = NULL; 935 tmp = realloc(dst->urls, len * sizeof(*tmp)); 942 dst->urls = tmp; 946 dst->urls[j] = src->urls[i]; 947 dst->urls[j].doc = strdup(src->urls[i].doc); 948 if (dst->urls[j].doc == NULL) { 950 free(dst->urls[j].doc); [all …]
|
| /netbsd/src/crypto/external/bsd/openssl/dist/crypto/ocsp/ |
| D | ocsp_ext.c | 433 X509_EXTENSION *OCSP_url_svcloc_new(const X509_NAME *issuer, const char **urls) in OCSP_url_svcloc_new() argument 445 if (urls && *urls in OCSP_url_svcloc_new() 448 while (urls && *urls) { in OCSP_url_svcloc_new() 455 if (!ASN1_STRING_set((ASN1_STRING *)ia5, *urls, -1)) in OCSP_url_svcloc_new() 464 urls++; in OCSP_url_svcloc_new()
|
| /netbsd/src/external/bsd/openldap/dist/servers/slapd/ |
| D | main.c | 416 char *urls = NULL; in ServiceMain() local 498 if (urls) in ServiceMain() 499 ch_free(urls); in ServiceMain() 501 urls = ch_strdup(newUrls); in ServiceMain() 503 urls ); in ServiceMain() 549 if ( urls != NULL ) free( urls ); in ServiceMain() 550 urls = optarg; in ServiceMain() 802 if( check == CHECK_NONE && slapd_daemon_init( urls ) != 0 ) { in ServiceMain() 1077 configfile : SLAPD_DEFAULT_CONFIGFILE , urls ); in ServiceMain()
|
| /netbsd/src/crypto/external/bsd/openssh/dist/ |
| D | ldapauth.c | 263 char * tmp = NULL, *urls[32]; in ldap_parse_servers() local 276 if ( tokenize(urls, sizeof(urls)/sizeof(*urls), s) < 0) in ldap_parse_servers() 280 while (urls[i]) { in ldap_parse_servers() 281 if (! ldap_is_ldap_url(urls[i]) || in ldap_parse_servers() 282 (ldap_url_parse(urls[i], &urld[i]) != 0)) { in ldap_parse_servers()
|
| /netbsd/src/external/bsd/openldap/dist/clients/tools/ |
| D | common.c | 1201 char **urls = NULL; in tool_conn_setup() local 1260 … tmp = (char **)ber_memrealloc( urls, sizeof( char * ) * ( nurls + i + 1 ) ); in tool_conn_setup() 1266 urls = tmp; in tool_conn_setup() 1267 urls[ nurls ] = NULL; in tool_conn_setup() 1275 urls[ nurls + i + 1 ] = NULL; in tool_conn_setup() 1276 … urls[ nurls + i ] = (char *)malloc( sizeof( char ) * len ); in tool_conn_setup() 1277 if ( urls[ nurls + i ] == NULL ) { in tool_conn_setup() 1283 … snprintf( urls[ nurls + i ], len, "%s://%s", in tool_conn_setup() 1294 … tmp = (char **)ber_memrealloc( urls, sizeof( char * ) * ( nurls + 2 ) ); in tool_conn_setup() 1300 urls = tmp; in tool_conn_setup() [all …]
|
| /netbsd/src/external/bsd/openldap/dist/libraries/libldap/ |
| D | url.c | 1315 char **urls; in ldap_url_parselist_int() local 1326 urls = ldap_str2charray( url, sep ); in ldap_url_parselist_int() 1327 if (urls == NULL) in ldap_url_parselist_int() 1331 for (i = 0; urls[i] != NULL; i++) ; in ldap_url_parselist_int() 1334 rc = ldap_url_parse_ext( urls[i], &ludp, flags ); in ldap_url_parselist_int() 1336 ldap_charray_free( urls ); in ldap_url_parselist_int() 1344 ldap_charray_free( urls ); in ldap_url_parselist_int()
|
| /netbsd/src/external/bsd/openldap/dist/libraries/liblutil/ |
| D | ntservice.c | 392 void lutil_LogStartedEvent( char *svc, int slap_debug, char *configfile, char *urls ) in lutil_LogStartedEvent() argument 403 Inserts[i++] = strdup( urls ? urls : "ldap:///" ); in lutil_LogStartedEvent()
|
| /netbsd/src/crypto/external/bsd/openssl/dist/test/ |
| D | ocspapitest.c | 189 static const char *urls[] = { in test_ocsp_url_svcloc_new() local 205 ext = OCSP_url_svcloc_new(X509_get_issuer_name(issuer), urls); in test_ocsp_url_svcloc_new()
|
| /netbsd/src/external/bsd/pkg_install/dist/lib/ |
| D | file.c | 180 static const url_t urls[] = { variable 203 for (up = urls; up->u_s; up++) { in URLlength()
|