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.java453 @Override public void removexattr(String path, String name) throws ErrnoException { in removexattr() method in BlockGuardOs
456 super.removexattr(path, name); in removexattr()
DForwardingOs.java187 …public void removexattr(String path, String name) throws ErrnoException { os.removexattr(path, nam… in removexattr() method in ForwardingOs
DOs.java158 public void removexattr(String path, String name) throws ErrnoException; in removexattr() method
DLinux.java214 public native void removexattr(String path, String name) throws ErrnoException; in removexattr() method in Linux
/libcore/luni/src/test/java/libcore/android/system/
DOsTest.java886 Os.removexattr(path, NAME_TEST); in test_xattr()
927 Os.removexattr(null, NAME_TEST); in test_xattr_NPE()
932 Os.removexattr(path, null); in test_xattr_NPE()
973 Os.removexattr("", NAME_TEST); in test_xattr_Errno()
1010 Os.removexattr(path, NAME_TEST); in test_xattr_Errno()
/libcore/luni/src/main/java/android/system/
DOs.java508 …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.cpp2159 int res = removexattr(path.c_str(), name.c_str()); in Linux_removexattr()
2677 NATIVE_METHOD(Linux, removexattr, "(Ljava/lang/String;Ljava/lang/String;)V"),