Lines Matching refs:os

29 #include "runtime/os.hpp"
46 inline void* os::thread_local_storage_at(int index) {
50 inline const char* os::file_separator() {
54 inline const char* os::line_separator() {
58 inline const char* os::path_separator() {
62 inline const char* os::jlong_format_specifier() {
66 inline const char* os::julong_format_specifier() {
71 inline int os::file_name_strcmp(const char* s1, const char* s2) {
75 inline bool os::obsolete_option(const JavaVMOption *option) {
79 inline bool os::uses_stack_guard_pages() {
83 inline bool os::allocate_stack_guard_pages() {
98 inline void os::pd_split_reserved_memory(char *base, size_t size,
104 inline void os::bang_stack_shadow_pages() {
107 inline void os::dll_unload(void *lib) {
111 inline const int os::default_file_open_flags() { return 0;}
113 inline DIR* os::opendir(const char* dirname)
119 inline int os::readdir_buf_size(const char *path)
124 inline jlong os::lseek(int fd, jlong offset, int whence) {
128 inline int os::fsync(int fd) {
132 inline char* os::native_path(char *path) {
136 inline int os::ftruncate(int fd, jlong length) {
140 inline struct dirent* os::readdir(DIR* dirp, dirent *dbuf)
157 inline int os::closedir(DIR *dirp) {
174 inline bool os::numa_has_static_binding() { return true; }
175 inline bool os::numa_has_group_homing() { return false; }
177 inline size_t os::restartable_read(int fd, void *buf, unsigned int nBytes) {
183 inline size_t os::write(int fd, const void *buf, unsigned int nBytes) {
189 inline int os::close(int fd) {
193 inline int os::socket_close(int fd) {
197 inline int os::socket(int domain, int type, int protocol) {
201 inline int os::recv(int fd, char* buf, size_t nBytes, uint flags) {
205 inline int os::send(int fd, char* buf, size_t nBytes, uint flags) {
209 inline int os::raw_send(int fd, char* buf, size_t nBytes, uint flags) {
210 return os::send(fd, buf, nBytes, flags);
213 inline int os::timeout(int fd, long timeout) {
245 inline int os::listen(int fd, int count) {
249 inline int os::connect(int fd, struct sockaddr* him, socklen_t len) {
253 inline int os::accept(int fd, struct sockaddr* him, socklen_t* len) {
258 inline int os::recvfrom(int fd, char* buf, size_t nBytes, uint flags,
263 inline int os::sendto(int fd, char* buf, size_t len, uint flags,
268 inline int os::socket_shutdown(int fd, int howto) {
272 inline int os::bind(int fd, struct sockaddr* him, socklen_t len) {
276 inline int os::get_sock_name(int fd, struct sockaddr* him, socklen_t* len) {
280 inline int os::get_host_name(char* name, int namelen) {
284 inline struct hostent* os::get_host_by_name(char* name) {
288 inline int os::get_sock_opt(int fd, int level, int optname,
293 inline int os::set_sock_opt(int fd, int level, int optname,