Home
last modified time | relevance | path

Searched refs:getxattr (Results 1 – 6 of 6) sorted by relevance

/libcore/luni/src/test/java/libcore/io/
DOsTest.java510 Libcore.os.getxattr(path, NAME_TEST, tmp); in test_xattr()
517 assertEquals(VALUE_CAKE.length, Libcore.os.getxattr(path, NAME_TEST, tmp)); in test_xattr()
528 assertEquals(VALUE_PIE.length, Libcore.os.getxattr(path, NAME_TEST, tmp)); in test_xattr()
533 Libcore.os.getxattr(path, NAME_TEST, tmp); in test_xattr()
/libcore/luni/src/main/java/libcore/io/
DForwardingOs.java99 …public int getxattr(String path, String name, byte[] outValue) throws ErrnoException { return os.g… in getxattr() method in ForwardingOs
DOs.java91 public int getxattr(String path, String name, byte[] outValue) throws ErrnoException; in getxattr() method
DPosix.java93 public native int getxattr(String path, String name, byte[] outValue) throws ErrnoException; in getxattr() method in Posix
/libcore/luni/src/main/java/android/system/
DOs.java224 …ide */ public static int getxattr(String path, String name, byte[] outValue) throws ErrnoException… in getxattr() method in Os
/libcore/luni/src/main/native/
Dlibcore_io_Posix.cpp1182 ssize_t size = getxattr(path.c_str(), name.c_str(), outValue.get(), outValueLength); in Posix_getxattr()
2010 NATIVE_METHOD(Posix, getxattr, "(Ljava/lang/String;Ljava/lang/String;[B)I"),