Home
last modified time | relevance | path

Searched refs:descriptor (Results 1 – 6 of 6) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
DFileDescriptor.java55 private int descriptor; field in FileDescriptor
74 descriptor = -1; in FileDescriptor()
77 private /* */ FileDescriptor(int descriptor) { in FileDescriptor() argument
78 this.descriptor = descriptor; in FileDescriptor()
115 return descriptor != -1; in valid()
159 return descriptor; in getInt$()
169 this.descriptor = fd; in setInt$()
185 this.descriptor = newDescriptor; in cloneForFork()
226 result.descriptor = this.descriptor; in release$()
228 this.descriptor = -1; in release$()
[all …]
DObjectInputStream.java1582 ObjectStreamClass descriptor; in readClassDesc() local
1585 descriptor = (ObjectStreamClass) readNull(); in readClassDesc()
1588 descriptor = (ObjectStreamClass) readHandle(unshared); in readClassDesc()
1591 descriptor = readProxyDesc(unshared); in readClassDesc()
1594 descriptor = readNonProxyDesc(unshared); in readClassDesc()
1604 return descriptor; in readClassDesc()
/libcore/ojluni/annotations/hiddenapi/java/io/
DFileDescriptor.java37 private FileDescriptor(int descriptor) { in FileDescriptor() argument
78 private static native boolean isSocket(int descriptor); in isSocket() argument
83 private int descriptor; field in FileDescriptor
/libcore/ojluni/src/main/java/java/lang/invoke/
DMethodType.java1083 public static MethodType fromMethodDescriptorString(String descriptor, ClassLoader loader) in fromMethodDescriptorString() argument
1086 if (!descriptor.startsWith("(") || // also generates NPE if needed in fromMethodDescriptorString()
1087 descriptor.indexOf(')') < 0 || in fromMethodDescriptorString()
1088 descriptor.indexOf('.') >= 0) in fromMethodDescriptorString()
1089 throw newIllegalArgumentException("not a method descriptor: "+descriptor); in fromMethodDescriptorString()
1090 List<Class<?>> types = BytecodeDescriptor.parseMethod(descriptor, loader); in fromMethodDescriptorString()
/libcore/ojluni/src/lambda/java/java/lang/invoke/
DMethodType.java97 public static MethodType fromMethodDescriptorString(String descriptor, ClassLoader loader) in fromMethodDescriptorString() argument
/libcore/ojluni/src/main/java/sun/nio/fs/
DLinuxWatchService.java117 int descriptor() { in descriptor() method in LinuxWatchService.LinuxWatchKey
292 wdToKey.remove(key.descriptor()); in implCancelKey()