Searched defs:how_many (Results 1 - 5 of 5) sorted by relevance

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/cosnaming/
H A DBindingIteratorImpl.java94 * @param how_many The number of requested bindings in the BindingList.
101 public synchronized boolean next_n(int how_many, argument
104 if( how_many == 0 ) {
105 throw new BAD_PARAM( " 'how_many' parameter is set to 0 which is" +
108 return list( how_many, blh );
116 * @param how_many The number of requested bindings in the BindingList.
120 public boolean list( int how_many, org.omg.CosNaming.BindingListHolder blh) argument
123 int numberToGet = Math.min(RemainingElements(),how_many);
H A DNamingContextDataStore.java83 * @param how_many The number of requested bindings in the BindingList.
88 void List(int how_many, BindingListHolder bl, BindingIteratorHolder bi) argument
H A DTransientNamingContext.java231 * @param how_many The number of requested bindings in the BindingList.
237 public final void List(int how_many, BindingListHolder bl, argument
250 bindingIterator.list(how_many,bl);
H A DNamingContextImpl.java402 * @param how_many The number of requested bindings in the BindingList.
410 public void list(int how_many, BindingListHolder bl, argument
416 impl.List(how_many,bl,bi);
422 "list(" + how_many + ") -> bindings[" + bl.value.length +
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/pcosnaming/
H A DNamingContextImpl.java396 * @param how_many The number of requested bindings in the BindingList.
403 public void list(int how_many, BindingListHolder bl, BindingIteratorHolder bi) argument
406 dprint("list(" + how_many + ")");
410 impl.List(how_many,bl,bi);
413 dprint("list(" + how_many + ") -> bindings[" + bl.value.length +
1038 * @param how_many The number of requested bindings in the BindingList.
1044 public void List(int how_many, BindingListHolder bl, argument
1055 bindingIterator.list(how_many,bl);

Completed in 57 milliseconds