Home
last modified time | relevance | path

Searched refs:removexattr (Results 1 – 7 of 7) sorted by relevance

/libcore/luni/src/main/java/libcore/io/
DBlockGuardOs.java451 @Override public void removexattr(String path, String name) throws ErrnoException { in removexattr() method in BlockGuardOs
454 super.removexattr(path, name); in removexattr()
DForwardingOs.java188 …public void removexattr(String path, String name) throws ErrnoException { os.removexattr(path, nam… in removexattr() method in ForwardingOs
DOs.java159 public void removexattr(String path, String name) throws ErrnoException; in removexattr() method
DLinux.java215 public native void removexattr(String path, String name) throws ErrnoException; in removexattr() method in Linux
/libcore/luni/src/test/java/libcore/android/system/
DOsTest.java787 Os.removexattr(path, NAME_TEST); in test_xattr()
828 Os.removexattr(null, NAME_TEST); in test_xattr_NPE()
833 Os.removexattr(path, null); in test_xattr_NPE()
874 Os.removexattr("", NAME_TEST); in test_xattr_Errno()
911 Os.removexattr(path, NAME_TEST); in test_xattr_Errno()
/libcore/luni/src/main/java/android/system/
DOs.java505 …public static void removexattr(String path, String name) throws ErrnoException { Libcore.os.remove… in removexattr() method in Os
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp2156 int res = removexattr(path.c_str(), name.c_str()); in Linux_removexattr()
2674 NATIVE_METHOD(Linux, removexattr, "(Ljava/lang/String;Ljava/lang/String;)V"),