natFileWin32.cc (_access): Renamed.

* java/io/natFileWin32.cc (_access): Renamed.
	(_stat): Likewise.
	* java/io/natFile.cc (_access): Renamed.
	(_stat): Likewise.
	* java/io/File.java (access, stat): Add leading `_' to name.
	Updated all callers.

From-SVN: r44124
This commit is contained in:
Tom Tromey 2001-07-18 18:35:12 +00:00 committed by Tom Tromey
parent fed3b7b431
commit e5c83273cf
4 changed files with 24 additions and 12 deletions

View file

@ -29,13 +29,13 @@ public class File implements Serializable, Comparable
public boolean canRead ()
{
checkRead();
return access (READ);
return _access (READ);
}
public boolean canWrite ()
{
checkWrite();
return access (WRITE);
return _access (WRITE);
}
private native boolean performCreate() throws IOException;
@ -71,7 +71,7 @@ public class File implements Serializable, Comparable
public boolean exists ()
{
checkRead();
return access (EXISTS);
return _access (EXISTS);
}
public File (String p)
@ -209,20 +209,20 @@ public class File implements Serializable, Comparable
public boolean isDirectory ()
{
checkRead();
return stat (DIRECTORY);
return _stat (DIRECTORY);
}
public boolean isFile ()
{
checkRead();
return stat (ISFILE);
return _stat (ISFILE);
}
/** @since 1.2 */
public boolean isHidden()
{
checkRead();
return stat (ISHIDDEN);
return _stat (ISHIDDEN);
}
public long lastModified ()
@ -566,8 +566,11 @@ public class File implements Serializable, Comparable
private final static int LENGTH = 1;
private final native long attr (int query);
private final native boolean access (int query);
private final native boolean stat (int query);
// On OSF1 V5.0, `stat' is a macro. It is easiest to use the name
// `_stat' instead. We do the same thing for `_access' just in
// case.
private final native boolean _access (int query);
private final native boolean _stat (int query);
private static final long serialVersionUID = 301077366599181567L;
}

View file

@ -37,7 +37,7 @@ details. */
#include <java/lang/System.h>
jboolean
java::io::File::access (jint query)
java::io::File::_access (jint query)
{
char buf[MAXPATHLEN];
jsize total = JvGetStringUTFRegion (path, 0, path->length(), buf);
@ -59,7 +59,7 @@ java::io::File::access (jint query)
}
jboolean
java::io::File::stat (jint query)
java::io::File::_stat (jint query)
{
char buf[MAXPATHLEN];
jsize total = JvGetStringUTFRegion (path, 0, path->length(), buf);

View file

@ -25,7 +25,7 @@ details. */
#include <java/lang/System.h>
jboolean
java::io::File::access (jint query)
java::io::File::_access (jint query)
{
char buf[MAX_PATH];
jsize total = JvGetStringUTFRegion (path, 0, path->length(), buf);
@ -46,7 +46,7 @@ java::io::File::access (jint query)
}
jboolean
java::io::File::stat (jint query)
java::io::File::_stat (jint query)
{
char buf[MAX_PATH];
jsize total = JvGetStringUTFRegion (path, 0, path->length(), buf);