Searched refs:getxattr (Results 1 - 6 of 6) sorted by path

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

Completed in 249 milliseconds