Home | History | Annotate | Download | only in keystore

Lines Matching refs:orig

87     Value(const uint8_t* orig, int origLen) {
89 memcpy(value, orig, origLen);
102 ValueString(const Value* orig) {
104 length = orig->length;
106 memcpy(value, orig->value, length);