Searched defs:valueLength (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/native/
H A Dlibcore_io_Linux.cpp1491 ssize_t valueLength; local
1492 if ((valueLength = getxattr(path.c_str(), name.c_str(), NULL, 0)) < 0) {
1498 std::vector<char> buf(valueLength);
1499 if ((valueLength = getxattr(path.c_str(), name.c_str(), buf.data(), valueLength)) < 0) {
1508 jbyteArray array = env->NewByteArray(valueLength);
1512 env->SetByteArrayRegion(array, 0, valueLength, reinterpret_cast<const jbyte*>(buf.data()));
1739 ssize_t valueLength; local
1740 if ((valueLength = listxattr(path.c_str(), NULL, 0)) < 0) {
1746 std::string buf(valueLength, '\
2278 size_t valueLength = env->GetArrayLength(javaValue); local
[all...]

Completed in 70 milliseconds