Searched refs:requested (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/test/java/util/PluggableLocale/providersrc/
H A DUtils.java30 public static boolean supportsLocale(Locale supported, Locale requested) { argument
33 } else if (supported.getLanguage() != requested.getLanguage()) {
39 } else if (supported.getCountry() != requested.getCountry()) {
44 String reqVar = requested.getVariant();
60 public static boolean supportsLocale(List<Locale> supported, Locale requested) { argument
62 if (supportsLocale(l, requested)) {
/openjdk7/jdk/src/share/classes/sun/rmi/transport/tcp/
H A DMultiplexOutputStream.java35 * requested by the remote endpoint (to prevent receive buffer from
56 /** pending number of bytes requested by remote endpoint */
57 private int requested = 0; field in class:MultiplexOutputStream
64 * requested & disconnected
127 while ((local_requested = requested) < 1 && !disconnected) {
142 requested -= local_requested;
148 requested -= len;
174 * Take note of more bytes requested by conection at remote endpoint.
175 * @param num number of additional bytes requested
180 requested
[all...]
H A DMultiplexInputStream.java54 /** pending number of bytes this stream has requested */
55 private int requested = 0; field in class:MultiplexInputStream
62 * buffer, present, pos, requested, & disconnected
71 /** level at which more data is requested when read past */
129 moreSpace = Math.max(freeSpace - requested, 0);
134 requested += moreSpace;
198 requested -= length;
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixMountEntry.java66 boolean hasOption(String requested) { argument
70 if (opt.equals(requested))
H A DUnixFileAttributeViews.java192 public Map<String,Object> readAttributes(String[] requested) argument
196 AttributesBuilder.create(posixAttributeNames, requested);
330 public Map<String,Object> readAttributes(String[] requested) argument
334 AttributesBuilder.create(unixAttributeNames, requested);
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DAbstractBasicFileAttributeView.java96 private AttributesBuilder(Set<String> allowed, String[] requested) { argument
97 for (String name: requested) {
111 static AttributesBuilder create(Set<String> allowed, String[] requested) { argument
112 return new AttributesBuilder(allowed, requested);
163 public Map<String,Object> readAttributes(String[] requested) argument
167 AttributesBuilder.create(basicAttributeNames, requested);
/openjdk7/jdk/test/java/nio/file/attribute/PosixFileAttributeView/
H A DBasic.java72 * secure than requested
74 static void checkSecure(Set<PosixFilePermission> requested, argument
78 if (!requested.contains(perm)) {
80 PosixFilePermissions.toString(actual) + ", requested: " +
81 PosixFilePermissions.toString(requested) +
82 " - file is less secure than requested");
95 Set<PosixFilePermission> requested = PosixFilePermissions.fromString(mode);
97 PosixFilePermissions.asFileAttribute(requested);
101 checkSecure(requested,
112 checkSecure(requested,
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_InputMethod.cpp319 // check if current language ID is the requested one. Note that the
321 // ASCII encoding, so we use 'GetStringUTFChars' to retrieve requested
325 const char * requested = env->GetStringUTFChars(localeString, &isCopy); local
326 if ((current != NULL) && (strcmp(current, requested) == 0)) {
327 env->ReleaseStringUTFChars(localeString, requested);
345 if ((supported != NULL) && (strcmp(supported, requested) == 0)) {
356 env->ReleaseStringUTFChars(localeString, requested);
/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A DREADME187 Return the pixel value of the closest color to the requested
212 requested red, green, and blue components. The components
226 Return the pixel value of the closest color to the requested
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dunpack.cpp288 bool requested; member in struct:inner_class
3327 // outputEntries must be a complete list of those requested:
4420 assert(!ics[i].requested);
4433 child->requested = true;
4446 if (ic->requested) break; // already processed
4447 ic->requested = true;
4460 local_ics = 0; // (short-circuit all tests of requested bits)
4496 if (global_ic != null && global_ic->requested) {
4498 global_ic->requested = false;
4499 extra_ic.requested
[all...]
/openjdk7/jdk/make/jpda/jdwp/
H A Djdwp.spec2149 "been requested to load. This class loader is considered to be "
2186 "target VM. If an event occurs that has not been requested then it is not sent "
2193 "for a complete list of events that can be requested; "
2194 "some events may require a capability in order to be requested. "
2224 "Limit the requested event to be reported at most once after a "
2641 "This means they do not need to be requested using the "
2647 "also be requested using the EventRequest.Set command and thus multiple events "
2671 "if not explicitly requested."
2883 "value returned by this method is null, and if the requested "

Completed in 63 milliseconds