Searched defs:descriptor (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
H A DFileDescriptor.java35 * Instances of the file descriptor class serve as an opaque handle
38 * main practical use for a file descriptor is to create a
51 private int descriptor; field in class:FileDescriptor
58 descriptor = -1;
61 private FileDescriptor(int descriptor) { argument
62 this.descriptor = descriptor;
67 * descriptor is not used directly, but rather via the input stream
76 * descriptor is not used directly, but rather via the output stream
84 * descriptor i
169 isSocket(int descriptor) argument
[all...]
/libcore/ojluni/src/lambda/java/java/lang/invoke/
H A DMethodType.java97 public static MethodType fromMethodDescriptorString(String descriptor, ClassLoader loader) argument
/libcore/dex/src/main/java/com/android/dex/
H A DDex.java348 public int findTypeIndex(String descriptor) { argument
349 return Collections.binarySearch(typeNames, descriptor);
453 * Look up a descriptor index from a type index. Cheaper than:

Completed in 51 milliseconds