Home | History | Annotate | Download | only in keystore

Lines Matching refs:ulen

87             size_t ulen = (size_t) len;
88 const void* buf = reply.readInplace(ulen);
89 *item = (uint8_t*) malloc(ulen);
91 memcpy(*item, buf, ulen);
92 *itemLength = ulen;
362 size_t ulen = (size_t) len;
363 const void* outBuf = reply.readInplace(ulen);
364 *out = (uint8_t*) malloc(ulen);
366 memcpy((void*) *out, outBuf, ulen);
367 *outLength = ulen;
423 size_t ulen = (size_t) len;
424 const void* buf = reply.readInplace(ulen);
425 *pubkey = (uint8_t*) malloc(ulen);
427 memcpy(*pubkey, buf, ulen);
428 *pubkeyLength = ulen;