HomeSort by: relevance | last modified time | path
    Searched defs:url (Results 1 - 25 of 80) sorted by relevancy

1 2 3 4

  /src/external/bsd/nsd/dist/contrib/bind2nsd/
setup.py 35 url = 'http://www.secure64.com', variable
  /src/external/bsd/openldap/dist/libraries/libldap/
fetch.c 49 FILE *url; local
89 url = fopen( p, "rb" );
94 url = fetchGetURL( (char*) urlstr, "" );
96 url = NULL;
99 return url;
108 FILE *url; local
117 url = ldif_open_url( urlstr );
119 if( url == NULL ) {
125 while( (bytes = fread( buffer, 1, sizeof(buffer), url )) != 0 ) {
129 fclose( url );
    [all...]
urltest.c 3 /* urltest.c -- OpenLDAP URL API Test Program */
47 const char *url, local
58 fprintf( stderr, "usage: urltest <url>\n" );
62 url = argv[ 1 ];
64 if ( ldap_is_ldaps_url( url ) ) {
65 fprintf( stdout, "LDAPS url\n" );
68 } else if ( ldap_is_ldapi_url( url ) ) {
69 fprintf( stdout, "LDAPI url\n" );
72 } else if ( ldap_is_ldap_url( url ) ) {
73 fprintf( stdout, "generic LDAP url\n" )
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/back-dnssrv/
referral.c 99 struct berval url; local
101 url.bv_len = STRLENOF( "ldap://" ) + strlen( hosts[i] );
102 url.bv_val = ch_malloc( url.bv_len + 1 );
104 strcpy( url.bv_val, "ldap://" );
105 strcpy( &url.bv_val[STRLENOF( "ldap://" )], hosts[i] );
107 if ( ber_bvarray_add( &urls, &url ) < 0 ) {
108 free( url.bv_val );
115 "%s DNSSRV p=%d dn=\"%s\" url=\"%s\"\n",
119 Debug( LDAP_DEBUG_TRACE, "DNSSRV: dn=\"%s\" -> url=\"%s\"\n"
    [all...]
search.c 108 struct berval url; local
110 url.bv_len = STRLENOF( "ldap://" ) + strlen(hosts[i]);
111 url.bv_val = ch_malloc( url.bv_len + 1 );
113 strcpy( url.bv_val, "ldap://" );
114 strcpy( &url.bv_val[STRLENOF( "ldap://" )], hosts[i] );
116 if( ber_bvarray_add( &urls, &url ) < 0 ) {
117 free( url.bv_val );
125 "%s DNSSRV p=%d dn=\"%s\" url=\"%s\"\n",
130 "DNSSRV: ManageDSAit scope=%d dn=\"%s\" -> url=\"%s\"\n"
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/lit/
setup.py 18 url = 'http://llvm.org', variable
  /src/external/bsd/file/dist/python/
setup.py 15 url='https://github.com/file/file', variable
  /src/external/bsd/tre/dist/python/
setup.py 30 url = "http://laurikari.net/tre/", variable
  /src/external/bsd/wpa/dist/src/utils/
browser-android.c 34 const char *url; local
37 url = http_request_get_uri(req);
38 wpa_printf(MSG_INFO, "Browser response received: %s", url);
40 if (os_strcmp(url, "/") == 0) {
43 } else if (os_strncmp(url, "/osu/", 5) == 0) {
44 data->success = atoi(url + 5);
65 int hs20_web_browser(const char *url, int ignore_tls)
72 wpa_printf(MSG_INFO, "Launching Android browser to %s", url);
105 argv[5] = (void *) url;
browser-system.c 34 const char *url; local
37 url = http_request_get_uri(req);
38 wpa_printf(MSG_INFO, "Browser response received: %s", url);
40 if (os_strcmp(url, "/") == 0) {
43 } else if (os_strncmp(url, "/osu/", 5) == 0) {
44 data->success = atoi(url + 5);
65 int hs20_web_browser(const char *url, int ignore_tls)
72 wpa_printf(MSG_INFO, "Launching system browser to %s", url);
101 argv[1] = (void *) url;
browser-wpadebug.c 34 const char *url; local
37 url = http_request_get_uri(req);
38 wpa_printf(MSG_INFO, "Browser response received: %s", url);
40 if (os_strcmp(url, "/") == 0) {
43 } else if (os_strncmp(url, "/osu/", 5) == 0) {
44 data->success = atoi(url + 5);
66 int hs20_web_browser(const char *url, int ignore_tls)
73 wpa_printf(MSG_INFO, "Launching wpadebug browser to %s", url);
111 argv[9] = "w1.fi.wpadebug.URL";
112 argv[10] = (void *) url;
    [all...]
http-utils.h 36 const char *url; member in struct:http_cert
50 int http_download_file(struct http_ctx *ctx, const char *url,
52 char * http_post(struct http_ctx *ctx, const char *url, const char *data,
  /src/external/gpl3/gcc/dist/contrib/
gen_autofdo_event.py 99 url = baseurl + "/mapfile.csv" variable
100 print("Downloading", url, file = sys.stderr)
101 u = urllib.request.urlopen(url)
  /src/external/gpl3/gcc.old/dist/contrib/
gen_autofdo_event.py 97 url = baseurl + "/mapfile.csv" variable
98 print >>sys.stderr, "Downloading", url
99 u = urllib2.urlopen(url)
  /src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
httpd.h 32 * provide the data for it. We pass in the base url (so the same function
38 char *url; member in struct:isc_httpdurl
65 isc_httpdmgr_addurl(isc_httpdmgr_t *httpdmgr, const char *url,
69 isc_httpdmgr_addurl2(isc_httpdmgr_t *httpdmgr, const char *url, bool isstatic,
  /src/external/bsd/zstd/dist/tests/regression/
data.h 23 char const* url; /**< Where to get this resource. */ member in struct:__anon8919
24 uint64_t xxhash64; /**< Hash of the url contents. */
  /src/external/bsd/openldap/dist/libraries/librewrite/
xmap.c 165 char *url; local
189 url = calloc( sizeof( char ), l + 3 );
190 if ( url == NULL ) {
194 AC_MEMCPY( url, s + c, l );
195 url[ l ] = '\0';
200 p = strchr( url, '%' );
207 rc = ldap_url_parse( url, &lud );
208 free( url );
  /src/external/bsd/openldap/dist/servers/slapd/
referral.c 136 /* validate URL for global referral use
139 * Any non-LDAP URL is okay
143 int validate_global_referral( const char *url )
148 rc = ldap_url_parse_ext( url, &lurl, LDAP_PVT_URL_PARSE_NONE );
156 Debug( LDAP_DEBUG_CONFIG, "referral \"%s\": not LDAP.\n", url );
162 "referral: invalid URL (%s): %s (%d)\n",
163 url, "" /* ldap_url_error2str(rc) */, rc );
171 "referral: URL (%s): contains DN\n",
172 url );
177 "referral: URL (%s): requests attributes\n"
223 LDAPURLDesc *url; local
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/src/gnu/gettext/
GetURL.java 1 /* Fetch an URL's contents.
28 // Use a separate thread to signal a timeout error if the URL cannot
34 URL url; local
36 url = new URL(s);
61 InputStream istream = new BufferedInputStream(url.openStream());
  /src/tests/lib/libbluetooth/
t_sdp_get.c 605 char *url; local
609 * sdp_get_url expects a URL type
612 ATF_REQUIRE(sdp_get_url(&test, &url, &len));
613 ATF_CHECK(len == 4 && strncmp(url, "URL8", 4) == 0);
615 ATF_REQUIRE_EQ(sdp_get_url(&test, &url, &len), false); /* not url */
619 ATF_REQUIRE(sdp_get_url(&test, &url, &len));
620 ATF_CHECK(len == 5 && strncmp(url, "URL16", 5) == 0);
622 ATF_REQUIRE(sdp_get_url(&test, &url, &len));
623 ATF_CHECK(len == 5 && strncmp(url, "URL32", 5) == 0)
    [all...]
  /src/external/gpl2/texinfo/dist/makeinfo/
xref.c 486 /* A URL reference. */
493 char *url = get_xref_token (1); /* expands all macros in uref */ local
499 xml_insert_element_with_attribute (UREF, START, "url=\"%s\"",
500 text_expansion (url));
506 execute_string ("%s", url);
513 execute_string ("%s", url);
530 { /* never need to show the url */
532 /* don't collapse `--' etc. in the url */
534 execute_string ("\"%s\"", url);
538 : (*desc ? desc : url));
    [all...]
  /src/libexec/httpd/
cgi-bozo.c 203 append_index_html(bozohttpd_t *httpd, char **url)
205 *url = bozorealloc(httpd, *url,
206 strlen(*url) + strlen(httpd->index_html) + 1);
207 strcat(*url, httpd->index_html);
209 "append_index_html: url adjusted to `%s'", *url));
378 char *query, *s, *t, *path, *env, *command, *file, *url; local
411 bozoasprintf(httpd, &url, "%s%s%s",
415 debug((httpd, DEBUG_NORMAL, "%s: url `%s'", __func__, url))
    [all...]
  /src/share/examples/refuse/ian/libfetch/
fetch.h 40 struct url { struct
92 FILE *fetchXGetFile(struct url *, struct url_stat *, const char *);
93 FILE *fetchGetFile(struct url *, const char *);
94 FILE *fetchPutFile(struct url *, const char *);
95 int fetchStatFile(struct url *, struct url_stat *, const char *);
96 struct url_ent *fetchListFile(struct url *, const char *);
99 FILE *fetchXGetHTTP(struct url *, struct url_stat *, const char *);
100 FILE *fetchGetHTTP(struct url *, const char *);
101 FILE *fetchPutHTTP(struct url *, const char *);
102 int fetchStatHTTP(struct url *, struct url_stat *, const char *)
    [all...]
  /src/crypto/external/apache2/openssl/dist/apps/lib/
http_server.c 239 * Decode %xx URL-decoding in-place. Ignores malformed sequences.
272 char *meth, *url, *end; local
339 url = meth = reqbuf;
340 if ((accept_get && CHECK_AND_SKIP_PREFIX(url, "GET "))
341 || CHECK_AND_SKIP_PREFIX(url, "POST ")) {
343 /* Expecting (GET|POST) {sp} /URL {sp} HTTP/1.x */
344 url[-1] = '\0';
345 while (*url == ' ')
346 url++;
347 if (*url != '/')
    [all...]
  /src/crypto/external/bsd/openssl/dist/apps/lib/
http_server.c 261 * Decode %xx URL-decoding in-place. Ignores malformed sequences.
295 char *meth, *url, *end; local
343 url = meth + 3;
345 || (url++, strncmp(meth, "POST ", 5) == 0)) {
349 /* Expecting (GET|POST) {sp} /URL {sp} HTTP/1.x */
350 *(url++) = '\0';
351 while (*url == ' ')
352 url++;
353 if (*url != '/') {
355 "Invalid %s -- URL does not begin with '/': %s"
    [all...]

Completed in 38 milliseconds

1 2 3 4