| /src/external/bsd/openldap/dist/clients/tools/ |
| ldapurl.c | 68 char *uri; local 94 uri = ldap_url_desc2str( lud ); 106 if ( uri == NULL ) { 107 fprintf( stderr, "unable to generate URI\n" ); 111 printf( "%s\n", uri ); 112 free( uri ); 118 do_uri_explode( const char *uri ) 123 rc = ldap_url_parse( uri, &lud ); 125 fprintf( stderr, "unable to parse URI \"%s\"\n", uri ); 177 char *uri = NULL; local [all...] |
| /src/external/bsd/wpa/dist/src/utils/ |
| http-utils.h | 26 char *uri; member in struct:http_logo
|
| browser.c | 62 const char *uri) 66 if (g_str_has_prefix(uri, "osu://")) { 67 ctx->success = atoi(uri + 6); 69 } else if (g_str_has_prefix(uri, "http://localhost:12345")) { 107 const gchar *uri = webkit_uri_request_get_uri(req); local 109 wpa_printf(MSG_DEBUG, "BROWSER:%s uri=%s", __func__, uri); 110 process_request_starting_uri(ctx, uri); 138 const gchar *uri; local 143 uri = webkit_uri_request_get_uri(req) 163 const char *uri = NULL; local 227 const gchar *uri = webkit_network_request_get_uri(req); local 257 const gchar *uri; local [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/x509/ |
| by_store.c | 17 char *uri; member in struct:cached_store_st 32 if ((ctx = OSSL_STORE_open_ex(store->uri, store->libctx, store->propq, 41 * from the container that the URI represents rather than the subset that 47 * but it's possible that the URI is a single file rather than a directory, 72 * uri. if |depth| allows, dive into it. 77 substore.uri = (char *)OSSL_STORE_INFO_get0_NAME(info); 112 OPENSSL_free(store->uri); 139 store->uri = OPENSSL_strdup(argp); 151 || store->uri == NULL) { 169 /* NOP if no URI is given. * [all...] |
| /src/external/bsd/libevent/dist/include/event2/ |
| rpc_struct.h | 73 /* the URI at which the request handler lives */ 74 const char* uri; member in struct:evrpc
|
| http_struct.h | 98 char *uri; /* uri after HTTP request was parsed */ member in struct:evhttp_request 99 struct evhttp_uri *uri_elems; /* uri elements */
|
| /src/external/bsd/libevent/dist/sample/ |
| http-connect.c | 31 struct evhttp_uri *uri; local 32 VERIFY(uri = evhttp_uri_parse(str)); 33 VERIFY(evhttp_uri_get_host(uri)); 34 VERIFY(evhttp_uri_get_port(uri) > 0); 35 return uri; 37 static char* uri_path(struct evhttp_uri *uri, char buffer[URL_MAX]) 41 VERIFY(evhttp_uri_join(uri, buffer, URL_MAX)); 51 static char* uri_hostport(struct evhttp_uri *uri, char buffer[URL_MAX]) 53 VERIFY(evhttp_uri_join(uri, buffer, URL_MAX)); 54 VERIFY(evhttp_uri_get_host(uri)); [all...] |
| https-client.c | 224 char uri[256]; local 337 snprintf(uri, sizeof(uri) - 1, "%s", path); 339 snprintf(uri, sizeof(uri) - 1, "%s?%s", path, query); 341 uri[sizeof(uri) - 1] = '\0'; 500 r = evhttp_make_request(evcon, req, data_file ? EVHTTP_REQ_POST : EVHTTP_REQ_GET, uri);
|
| /src/external/bsd/ntp/dist/sntp/libevent/include/event2/ |
| rpc_struct.h | 74 /* the URI at which the request handler lives */ 75 const char* uri; member in struct:evrpc
|
| http_struct.h | 99 char *uri; /* uri after HTTP request was parsed */ member in struct:evhttp_request 100 struct evhttp_uri *uri_elems; /* uri elements */
|
| /src/external/bsd/ntp/dist/sntp/libevent/sample/ |
| http-connect.c | 30 struct evhttp_uri *uri; local 31 VERIFY(uri = evhttp_uri_parse(str)); 32 VERIFY(evhttp_uri_get_host(uri)); 33 VERIFY(evhttp_uri_get_port(uri) > 0); 34 return uri; 36 static char* uri_path(struct evhttp_uri *uri, char buffer[URL_MAX]) 40 VERIFY(evhttp_uri_join(uri, buffer, URL_MAX)); 50 static char* uri_hostport(struct evhttp_uri *uri, char buffer[URL_MAX]) 52 VERIFY(evhttp_uri_join(uri, buffer, URL_MAX)); 53 VERIFY(evhttp_uri_get_host(uri)); [all...] |
| /src/external/bsd/openldap/dist/servers/slapd/back-wt/ |
| index.c | 391 char uri[1024]; local 394 snprintf(uri, sizeof(uri), "table:%s", name->bv_val); 396 rc = session->open_cursor(session, uri, NULL, "overwrite=false", &cursor); 398 rc = session->create(session, uri, 406 uri, wiredtiger_strerror(rc), rc); 409 rc = session->open_cursor(session, uri, NULL, 416 uri, wiredtiger_strerror(rc), rc);
|
| /src/external/mpl/bind/dist/lib/dns/ |
| keystore.c | 133 dns_keystore_setpkcs11uri(dns_keystore_t *keystore, const char *uri) { 139 keystore->pkcs11uri = (uri == NULL) 141 : isc_mem_strdup(keystore->mctx, uri); 145 buildpkcs11label(const char *uri, const dns_name_t *zname, const char *policy, 154 /* uri + object */ 155 if (isc_buffer_availablelength(buf) < strlen(uri) + strlen(";object=")) 159 isc_buffer_putstr(buf, uri); 197 const char *uri = NULL; local 205 uri = dns_keystore_pkcs11uri(keystore); 206 if (uri != NULL) [all...] |
| /src/external/mpl/bind/dist/lib/dns/rdata/generic/ |
| uri_256.c | 54 * Target URI 95 * Target URI 120 * Priority, weight and target URI 179 dns_rdata_uri_t *uri = source; local 182 REQUIRE(uri != NULL); 183 REQUIRE(uri->common.rdtype == type); 184 REQUIRE(uri->common.rdclass == rdclass); 185 REQUIRE(uri->target != NULL && uri->tgt_len != 0); 193 RETERR(uint16_tobuffer(uri->priority, target)) 208 dns_rdata_uri_t *uri = target; local 242 dns_rdata_uri_t *uri = (dns_rdata_uri_t *)source; local [all...] |
| /src/external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/ |
| uri_256.c | 54 * Target URI 95 * Target URI 121 * Priority, weight and target URI 180 dns_rdata_uri_t *uri = source; local 183 REQUIRE(uri != NULL); 184 REQUIRE(uri->common.rdtype == type); 185 REQUIRE(uri->common.rdclass == rdclass); 186 REQUIRE(uri->target != NULL && uri->tgt_len != 0); 194 RETERR(uint16_tobuffer(uri->priority, target)) 209 dns_rdata_uri_t *uri = target; local 255 dns_rdata_uri_t *uri = (dns_rdata_uri_t *)source; local [all...] |
| /src/crypto/external/bsd/openssl/dist/test/ |
| ossl_store_test.c | 72 static int get_params(const char *uri, const char *type) 79 ctx = OSSL_STORE_open_ex(uri, NULL, NULL, NULL, NULL, NULL, NULL, NULL); 106 char uri[PATH_MAX]; local 142 if (!TEST_true(BIO_snprintf(uri, sizeof(uri), urifmt, datadir, type))) 145 TEST_info("Testing uri: %s", uri); 146 if (!TEST_true(get_params(uri, type)))
|
| /src/external/bsd/openldap/dist/libraries/librewrite/ |
| ldapmap.c | 99 char *p, *uri; local 111 "[%s:%d] ldap map needs URI\n", 117 uri = argv[ 0 ]; 118 if ( strncasecmp( uri, "uri=", STRLENOF( "uri=" ) ) == 0 ) { 119 uri += STRLENOF( "uri=" ); 122 data->lm_url = strdup( uri ); 128 if ( ldap_url_parse( uri, &data->lm_lud ) != REWRITE_SUCCESS ) [all...] |
| /src/external/bsd/openldap/dist/tests/progs/ |
| slapd-common.h | 37 extern char * tester_uri( char *uri ); 45 char *uri; member in struct:tester_conn_args 76 "[-H <uri>]" \
|
| slapd-auth.c | 58 fprintf( stderr, "usage: %s -H <uri> -b <baseDN> -w <passwd> -t <seconds> -r lo:hi\n\t" 67 static char *uri = "ldap:///"; variable 96 case 'H': /* the server uri */ 97 uri = optarg; 171 ldap_initialize( &ld, uri ); 184 ldap_initialize( &sld, uri );
|
| /src/external/bsd/tmux/dist/ |
| hyperlinks.c | 35 * Each URI has one inner number and one external ID (which tmux uses to send 40 * the same URI (terminals will not want to tie them together). 54 const char *uri; member in struct:hyperlinks_uri 58 RB_ENTRY(hyperlinks_uri) by_uri_entry; /* by internal ID and URI */ 82 * that they do not match even if the URI is the same - each 83 * anonymous URI should be unique. 95 return (strcmp(left->uri, right->uri)); 127 free(__UNCONST(hlu->uri)); 137 char *uri, *internal_id, *external_id local [all...] |
| /src/libexec/httpd/ |
| cgi-bozo.c | 222 /* URI MUST not contain any unencoded '=' - RFC3875, section 4.4 */ 381 char *uri; local 397 uri = request->hr_oldfile; 399 uri = request->hr_file; 401 if (uri[0] == '/') 402 file = bozostrdup(httpd, request, uri); 404 bozoasprintf(httpd, &file, "/%s", uri); 546 bozo_setenv(httpd, "REQUEST_URI", uri, curenvp++);
|
| lua-bozo.c | 311 char *s, *query, *uri, *file, *command, *info, *content; local 322 uri = request->hr_oldfile ? request->hr_oldfile : request->hr_file; 324 if (*uri == '/') { 325 file = bozostrdup(httpd, request, uri); 328 prefix = bozostrdup(httpd, request, &uri[1]); 330 if (asprintf(&file, "/%s", uri) < 0) 332 prefix = bozostrdup(httpd, request, uri); 384 lua_env(map->L, "REQUEST_URI", uri); 450 free(uri);
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| ossl_store_test.c | 141 static int get_params(const char *uri, const char *type) 148 ctx = OSSL_STORE_open_ex(uri, NULL, NULL, NULL, NULL, NULL, NULL, NULL); 175 char uri[PATH_MAX]; local 211 if (!TEST_true(BIO_snprintf(uri, sizeof(uri), urifmt, datadir, type))) 214 TEST_info("Testing uri: %s", uri); 215 if (!TEST_true(get_params(uri, type)))
|
| /src/external/bsd/wpa/dist/hs20/client/ |
| spp_client.c | 153 char *uri, *pos; local 160 uri = get_spp_attr_value(ctx->xml, update, "managementTreeURI"); 161 if (uri == NULL) { 165 wpa_printf(MSG_INFO, "managementTreeUri: '%s'", uri); 167 name = os_strrchr(uri, '/'); 169 wpa_printf(MSG_INFO, "Unexpected URI"); 170 xml_node_get_attr_value_free(ctx->xml, uri); 179 xml_node_get_attr_value_free(ctx->xml, uri); 206 xml_node_get_attr_value_free(ctx->xml, uri); 214 xml_node_get_attr_value_free(ctx->xml, uri); 378 char *uri, *urn; local 517 char *uri; local [all...] |
| /src/external/ibm-public/postfix/dist/src/global/ |
| dict_mongodb.c | 118 char *uri; /* mongodb+srv:/*localhost:27017 */ member in struct:__anon23073 164 dict_mongodb->uri = cfg_get_str(p, "uri", NULL, 1, 0); 480 myfree(dict_mongodb->uri); 506 mongoc_uri_t *uri = 0; local 545 if (uri) mongoc_uri_destroy(uri); \ 550 uri = mongoc_uri_new_with_error(dict_mongodb->uri, &error); 551 if (!uri) [all...] |