Searched refs:fd (Results 51 - 54 of 54) sorted by relevance

123

/libcore/luni/src/main/java/java/io/
H A DFile.java938 FileDescriptor fd = null;
941 fd = Libcore.os.open(path, O_RDWR | O_CREAT | O_EXCL, 0600);
950 IoUtils.close(fd); // TODO: should we suppress IOExceptions thrown here?
/libcore/luni/src/main/java/java/net/
H A DSocket.java950 this.localAddress = IoBridge.getSocketLocalAddress(impl.fd);
969 return impl.fd;
/libcore/luni/src/main/native/
H A Dorg_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp2322 * @param fd The FileDescriptor
2327 bool setCallbackState(JNIEnv* e, jobject shc, jobject fd, jbyteArray npnProtocols) { argument
2328 NetFd netFd(e, fd);
2334 fileDescriptor = fd;
2391 NetFd fd(env, fdObject);
2392 if (fd.isClosed()) {
2396 int intFd = fd.get();
2397 JNI_TRACE("sslSelect type=%s fd=%d appData=%p timeout_millis=%d",
2426 JNI_TRACE("sslSelect %s fd=%d appData=%p timeout_millis=%d => %d",
2428 fd
4208 int fd = SSL_get_fd(ssl); local
[all...]
H A Dlibcore_icu_ICU.cpp712 ScopedFd fd(open(path.c_str(), O_RDONLY));
713 if (fd.get() == -1) {
717 if (fstat(fd.get(), &sb) == -1) {
722 void* data = mmap(NULL, sb.st_size, PROT_READ, MAP_SHARED, fd.get(), 0);

Completed in 65 milliseconds

123