Searched refs:next (Results 1 - 25 of 47) sorted by relevance

12

/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/event/
H A DEventListeners.java48 public Entry<L> next; field in class:EventListeners.Entry
71 return entry.next != null;
76 public L next() { method in class:EventListeners.EntryIterator
79 entry = entry.next;
133 for (Entry<L> entry = first; ; entry = entry.next) {
137 if (entry.next == null) {
138 entry.next = new Entry<L>(listener);
167 for (Entry<L> entry = first; entry != null; entry = entry.next) {
183 first = first.next;
188 entry.next !
[all...]
/solaris-userland-s11u3/components/visual-panels/apache/src/java/vpanels/app/apache/com/oracle/solaris/vp/panels/apache/client/swing/
H A DPropertyGroupNamePool.java48 private int next; field in class:PropertyGroupNamePool
68 String name = prefix + next;
70 int index = Collections.binarySearch(reserved, next);
73 reserved.add(index, next);
75 next = getNext(next);
92 if (ord < next) {
93 next = ord;
128 next = getNext(MINIMUM);
H A DMimeTypes.java174 MimeType mimeType = i.next();
238 MimeType mimeType = i.next();
H A DModules.java168 Module module = i.next();
231 Module module = i.next();
/solaris-userland-s11u3/components/net-snmp/sun/sdk/demo/demo_module_2/
H A Ddemo_module_2.h42 struct fileTable* next; member in struct:fileTable
H A Ddemo_module_2.c56 while (fprt->next != NULL){
57 fprt = fprt->next;
59 fprt->next = (fileEntry *) malloc (sizeof(fileEntry));
60 fprt->next->findex = fprt->findex + 1;
61 fprt = fprt->next;
62 fprt->next = NULL;
69 fprt->next = NULL;
91 tempp = tempp->next;
103 fprt = fprt->next;
180 of your choice (from which you can find the next on
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/common/smf/
H A DChoiceSmfProperty.java54 return allowed.iterator().next();
/solaris-userland-s11u3/components/net-snmp/sun/agent/modules/healthMonitor/
H A Ddsr.c37 struct nms *next; member in struct:nms
45 struct list_of_disks *next; member in struct:list_of_disks
93 p = p->next;
108 t = t->next;
212 list = list->next;
254 entry->next = (nms_t *)NULL;
257 entry->next = *list;
439 list = list->next;
454 list = list->next;
479 stuff = stuff->next;
[all...]
H A Dkr_iostat.c106 struct diskinfo *next; member in struct:diskinfo
169 struct disk_selection *next; member in struct:disk_selection
211 for (disk = firstdisk; disk; disk->next) {
339 disk = disk->next;
376 disk = disk->next;
629 zerodisk.next = NULLDISK;
639 lastdisk->next = snip;
665 if (disk->next)
666 disk = disk->next;
668 safe_zalloc((void **)&disk->next,
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/time/
H A DStarIcon.java103 Point2D.Float next = points[i];
105 path.moveTo(next.x, next.y);
107 path.lineTo(next.x, next.y);
110 last = next;
H A DTimeSpinnerModel.java127 private long getPreviousOrNextValue(boolean next) { argument
134 next = model.getCalendar().get(field) == Calendar.AM;
139 cal.add(field, next ? 1 : -1);
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/
H A DArrayIterator.java57 public T next() { method in class:ArrayIterator
H A DEnumerationIterator.java55 public T next() { method in class:EnumerationIterator
/solaris-userland-s11u3/components/net-snmp/sun/sdk/demo/demo_module_5/
H A Ddemo_module_5.h48 struct fileTable* next; member in struct:fileTable
H A Ddemo_module_5.c158 of your choice (from which you can find the next one). This could
201 be updated to the next in the list. For example, if it was a
203 my_loop_context->next. The my_data_context pointer should be set
217 nextNode = nextNode->next;
257 for (request = requests; request; request = request->next) {
484 while (fprt->next != NULL) {
485 fprt = fprt->next;
487 fprt->next = (fileEntry *) malloc(sizeof(fileEntry));
488 fprt->next->findex = fprt->findex + 1;
489 fprt = fprt->next;
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/smf-old/com/oracle/solaris/scf/common/
H A DFMRI.java95 String[] next = top[0].split(":", 2);
100 service_ = next[0].substring(1);
102 if (next.length == 2) {
103 instance_ = next[1];
112 next = top[1].split("/", 2);
113 pg_ = next[0];
119 if (next.length == 2) {
120 property_ = next[1];
/solaris-userland-s11u3/components/libusb/wrapper/src/
H A Dwr_libusb.c202 /* go on to try read next module */
325 /* just try to load the next one */
337 /* try the next plugin */
361 for (busp = usb_busses; busp != NULL; busp = busp->next) {
416 devh = devh->next) {
452 devh->next = NULL;
455 while (curr_devh->next != NULL) {
456 curr_devh = curr_devh->next;
459 curr_devh->next = (dev_handles_t *)
461 if (curr_devh->next
[all...]
H A Dtestlibusb.c124 for (bus = usb_busses; bus; bus = bus->next) {
125 for (dev = bus->devices; dev; dev = dev->next) {
H A Dwr_libusb.h182 struct dev_handles *next; /* for linked list */ member in struct:dev_handles
/solaris-userland-s11u3/components/apache2/mod_sed/
H A Dmod_sed.c121 status = ap_pass_brigade(ctx->f->next, ctx->bb);
281 return ap_pass_brigade(f->next, bb);
289 return ap_pass_brigade(f->next, bb);
306 * the loop, ctx->bb is passed to the next filter in chain. At the end of
317 * and pass it to next filter. There may be some data which will still be
377 status = ap_pass_brigade(f->next, ctx->bb);
398 return ap_get_brigade(f->next, bb, mode, block, readbytes);
403 return ap_get_brigade(f->next, bb, mode, block, readbytes);
410 return ap_get_brigade(f->next, bb, mode, block, readbytes);
420 * Read the readbytes data from next leve
[all...]
H A Dlibsed.h43 sed_reptr_t *next; member in struct:sed_reptr_s
/solaris-userland-s11u3/components/openssl/common/engines/pkcs11/
H A De_pk11.h94 struct PK11_st_SESSION *next; member in struct:PK11_st_SESSION
207 struct PK11_active_st *next; member in struct:PK11_active_st
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/finder/
H A DObjectCache.java86 K key = i.next();
/solaris-userland-s11u3/components/libusb/ugen/src/
H A Dlibusbugen.c263 next_dev = dev->next;
266 next_new = new->next;
287 next_new = new->next;
297 next_dev = dev->next;
2181 dev->next = *list;
2182 dev->next->prev = dev;
2184 dev->next = NULL;
2198 dev->prev->next = dev->next;
2200 *list = dev->next;
2888 uchar_t *next = buf + buf[0]; local
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/common/
H A DConnectionTracker.java266 NotifyParams params = i.next();
279 NotifyParams params = i.next();

Completed in 267 milliseconds

12