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

/system/security/keystore/
H A Dkeystore_client.cpp41 size_t argLen = va_arg(vl, size_t); local
44 if (argLen > KEYSTORE_MESSAGE_SIZE) {
45 ALOGE("code called us with an argLen out of bounds: %llu", (unsigned long long) argLen);
50 uint8_t bytes[2] = { argLen >> 8, argLen };
52 || TEMP_FAILURE_RETRY(send(sock, arg, argLen, MSG_NOSIGNAL))
53 != static_cast<ssize_t>(argLen)) {

Completed in 55 milliseconds