Home
last modified time | relevance | path

Searched refs:XATTR_CREATE (Results 1 – 3 of 3) sorted by relevance

/libcore/luni/src/test/java/libcore/io/
DOsTest.java521 Libcore.os.setxattr(path, NAME_TEST, VALUE_CAKE, OsConstants.XATTR_CREATE); in test_xattr()
528 Libcore.os.setxattr(path, NAME_TEST, VALUE_PIE, OsConstants.XATTR_CREATE); in test_xattr()
588 Libcore.os.setxattr(null, NAME_TEST, VALUE_CAKE, OsConstants.XATTR_CREATE); in test_xattr_NPE()
592 Libcore.os.setxattr(path, null, VALUE_CAKE, OsConstants.XATTR_CREATE); in test_xattr_NPE()
596 Libcore.os.setxattr(path, NAME_TEST, null, OsConstants.XATTR_CREATE); in test_xattr_NPE()
625 Libcore.os.setxattr("", NAME_TEST, VALUE_CAKE, OsConstants.XATTR_CREATE); in test_xattr_Errno()
635 Libcore.os.setxattr(path, NAME_TEST, VALUE_CAKE, OsConstants.XATTR_CREATE); in test_xattr_Errno()
/libcore/luni/src/main/java/android/system/
DOsConstants.java535 /** @hide */ public static final int XATTR_CREATE = placeholder(); field in OsConstants
/libcore/luni/src/main/native/
Dandroid_system_OsConstants.cpp595 initConstant(env, c, "XATTR_CREATE", XATTR_CREATE); in OsConstants_initConstants()