Lines Matching defs:out
94 ALOGE("out of memory allocating output array in get");
345 virtual int32_t sign(const String16& name, const uint8_t* in, size_t inLength, uint8_t** out,
364 *out = (uint8_t*) malloc(ulen);
365 if (*out != NULL) {
366 memcpy((void*) *out, outBuf, ulen);
369 ALOGE("out of memory allocating output array in sign");
430 ALOGE("out of memory allocating output array in get_pubkey");
661 void* out = NULL;
663 int32_t ret = get(name, (uint8_t**) &out, &outSize);
668 memcpy(buf, out, outSize);
669 free(out);
817 void* out = NULL;
819 int32_t ret = sign(name, (const uint8_t*) in, (size_t) inSize, (uint8_t**) &out, &outSize);
821 if (outSize > 0 && out != NULL) {
824 memcpy(buf, out, outSize);
825 free(out);
860 void* out = NULL;
862 int32_t ret = get_pubkey(name, (unsigned char**) &out, &outSize);
864 if (outSize > 0 && out != NULL) {
867 memcpy(buf, out, outSize);
868 free(out);