Searched refs:st_size (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileAttributes.java47 private long st_size; field in class:UnixFileAttributes
155 return st_size;
/openjdk7/hotspot/src/os/bsd/vm/
H A DperfMemory_bsd.cpp396 if (statbuf.st_size > 0 && statbuf.st_ctime > oldest_ctime) {
814 if ((statbuf.st_size == 0) ||
815 ((size_t)statbuf.st_size % os::vm_page_size() != 0)) {
820 return (size_t)statbuf.st_size;
/openjdk7/hotspot/src/os/linux/vm/
H A DperfMemory_linux.cpp396 if (statbuf.st_size > 0 && statbuf.st_ctime > oldest_ctime) {
814 if ((statbuf.st_size == 0) ||
815 ((size_t)statbuf.st_size % os::vm_page_size() != 0)) {
820 return (size_t)statbuf.st_size;
/openjdk7/hotspot/src/os/solaris/vm/
H A DperfMemory_solaris.cpp387 if (statbuf.st_size > 0 && statbuf.st_ctime > oldest_ctime) {
829 if ((statbuf.st_size == 0) ||
830 ((size_t)statbuf.st_size % os::vm_page_size() != 0)) {
835 return (size_t)statbuf.st_size;
H A Dos_solaris.cpp1985 if ((char *)dlinfo.dli_saddr + info->st_size > (char *)addr) {
/openjdk7/jdk/src/solaris/native/java/util/
H A DTimeZone_md.c169 } else if (S_ISREG(statbuf.st_mode) && (size_t)statbuf.st_size == size) {
301 size = (size_t) statbuf.st_size;
596 size = (size_t) statbuf.st_size;
/openjdk7/hotspot/src/os/windows/vm/
H A DperfMemory_windows.cpp387 // We no longer ignore hsperfdata files where (st_size == 0).
391 // hsperfdata files where (st_size == 0) and the st_size field
1375 if (statbuf.st_size == 0 && FlushFileBuffers(fh) != TRUE) {
1561 if ((statbuf.st_size == 0) || (statbuf.st_size % os::vm_page_size() != 0)) {
1564 statbuf.st_size);
1570 return statbuf.st_size;
/openjdk7/hotspot/src/share/vm/memory/
H A Dfilemap.cpp125 _header._jar[_header._num_jars]._filesize = st.st_size;
494 _header._jar[num_jars_now]._filesize != st.st_size) {
/openjdk7/hotspot/agent/src/os/bsd/
H A Dsymtab.c174 symtab->symbols[j].size = syms->st_size;
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DFileDispatcherImpl.c171 return fbuf.st_size;
/openjdk7/hotspot/src/share/vm/opto/
H A Dmemnode.cpp3409 intptr_t st_off, int st_size,
3411 if ((st_off & (st_size-1)) != 0)
3414 assert(st_off >= 0 && addr+st_size <= (address)&tiles[num_tiles], "oob");
3415 switch (st_size) {
3486 int st_size = st->as_Store()->memory_size(); local
3487 if (st_off + st_size > size_limit) break;
3490 if (!store_constant(inits, num_tiles, st_off, st_size, (jlong) -1))
3512 store_constant(tiles, num_tiles, st_off, st_size, con);
3516 if (type == T_INT && st_size == BytesPerInt
3550 if (st_size < BytesPerLon
3408 store_constant(jlong* tiles, int num_tiles, intptr_t st_off, int st_size, jlong con) argument
3679 int st_size = st->as_Store()->memory_size(); local
3757 int st_size = st->as_Store()->memory_size(); local
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassLoader.cpp213 u1* buffer = NEW_RESOURCE_ARRAY(u1, st.st_size);
214 size_t num_read = os::read(file_handle, (char*) buffer, st.st_size);
218 if (num_read == (size_t)st.st_size) {
222 return new ClassFileStream(buffer, st.st_size, _dir); // Resource allocated
/openjdk7/jdk/src/solaris/native/java/io/
H A DUnixFileSystem_md.c227 rv = sb.st_size;
/openjdk7/jdk/src/windows/native/java/io/
H A DWin32FileSystem_md.c253 rv = sb.st_size;
H A DWinNTFileSystem_md.c526 rv = sb.st_size;
/openjdk7/hotspot/agent/src/os/linux/
H A Dsymtab.c428 symtab->symbols[j].size = syms->st_size;
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DUnixNativeDispatcher.c185 attrs_st_size = (*env)->GetFieldID(env, clazz, "st_size", "J");
397 (*env)->SetLongField(env, attrs, attrs_st_size, (jlong)buf->st_size);

Completed in 332 milliseconds