Searched refs:outValue (Results 1 - 5 of 5) sorted by relevance

/libcore/luni/src/main/java/libcore/io/
H A DOs.java91 public int getxattr(String path, String name, byte[] outValue) throws ErrnoException; argument
H A DForwardingOs.java99 public int getxattr(String path, String name, byte[] outValue) throws ErrnoException { return os.getxattr(path, name, outValue); } argument
H A DPosix.java93 public native int getxattr(String path, String name, byte[] outValue) throws ErrnoException; argument
/libcore/luni/src/main/java/android/system/
H A DOs.java218 /** @hide */ public static int getxattr(String path, String name, byte[] outValue) throws ErrnoException { return Libcore.os.getxattr(path, name, outValue); } argument
/libcore/luni/src/main/native/
H A Dlibcore_io_Posix.cpp1075 ScopedBytesRW outValue(env, javaOutValue);
1076 if (outValue.get() == NULL) {
1080 ssize_t size = getxattr(path.c_str(), name.c_str(), outValue.get(), outValueLength);

Completed in 153 milliseconds