Searched defs:received (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/test/javax/management/timer/
H A DStartTest.java15 * You should have received a copy of the GNU General Public License version
73 if (received != SENT) {
75 "Expected to receive " + SENT + " but got " + received);
87 received++;
89 ">>> myListener-handleNotification: received " +
96 private static volatile int received = 0; field in class:StartTest
/openjdk7/jdk/test/javax/management/remote/mandatory/notif/
H A DEmptyDomainNotificationTest.java15 * You should have received a copy of the GNU General Public License version
27 * @summary Check that the expected notification is received by the JMX
71 received++;
78 public int received; field in class:EmptyDomainNotificationTest.Listener
109 while (li.received < 1 && toWait > 0) {
116 if (li.received < 1) {
117 throw new RuntimeException("No notif received!");
118 } else if (li.received > 1) {
119 throw new RuntimeException("Wait one notif but got: "+li.received);
H A DDiffHBTest.java15 * You should have received a copy of the GNU General Public License version
143 private int received = 0; field in class:DiffHBTest.MyListener
166 received++;
168 if (received == 1) { // first time
175 if (received > 2) {
176 failed("Expect to receive 2 notifs, but get "+received);
H A DNotSerializableNotifTest.java15 * You should have received a copy of the GNU General Public License version
140 if (listener.received() < sentNotifs) {
151 if (listener.received() != sentNotifs) {
152 System.out.println("Failed: received "+listener.received()+
156 System.out.println("The client received all notifications.");
181 public int received() { method in class:NotSerializableNotifTest.Listener
H A DNotificationAccessControllerTest.java15 * You should have received a copy of the GNU General Public License version
153 * Check received notifications
156 List<Notification> received,
158 if (received.size() != size) {
160 received.size());
163 for (Notification n : received) {
155 checkNotifs(int size, List<Notification> received, List<ObjectName> expected) argument
H A DNotificationEmissionTest.java15 * You should have received a copy of the GNU General Public License version
102 List<Notification> received,
104 if (received.size() != size) {
106 received.size());
109 for (Notification n : received) {
101 checkNotifs(int size, List<Notification> received, List<ObjectName> expected) argument
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DDGCAckHandler.java17 * You should have received a copy of the GNU General Public License version
52 * received that the receiver has had an opportunity to process the
92 * "received" method with the specified UID is equivalent to
115 * has not been received.
142 public static void received(UID id) { method in class:DGCAckHandler
/openjdk7/jdk/src/share/classes/sun/net/www/http/
H A DHttpCapture.java17 * You should have received a copy of the GNU General Public License version
131 public synchronized void received(int c) throws IOException { method in class:HttpCapture
/openjdk7/jdk/test/com/sun/net/httpserver/bugs/
H A DB6373555.java15 * You should have received a copy of the GNU General Public License version
42 private static int received = 0; field in class:B6373555
121 ++received;
122 if ((received % 1000) == 0) {
123 System.out.println("Received="+received);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXSheet.java17 * You should have received a copy of the GNU General Public License version
570 long received = mbeanNotifications.getReceivedNotifications(mbean);
571 updateReceivedNotifications(currentNode, received, false);
578 * Update notification node label in MBean tree: "Notifications[received]".
582 DefaultMutableTreeNode emitter, long received, boolean bold) {
583 String text = Messages.NOTIFICATIONS + "[" + received + "]";
715 Long received = (Long) e.getUserData();
716 updateReceivedNotifications(emitter, received.longValue(), true);
581 updateReceivedNotifications( DefaultMutableTreeNode emitter, long received, boolean bold) argument
H A DXMBeanNotifications.java17 * You should have received a copy of the GNU General Public License version
67 "jconsole.xnotification.received";
314 DefaultMutableTreeNode node, Object[] rowData, long received) {
324 notif.setUserData(received);
603 private volatile long received; field in class:XMBeanNotifications.XMBeanNotificationsListener
625 received = 0;
646 return received;
694 received++;
699 xmbean, node, rowData, received);
312 fireNotificationReceived( XMBeanNotificationsListener listener, XMBean mbean, DefaultMutableTreeNode node, Object[] rowData, long received) argument
/openjdk7/jdk/src/share/transport/socket/
H A DsocketTransport.c17 * You should have received a copy of the GNU General Public License version
142 int rv, helloLen, received; local
148 received = 0;
149 while (received < helloLen) {
160 buf += received;
161 n = recv_fully(fd, buf, helloLen-received);
169 received += n;
174 if (strncmp(b, hello, received) != 0) {
176 b[received] = '\0';
181 sprintf(msg, "handshake failed - received >
[all...]

Completed in 54 milliseconds