Searched defs:id (Results 476 - 500 of 770) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/test/java/awt/Mouse/MouseModifiersUnitTest/
H A DModifierPermutation.java168 public static void dumpArray(String id, int [] array){ argument
169 System.out.print(id);
/openjdk7/jdk/test/java/awt/regtesthelpers/
H A DAbstractPolicyTest.java60 protected final Component registerComponent(final String id, final Component comp) { argument
61 if (registered_comps.containsKey(id)) {
62 throw new RuntimeException("The component with id (" + id + "), already registered.");
64 comp.setName(id);
65 registered_comps.put(id, comp);
109 protected final Component getComponent(final String id) { argument
110 if (!registered_comps.containsKey(id)) {
111 throw new RuntimeException("There is no registered component with given id(" + id
[all...]
/openjdk7/jdk/test/java/lang/instrument/
H A DATransformerManagementTestCase.java258 public MyClassFileTransformer(String id) { argument
260 fID = id;
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DAllThreadIds.java63 System.out.println(i + ": Thread id = " + list[i-1]);
151 System.out.print("Looking for thread with id " + expectedId);
196 System.out.print("Looking for thread with id " + expectedId +
238 int id; field in class:AllThreadIds.MyThread
240 MyThread(int id) { argument
241 this.id = id;
247 while (live[id]) {
H A DResetPeakThreadCount.java236 int id; field in class:ResetPeakThreadCount.MyThread
238 MyThread(int id) { argument
239 this.id = id;
245 while (live[id]) {
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DDeclarationMaker.java244 public static boolean isJavaIdentifier(String id) { argument
245 return javax.lang.model.SourceVersion.isIdentifier(id);
249 for(String id: name.split("\\.")) {
250 if (! isJavaIdentifier(id))
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileAttributeView.java139 for (AttrID id : AttrID.values()) {
141 map.put(id.name(), attribute(id, zfas));
155 Object attribute(AttrID id, ZipFileAttributes zfas) { argument
156 switch (id) {
/openjdk7/jdk/src/share/native/com/sun/tools/jdi/
H A DSharedMemoryConnection.c126 /* Next 4 bytes are the id field */
127 tmpInt = intToBigInt(str->type.cmd.id);
171 unsigned char pktHeader[11]; /* sizeof length + id + flags + cmdSet + cmd */
181 * The id field is in big endian (also errorCode field in the case
184 str->type.cmd.id = (int)pktHeader[7] | ((int)pktHeader[6] << 8) |
237 (JNIEnv *env, jobject thisObject, jlong id)
239 SharedMemoryConnection *connection = ID_TO_CONNECTION(id);
249 (JNIEnv *env, jobject thisObject, jlong id)
251 SharedMemoryConnection *connection = ID_TO_CONNECTION(id);
269 (JNIEnv *env, jobject thisObject, jlong id)
236 Java_com_sun_tools_jdi_SharedMemoryConnection_close0(JNIEnv *env, jobject thisObject, jlong id) argument
248 Java_com_sun_tools_jdi_SharedMemoryConnection_receiveByte0(JNIEnv *env, jobject thisObject, jlong id) argument
268 Java_com_sun_tools_jdi_SharedMemoryConnection_receivePacket0(JNIEnv *env, jobject thisObject, jlong id) argument
293 Java_com_sun_tools_jdi_SharedMemoryConnection_sendByte0(JNIEnv *env, jobject thisObject, jlong id, jbyte b) argument
310 Java_com_sun_tools_jdi_SharedMemoryConnection_sendPacket0(JNIEnv *env, jobject thisObject, jlong id, jbyteArray b) argument
[all...]
H A DSharedMemoryTransport.c80 (JNIEnv *env, jobject thisObject, jlong id, jlong timeout)
83 SharedMemoryTransport *transport = ID_TO_TRANSPORT(id);
135 (JNIEnv *env, jobject thisObject, jlong id)
140 SharedMemoryTransport *transport = ID_TO_TRANSPORT(id);
220 (JNIEnv *env, jobject thisObject, jlong id)
222 SharedMemoryTransport *transport = ID_TO_TRANSPORT(id);
79 Java_com_sun_tools_jdi_SharedMemoryTransportService_accept0(JNIEnv *env, jobject thisObject, jlong id, jlong timeout) argument
134 Java_com_sun_tools_jdi_SharedMemoryTransportService_name(JNIEnv *env, jobject thisObject, jlong id) argument
219 Java_com_sun_tools_jdi_SharedMemoryTransportService_stopListening0(JNIEnv *env, jobject thisObject, jlong id) argument
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSSLSessionContextImpl.java48 private Cache sessionCache; // session cache, session id as key
66 * Returns the <code>SSLSession</code> bound to the specified session id.
70 throw new NullPointerException("session id cannot be null");
145 SSLSessionImpl get(byte[] id) { argument
146 return (SSLSessionImpl)getSession(id);
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DAuthorityKeyIdentifierExtension.java78 private KeyIdentifier id = null; field in class:AuthorityKeyIdentifierExtension
84 if (id == null && names == null && serialNum == null) {
90 if (id != null) {
92 id.encode(tmp1);
120 * @param id the KeyIdentifier associated with this extension.
129 this.id = kid;
168 if (id != null)
172 id = new KeyIdentifier(opt);
200 if (id != null) {
201 s += id
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/attach/
H A DHotSpotVirtualMachine.java44 HotSpotVirtualMachine(AttachProvider provider, String id) { argument
45 super(provider, id);
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DMethodExpression.java40 Identifier id; field in class:MethodExpression
50 public MethodExpression(long where, Expression right, Identifier id, Expression args[]) { argument
52 this.id = id;
56 this.id = field.getName();
94 if (id.equals(idInit)){
126 m = cdef.findAnyMethod(env, id);
143 MemberDefinition m2 = cdef2.findAnyMethod(env, id);
146 id, cdef.getClassDeclaration(),
154 if (id
[all...]
/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DLocaleExtensions.java50 private final String id; field in class:LocaleExtensions
62 private LocaleExtensions(String id, Character key, Extension value) { argument
63 this.id = id;
78 id = "";
128 id = "";
131 id = toID(map);
220 return id;
224 return id;
229 return id
[all...]
/openjdk7/jdk/test/java/util/ResourceBundle/Control/
H A DStressTest.java142 final int id; field in class:StressTest.Worker
151 id = i;
165 counters.incrementAndGet(id);
/openjdk7/jdk/test/sun/net/www/http/HttpClient/
H A DMultiThreadTest.java205 int id;
207 id = connectionCount++;
210 Worker w = new Worker(s, id);
212 MultiThreadTest.debug("server: Started worker " + id);
231 int id; field in class:Worker
233 Worker(Socket s, int id) { argument
235 this.id = id;
288 MultiThreadTest.debug("worker: " + id + ": Shutdown");
293 MultiThreadTest.debug("worker " + id
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/
H A DMonitoredHost.java362 * @param id the VmIdentifier specifying the target Java Virtual Machine.
367 public abstract MonitoredVm getMonitoredVm(VmIdentifier id) argument
374 * @param id the VmIdentifier specifying the target Java Virtual Machine.
380 public abstract MonitoredVm getMonitoredVm(VmIdentifier id, int interval) argument
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvmmib/
H A DJvmClassLoadingMeta.java278 * Return the name of the attribute corresponding to the SNMP variable identified by "id".
280 public String getAttributeName(long id) argument
282 switch((int)id) {
H A DJvmCompilationMeta.java247 * Return the name of the attribute corresponding to the SNMP variable identified by "id".
249 public String getAttributeName(long id) argument
251 switch((int)id) {
H A DJvmOSMeta.java252 * Return the name of the attribute corresponding to the SNMP variable identified by "id".
254 public String getAttributeName(long id) argument
256 switch((int)id) {
H A DJvmRuntimeMeta.java408 * Return the name of the attribute corresponding to the SNMP variable identified by "id".
410 public String getAttributeName(long id) argument
412 switch((int)id) {
H A DJvmThreadingMeta.java355 * Return the name of the attribute corresponding to the SNMP variable identified by "id".
357 public String getAttributeName(long id) argument
359 switch((int)id) {
/openjdk7/jdk/src/share/classes/sun/rmi/registry/
H A DRegistryImpl.java84 private static ObjID id = new ObjID(ObjID.REGISTRY_ID); field in class:RegistryImpl
97 LiveRef lref = new LiveRef(id, port, csf, ssf);
107 LiveRef lref = new LiveRef(id, port);
273 return id;
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DActivatableRef.java48 protected ActivationID id; field in class:ActivatableRef
63 * Create a ActivatableRef with the specified id
65 public ActivatableRef(ActivationID id, RemoteRef ref) argument
67 this.id = id;
74 * in the resulting stub has its activation id set to the
75 * activation id supplied as the second argument.
77 public static Remote getStub(ActivationDesc desc, ActivationID id) argument
85 RemoteRef clientRef = new ActivatableRef(id, null);
276 Remote proxy = id
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DLiveRef.java47 private final ObjID id; field in class:LiveRef
65 id = objID;
158 return id;
173 "objID:" + id + "]";
177 return id.hashCode();
184 return (ep.equals(ref.ep) && id.equals(ref.id) &&
226 return (id.equals(ref.id));
258 new ObjectEndpoint(id, e
[all...]

Completed in 88 milliseconds

<<11121314151617181920>>