/third_party/musl/libc-test/src/functionalext/supplement/linux/linux_gtest/ |
D | linux_setxattr_test.cpp | 23 int result = setxattr(nullptr, nullptr, nullptr, -1, -1); 43 int setResult = setxattr(filePath, attrName, attrValue, strlen(attrValue), XATTR_CREATE);
|
D | linux_getxattr_test.cpp | 41 int setResult = setxattr(filePath, attrName, attrValue, strlen(attrValue), XATTR_CREATE);
|
/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
D | setxattr.c | 46 int result = setxattr(path, name, value, strlen(value), XATTR_CREATE); in setxattr_0100() 82 int result = setxattr(NULL, NULL, NULL, -1, -1); in setxattr_0200()
|
D | getxattr.c | 42 int ret = setxattr(path, name, value, strlen(value), XATTR_CREATE); in getxattr_0100()
|
D | listxattr.c | 48 int ret = setxattr(path, name, value, strlen(value), XATTR_CREATE); in listxattr_0100()
|
D | removexattr.c | 46 int result = setxattr(path, name, value, strlen(value), XATTR_CREATE); in removexattr_0100()
|
D | test_src_functionalext_supplement_linux.gni | 34 "setxattr",
|
/third_party/ltp/testcases/kernel/syscalls/setxattr/ |
D | setxattr03.c | 84 TEST(setxattr(tc[i].fname, tc[i].key, tc[i].value, tc[i].size, in verify_setxattr() 132 if (setxattr("testfile", "user.test", "test", 4, XATTR_CREATE) == -1) in setup()
|
D | setxattr01.c | 144 TEST(setxattr(FNAME, tc[i].key, *tc[i].value, tc[i].size, tc[i].flags)); in verify_setxattr()
|
/third_party/musl/docs/ |
D | status.md | 123 - setxattr 156 - setxattr
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
D | xattr.h | 20 int setxattr(const char *, const char *, const void *, size_t, int);
|
/third_party/musl/include/sys/ |
D | xattr.h | 20 int setxattr(const char *, const char *, const void *, size_t, int);
|
/third_party/musl/ndk_musl_include/sys/ |
D | xattr.h | 20 int setxattr(const char *, const char *, const void *, size_t, int);
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
D | xattr.h | 20 int setxattr(const char *, const char *, const void *, size_t, int);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
D | xattr.h | 20 int setxattr(const char *, const char *, const void *, size_t, int);
|
/third_party/toybox/toys/other/ |
D | setfattr.c | 37 else rc = (h?lsetxattr:setxattr)(*s, TT.n, TT.v, TT.v?strlen(TT.v):0, 0); in setfattr_main()
|
/third_party/selinux/libselinux/src/ |
D | setfilecon.c | 12 int rc = setxattr(path, XATTR_NAME_SELINUX, context, strlen(context) + 1, in setfilecon_raw()
|
D | fsetfilecon.c | 28 rc = setxattr(buf, name, value, size, flags); in fsetxattr_wrapper()
|
/third_party/python/Lib/test/support/ |
D | os_helper.py | 212 os.setxattr(tmp_fp, b"user.test", b"") 213 os.setxattr(tmp_name, b"trusted.foo", b"42") 214 os.setxattr(fp.fileno(), b"user.test", b"")
|
/third_party/ltp/testcases/kernel/syscalls/getxattr/ |
D | getxattr03.c | 95 if (setxattr(TESTFILE, XATTR_TEST_KEY, XATTR_TEST_VALUE, in setup()
|
D | getxattr02.c | 132 if (setxattr("testfile", "user.test", "test", 4, XATTR_CREATE) == -1) in setup()
|
D | getxattr01.c | 155 if (setxattr(filename, XATTR_TEST_KEY, XATTR_TEST_VALUE, in setup()
|
/third_party/ltp/testcases/kernel/syscalls/removexattr/ |
D | removexattr01.c | 74 n = setxattr("testfile", USER_KEY, VALUE, VALUE_SIZE, XATTR_CREATE); in verify_removexattr()
|
/third_party/toybox/lib/ |
D | portability.c | 319 return setxattr(path, name, value, size, 0, flags); in xattr_set() 325 return setxattr(path, name, value, size, 0, flags | XATTR_NOFOLLOW); in xattr_lset() 369 return setxattr(path, name, value, size, flags); in xattr_set()
|
/third_party/musl/src/linux/ |
D | xattr.c | 34 int setxattr(const char *path, const char *name, const void *value, size_t size, int flags) in setxattr() function
|