Home
last modified time | relevance | path

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

123

/illumos-gate/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 …]
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/
H A Dhurl.sh20 : copy http url data
81 url=$1
87 do test 0 != $verbose && echo "$command: url=$url" >&2
88 case $url in
89 *://*/*)prot=${url%%:*}
90 url=${url#*://}
95 host=$url
138 30[123])url=$data
187 *) echo "$0: $url: $code: $text" >&2
192 …http-user="${authorize%:*}"} ${password:+--http-passwd="${password##*:}"} -nv -O - $url 2>/dev/null
[all …]
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Durl.c61 ldap_is_ldap_url( const char *url ) in ldap_is_ldap_url() argument
65 return( url != NULL in ldap_is_ldap_url()
66 && skip_url_prefix( &url, &enclosed, &secure )); in ldap_is_ldap_url()
120 ldap_url_parse( const char *url, LDAPURLDesc **ludpp ) in ldap_url_parse() argument
127 if (( rc = nsldapi_url_parse( url, ludpp, 1 )) == 0 ) { in ldap_url_parse()
145 ldap_url_parse_nodn(const char *url, LDAPURLDesc **ludpp) in ldap_url_parse_nodn() argument
152 if ((rc = nsldapi_url_parse(url, ludpp, 0)) == 0) { in ldap_url_parse_nodn()
178 nsldapi_url_parse( const char *url, LDAPURLDesc **ludpp, int dn_required ) in nsldapi_url_parse() argument
185 LDAPDebug( LDAP_DEBUG_TRACE, "nsldapi_url_parse(%s)\n", url, 0, 0 ); in nsldapi_url_parse()
187 if ( url == NULL || ludpp == NULL ) { in nsldapi_url_parse()
[all …]
/illumos-gate/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 …]
/illumos-gate/usr/src/cmd/ldap/common/
H A Dfileurl.c173 char *p, *url, *prefix ="file:"; in ldaptool_path2fileurl() local
183 if (( url = malloc( strlen( prefix ) + 3 * strlen( path ) + 1 )) == NULL ) { in ldaptool_path2fileurl()
187 strcpy( url, prefix ); in ldaptool_path2fileurl()
188 p = url + strlen( prefix ); in ldaptool_path2fileurl()
210 *urlp = url; in ldaptool_path2fileurl()
236 const char *url = NULL; in ldaptool_berval_from_ldif_value() local
249 for ( url = value + 1; isspace( *url ); ++url ) { in ldaptool_berval_from_ldif_value()
253 if (strlen(url) > 7 && strncasecmp(url, "file://", 7) != 0) { in ldaptool_berval_from_ldif_value()
257 url = NULL; in ldaptool_berval_from_ldif_value()
261 if ( NULL != url ) { in ldaptool_berval_from_ldif_value()
[all …]
/illumos-gate/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 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 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 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()
/illumos-gate/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()
/illumos-gate/usr/src/uts/common/io/qede/579xx/drivers/ecore/documentation/
H A Decore.bib4 …howpublished = "\url{http://ptg.qlogic.com/sites/QLogicBroadcom/hsc-syseng/HW\%20blocks/PCI-E/PXP\…
10 …howpublished = "\url{http://ptg.qlogic.com/sites/QLogicBroadcom/hscsw/Drivers/E4/E4\%20Ecore\%20IL…
16 …howpublished = "\url{http://ptg.qlogic.com/sites/QLogicBroadcom/hscsw/Drivers/Linux\%20and\%20Unix…
22 …howpublished = "\url{file:///\\qlogic.org\il_proj\contbu_training\training\drivers\linux\linux bnx…
28 …howpublished = "\url{http://ptg.qlogic.com/sitres/QLogicBroadcom/hscsw/Drivers/Forms/AllItems.aspx…
34 …howpublished = "\url{http://ptg.qlogic.com/sitres/QLogicBroadcom/hsc-syseng/High%20level%20archite…
/illumos-gate/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()
/illumos-gate/usr/src/lib/libslp/clib/
H A DSLPReg.c96 char *url; member
189 static SLPError packSrvReg(slp_handle_impl_t *hp, const char *url, in packSrvReg() argument
214 5 + strlen(url) + in packSrvReg()
261 if ((err = slp_add_string(m, msgLen, url, &len)) != SLP_OK) in packSrvReg()
399 static SLPError packSrvDereg(slp_handle_impl_t *hp, const char *url, in packSrvDereg() argument
419 5 + strlen(url) + in packSrvDereg()
457 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 …]
H A DSLPFindAttrs.c297 static SLPError slp_packAttrRqst(slp_handle_impl_t *hp, const char *url, in slp_packAttrRqst() argument
330 2 + strlen(url) + /* URL */ in slp_packAttrRqst()
362 err = slp_add_string(msg->msg, msgLen, url, &len); in slp_packAttrRqst()
395 SLPError slp_packAttrRqst_single(const char *url, in slp_packAttrRqst_single() argument
405 2 + strlen(url) + in slp_packAttrRqst_single()
421 err = slp_add_string(*msg, msgLen, url, &len); in slp_packAttrRqst_single()
/illumos-gate/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
/illumos-gate/usr/src/cmd/ldapcachemgr/
H A Dcachemgr_discovery.c308 char *url = NULL; in foreach_server() local
315 if (!(url = strdup(u))) { in foreach_server()
320 if ((err = SLPParseSrvURL(url, &surl)) != SLP_OK) { in foreach_server()
321 free(url); in foreach_server()
325 url, slp_strerror(err)); in foreach_server()
348 if (url) free(url); in foreach_server()
/illumos-gate/usr/src/tools/onbld/Checks/
H A DDbLookups.py84 url = "http://illumos.org/issues/%s.xml" % cr
85 req = Request(url)

123