Home
last modified time | relevance | path

Searched refs:url (Results 1 – 25 of 68) sorted by relevance

123

/titanic_50/usr/src/cmd/dtrace/demo/
H A Dchapters4 url: http://wikis.sun.com/display/DTrace/Documentation
9 url: http://wikis.sun.com/display/DTrace/Actions+and+Subroutines
14 url: http://wikis.sun.com/display/DTrace/Aggregations
19 url: http://wikis.sun.com/display/DTrace/Anonymous+Tracing
24 url: http://wikis.sun.com/display/DTrace/Buffers+and+Buffering
29 url: http://wikis.sun.com/display/DTrace/dtrace+Provider
34 url: http://wikis.sun.com/display/DTrace/fbt+Provider
39 url: http://wikis.sun.com/display/DTrace/Introduction
44 url: http://wikis.sun.com/display/DTrace/io+Provider
49 url: http://wikis.sun.com/display/DTrace/lockstat+Provider
[all …]
/titanic_50/usr/src/lib/libldap5/sources/ldap/common/
H A Durl.c64 ldap_is_ldap_url( const char *url ) in ldap_is_ldap_url() argument
68 return( url != NULL in ldap_is_ldap_url()
69 && skip_url_prefix( &url, &enclosed, &secure )); in ldap_is_ldap_url()
123 ldap_url_parse( const char *url, LDAPURLDesc **ludpp ) in ldap_url_parse() argument
130 if (( rc = nsldapi_url_parse( url, ludpp, 1 )) == 0 ) { in ldap_url_parse()
148 ldap_url_parse_nodn(const char *url, LDAPURLDesc **ludpp) in ldap_url_parse_nodn() argument
155 if ((rc = nsldapi_url_parse(url, ludpp, 0)) == 0) { in ldap_url_parse_nodn()
181 nsldapi_url_parse( const char *url, LDAPURLDesc **ludpp, int dn_required ) in nsldapi_url_parse() argument
188 LDAPDebug( LDAP_DEBUG_TRACE, "nsldapi_url_parse(%s)\n", url, 0, 0 ); in nsldapi_url_parse()
190 if ( url == NULL || ludpp == NULL ) { in nsldapi_url_parse()
[all …]
/titanic_50/usr/src/cmd/fs.d/nfs/lib/
H A Dnfs_subr.c127 char *url; in convert_special() local
136 url = malloc(strlen("nfs:") + strlen(oldpath) + 1); in convert_special()
138 if (url == NULL) in convert_special()
141 strcpy(url, "nfs:"); in convert_special()
142 strcat(url, oldpath); in convert_special()
150 free(url); in convert_special()
161 p = strstr(newspec, url); in convert_special()
164 free(url); in convert_special()
182 free(url); in convert_special()
209 free(url); in convert_special()
[all …]
/titanic_50/usr/src/cmd/ldap/common/
H A Dfileurl.c172 char *p, *url, *prefix ="file:"; in ldaptool_path2fileurl() local
182 if (( url = malloc( strlen( prefix ) + 3 * strlen( path ) + 1 )) == NULL ) { in ldaptool_path2fileurl()
186 strcpy( url, prefix ); in ldaptool_path2fileurl()
187 p = url + strlen( prefix ); in ldaptool_path2fileurl()
209 *urlp = url; in ldaptool_path2fileurl()
235 const char *url = NULL; in ldaptool_berval_from_ldif_value() local
248 for ( url = value + 1; isspace( *url ); ++url ) { in ldaptool_berval_from_ldif_value()
252 if (strlen(url) > 7 && strncasecmp(url, "file://", 7) != 0) { in ldaptool_berval_from_ldif_value()
256 url = NULL; in ldaptool_berval_from_ldif_value()
260 if ( NULL != url ) { in ldaptool_berval_from_ldif_value()
[all …]
/titanic_50/usr/src/common/net/wanboot/
H A DparseURL.c115 url_parse(const char *urlstr, url_t *url) { in url_parse() argument
134 url->https = B_FALSE; in url_parse()
137 url->https = B_TRUE; in url_parse()
155 ret = url_parse_hostport(optr, &url->hport, url->https ? in url_parse()
168 plen = strlcpy(url->abspath, ptr, sizeof (url->abspath)); in url_parse()
169 if (plen >= sizeof (url->abspath)) { in url_parse()
174 (void) strlcpy(url->abspath, "/", sizeof (url->abspath)); in url_parse()
/titanic_50/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/
H A DLogDRM.java55 private String url; field in LogDRM
64 public void connect(int requested, String url) throws Exception in connect() argument
72 this.url = url; in connect()
74 version + ", server: " + url); in connect()
85 Poold.CONF_LOG.log(Severity.INFO, "Disconnected from " + url); in disconnect()
/titanic_50/usr/src/lib/libslp/javalib/com/sun/slp/
H A DSSAAdvert.java55 ServiceURL url, in SSAAdvert() argument
72 this.initialize(url, scopes, attrs); in SSAAdvert()
77 void initialize(ServiceURL url, Vector scopes, Vector attrs) in initialize() argument
82 ServiceType serviceType = url.getServiceType(); in initialize()
106 String surl = url.toString(); in initialize()
121 url.getLifetime(), in initialize()
152 url.getLifetime()); in initialize()
176 " URL=``" + url + "''\n" + in initialize()
H A DSLPV1SDAAdvert.java53 ServiceURL url, in SLPV1SDAAdvert() argument
58 super(hdr, xid, timestamp, url, scopes, attrs); in SLPV1SDAAdvert()
65 ServiceURL url, in initialize() argument
102 hdr.parseServiceURLOut(url, false, baos); in initialize()
113 " URL=``" + url + "''\n" + in initialize()
H A DServiceStoreFactory.java264 ServiceURL url = null; in deserialize() local
277 url = new ServiceURL(surl, lifetime); in deserialize()
283 ServiceType utype = url.getServiceType(); in deserialize()
295 !t.equals(url.getServiceType())) { in deserialize()
296 url.setServiceType(t); in deserialize()
413 store.register(url, attrs, scopes, locale, null, null); in deserialize()
416 CSrvReg creg = new CSrvReg(true, locale, url, scopes, in deserialize()
436 ServiceURL url = rec.getServiceURL(); in serialize() local
437 String surl = url.toString(); in serialize()
449 line.append(Integer.toString(url.getLifetime())); in serialize()
[all …]
H A DSunServerDATable.java113 recordNewDA(ServiceURL url, in recordNewDA() argument
120 String addr = url.getHost(); in recordNewDA()
147 vals.addElement(url.getHost()); in recordNewDA()
153 ServiceURL adURL = formServiceTableDAURL(url, attrs); in recordNewDA()
390 ServiceURL url = (ServiceURL)en.nextElement(); in findDAScopes() local
391 Vector urlScopes = (Vector)retRec.get(url); in findDAScopes()
396 store.findAttributes(url, in findDAScopes()
402 String host = url.getHost(); in findDAScopes()
452 private ServiceURL formServiceTableDAURL(ServiceURL url, Vector attrs) { in formServiceTableDAURL() argument
501 url.getHost()+ in formServiceTableDAURL()
[all …]
H A DServiceStore.java195 boolean register(ServiceURL url, Vector attrs, in register() argument
217 void deregister(ServiceURL url, Vector scopes, Hashtable urlSig) in deregister() argument
234 void updateRegistration(ServiceURL url, Vector attrs, in updateRegistration() argument
258 deleteAttributes(ServiceURL url, in deleteAttributes() argument
344 Hashtable findAttributes(ServiceURL url, in findAttributes() argument
H A DURLAttributeVerifier.java65 URLAttributeVerifier(String url) in URLAttributeVerifier() argument
70 initialize(url); in URLAttributeVerifier()
85 URL url = new URL(urlName); in initialize() local
89 is = url.openStream(); in initialize()
H A DSDAAdvert.java52 ServiceURL url, in SDAAdvert() argument
78 this.initialize(timestamp, url, scopes, attrs); in SDAAdvert()
87 ServiceURL url, in initialize() argument
95 ServiceType serviceType = url.getServiceType(); in initialize()
127 String surl = url.toString(); in initialize()
146 url.getLifetime(), in initialize()
221 " URL="+url+"\n"+ in initialize()
H A DCSrvDereg.java54 ServiceURL url, in CSrvDereg() argument
70 this.initialize(locale, url, scopes, tags, auth); in CSrvDereg()
77 ServiceURL url, in initialize() argument
111 hdr.parseServiceURLOut(url, in initialize()
H A DServiceStoreInMemory.java104 ServiceURL url = in setReturn() local
112 signatures.put(url, sig); in setReturn()
1450 ServiceURL url = rec.getServiceURL(); in ageOut() local
1457 url, in ageOut()
1478 deregisterInternal(url, scopes, lang); in ageOut()
1523 register(ServiceURL url, Vector attrs, in register() argument
1534 ServiceRecordInMemory rec = findExistingRecord(url, null, lang); in register()
1564 deregisterInternal(url, rec.getScopes(), lang); in register()
1571 rec = new ServiceRecordInMemory(url, attrs, scopes, in register()
1600 deregister(ServiceURL url, Vector scopes, Hashtable urlSig) in deregister() argument
[all …]
H A DServerDATable.java143 recordNewDA(ServiceURL url, in recordNewDA() argument
184 ServiceURL url; in forwardSAMessage() local
186 url = ((SSrvReg)msg).URL; in forwardSAMessage()
188 url = ((CSrvReg)msg).URL; in forwardSAMessage()
191 String key = makeKey(url, hdr.locale); // need locale also... in forwardSAMessage()
253 private String makeKey(ServiceURL url, Locale locale) { in makeKey() argument
255 return url.toString() + "/" + locale.toString(); in makeKey()
365 forwardRegistrations(ServiceURL url, in forwardRegistrations() argument
387 String host = url.getHost(); in forwardRegistrations()
H A DServiceTable.java190 URL url = new URL(URL); in serializeServiceStore() local
191 URLConnection urlConn = url.openConnection(); in serializeServiceStore()
235 URL url = new URL(serializedURL); in getStoreFromURL() local
236 InputStream is = url.openStream(); in getStoreFromURL()
1254 ServiceURL url = in trackRegisteredServiceTypes() local
1265 store.register(url, in trackRegisteredServiceTypes()
1321 private long getSleepIncrement(ServiceURL url) { in getSleepIncrement() argument
1322 long urlLifetime = (long)(url.getLifetime() * 1000); in getSleepIncrement()
1372 ServiceURL url = (ServiceURL)urls.nextElement(); in makeDAAdvert() local
1374 if (url.getHost().equals(strDAAddr)) { in makeDAAdvert()
[all …]
H A DSunDATable.java366 ServiceURL url = (ServiceURL)serviceURLs.elementAt(i); in processReply() local
371 int lifetime = url.getLifetime(); in processReply()
380 String daaddr = url.getHost(); in processReply()
381 String urlpart = url.getURLPath(); in processReply()
413 new Object[] {url}); in processReply()
/titanic_50/usr/src/cmd/cmd-crypto/pktool/
H A Ddownload.c44 char *url = NULL; in pk_download() local
71 if (url) in pk_download()
73 url = optarg_av; in pk_download()
108 outfile = basename(url); in pk_download()
128 if (url == NULL) { in pk_download()
169 rv = kmf_download_crl(kmfhandle, url, proxy, proxy_port, 30, in pk_download()
172 rv = kmf_download_cert(kmfhandle, url, proxy, proxy_port, 30, in pk_download()
/titanic_50/usr/src/lib/libshell/common/scripts/
H A Dshtinyurl.sh111 typeset url="http://${url_host}${url_path}"
157 typeset url="http://${url_host}${url_path}"
247 typeset url="$1"
252 request_tinyurl "${url}"
256 request_trimurl "${url}"
H A Drssread.sh656 typeset url="$1"
658 if [[ "${url}" == "" ]] ; then
662 if [[ "${bookmark_urls[${url}]}" != "" ]] ; then
663 printmsg $"Using bookmark ${url} = ${bookmark_urls[${url}]}"
664 url="${bookmark_urls[${url}]}"
668 do_rssread "${url}"
670 do_rssread "${url}" | iconv -f "UTF-8" - -
/titanic_50/usr/src/lib/libslp/clib/
H A DSLPReg.c98 char *url; member
191 static SLPError packSrvReg(slp_handle_impl_t *hp, const char *url, in packSrvReg() argument
216 5 + strlen(url) + in packSrvReg()
263 if ((err = slp_add_string(m, msgLen, url, &len)) != SLP_OK) in packSrvReg()
401 static SLPError packSrvDereg(slp_handle_impl_t *hp, const char *url, in packSrvDereg() argument
421 5 + strlen(url) + in packSrvDereg()
459 if ((err = slp_add_string(m, msgLen, url, &len)) != SLP_OK) in packSrvDereg()
691 static SLPError add_rereg(const char *url, struct reg_msg *msg, in add_rereg() argument
708 if (!(reg->url = strdup(url))) { in add_rereg()
792 static unsigned short dereg_rereg(const char *url) { in dereg_rereg() argument
[all …]
/titanic_50/usr/src/lib/fm/libfmd_msg/common/
H A Dfmd_msg_test.out27 code TEST-8000-08 item 2 = <<This entry tests URL variable expansion - url = http://illumos.org/msg…
36 DESC: This entry tests URL variable expansion - url = http://illumos.org/msg/TEST-8000-08
43 code TEST-8000-08 item 2 = <<This entry tests URL variable expansion - url = http://illumos.org/msg…
52 DESC: This entry tests URL variable expansion - url = http://illumos.org/msg/TEST-8000-08
61 DESC: This entry tests URL variable expansion - url = http://foo.bar.com/TEST-8000-08
68 code TEST-8000-08 item 2 = <<This entry tests URL variable expansion - url = http://illumos.org/msg…
77 DESC: This entry tests URL variable expansion - url = http://illumos.org/msg/TEST-8000-08
84 code TEST-8000-08 item 2 = <<This entry tests URL variable expansion - url = http://illumos.org/msg…
93 DESC: This entry tests URL variable expansion - url = http://illumos.org/msg/TEST-8000-08
102 DESC: This entry tests URL variable expansion - url = http://foo.bar.com/TEST-8000-08
/titanic_50/usr/src/lib/libpkg/common/
H A Dpkgweb.c350 web_session_control(PKG_ERR *err, char *url, char *dwnld_dir, in web_session_control() argument
363 if (!parse_url_proxy(err, url, proxy, proxy_port)) { in web_session_control()
406 ps->url.hport.hostname); in web_session_control()
412 ps->url.hport.hostname); in web_session_control()
437 ps->url.hport.hostname); in web_session_control()
443 ps->url.hport.hostname); in web_session_control()
473 ps->url.hport.hostname); in web_session_control()
479 ps->url.hport.hostname); in web_session_control()
499 pkgerr_add(err, PKGERR_WEB, gettext(ERR_DWNLD), url); in web_session_control()
1617 parse_url_proxy(PKG_ERR *err, char *url, char *proxy, ushort_t proxy_port) in parse_url_proxy() argument
[all …]
/titanic_50/usr/src/cmd/ldapcachemgr/
H A Dcachemgr_discovery.c306 char *url = NULL; in foreach_server() local
313 if (!(url = strdup(u))) { in foreach_server()
318 if ((err = SLPParseSrvURL(url, &surl)) != SLP_OK) { in foreach_server()
319 free(url); in foreach_server()
323 url, slp_strerror(err)); in foreach_server()
346 if (url) free(url); in foreach_server()

123