Searched refs:domain (Results 101 - 119 of 119) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DPolicyFile.java1116 * @param domain the ProtectionDomain to test
1140 // cache mapping of protection domain to its PermissionCollection
1148 * the permissions currently associated with the domain as well
1149 * as the policy permissions granted to the domain's
1167 * @param domain the Permissions granted to this
1174 public PermissionCollection getPermissions(ProtectionDomain domain) { argument
1177 if (domain == null)
1181 getPermissions(perms, domain);
1186 PermissionCollection pc = domain.getPermissions();
1698 // in the current domain whic
[all...]
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletPanel.java1119 ProtectionDomain domain =
1123 new AccessControlContext(new ProtectionDomain[] { domain });
/openjdk7/jdk/src/windows/native/java/net/
H A Dnet_util_md.c1020 int NET_Socket (int domain, int type, int protocol) { argument
1022 sock = socket (domain, type, protocol);
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DConfig.java1262 // get the domain realm mapping from the configuration
1265 // No match. Try search and/or domain in /etc/resolv.conf
1267 for (String domain: srchlist) {
1268 realm = checkRealm(domain);
/openjdk7/hotspot/src/share/vm/opto/
H A Dchaitin.cpp1985 const TypeTuple *domain = C->tf()->domain(); local
1986 const int argcnt = domain->cnt() - TypeFunc::Parms;
1999 domain->field_at(k + TypeFunc::Parms)->dump();
2021 domain->field_at(j + TypeFunc::Parms)->dump();
H A Dtype.cpp1656 // Make a TypeTuple from the domain of a method signature
4192 const TypeFunc *TypeFunc::make( const TypeTuple *domain, const TypeTuple *range ) { argument
4193 return (TypeFunc*)(new TypeFunc(domain,range))->hashcons();
4201 const TypeTuple *domain; local
4203 domain = TypeTuple::make_domain(NULL, method->signature());
4205 domain = TypeTuple::make_domain(method->holder(), method->signature());
4208 tf = TypeFunc::make(domain, range);
H A Dcompile.cpp713 const TypeTuple *domain = StartOSRNode::osr_domain(); local
715 init_tf(TypeFunc::make(domain, range));
716 StartNode* s = new (this) StartOSRNode(root(), domain);
723 StartNode* s = new (this) StartNode(root(), tf()->domain());
H A Descape.cpp810 const TypeTuple* d = call->tf()->domain();
853 const TypeTuple * d = call->tf()->domain();
948 const TypeTuple* d = call->tf()->domain();
992 const TypeTuple* d = call->tf()->domain();
H A Dmacro.cpp70 uint old_dbg_start = oldcall->tf()->domain()->cnt();
71 uint new_dbg_start = newcall->tf()->domain()->cnt();
H A Dparse1.cpp754 int arg_size = tf->domain()->cnt();
1047 uint arg_size = tf()->domain()->cnt();
H A DcallGenerator.cpp312 const TypeTuple *r = call_node()->tf()->domain();
H A Dcallnode.cpp676 const TypeTuple * d = tf()->domain();
1004 // Values outside the domain represent debug info
/openjdk7/hotspot/src/share/vm/runtime/
H A Dos.hpp639 static int socket(int domain, int type, int protocol);
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DHttpURLConnection.java305 String domain; /* The list of authentication domains */ field in class:HttpURLConnection
1418 // cache auth info on success, domain header not relevant.
1496 (domain == null)) {
1514 // what we cache is based on the domain list in the request
1517 StringTokenizer tok = new StringTokenizer (domain," ");
1857 // cache auth info on success, domain header not relevant.
2129 domain = p.findValue ("domain");
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaValidator.java459 public void reportError(String domain, String key, Object[] arguments, short severity) argument
461 fErrorReporter.reportError(domain, key, arguments, severity);
469 String domain,
474 fErrorReporter.reportError(location, domain, key, arguments, severity);
467 reportError( XMLLocator location, String domain, String key, Object[] arguments, short severity) argument
/openjdk7/jdk/src/share/javavm/export/
H A Djvm.h1209 JVM_Socket(jint domain, jint type, jint protocol);
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.h1354 JVM_Socket(jint domain, jint type, jint protocol);
H A Djvm.cpp1087 // Primitive types does not have a protection domain.
1117 // If there is a security manager and protection domain, check the access
1118 // in the protection domain, otherwise it is authorized.
1149 // Create an AccessControlContext with a protection domain with null codesource
1320 // we had a privileged system domain
3578 JVM_LEAF(jint, JVM_Socket(jint domain, jint type, jint protocol))
3580 return os::socket(domain, type, protocol);
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp4972 int os::socket(int domain, int type, int protocol) { argument
4973 return ::socket(domain, type, protocol);

Completed in 182 milliseconds

12345