Lines Matching defs:to
5 * The contents of this file are subject to the Mozilla Public License Version
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
40 * Sun elects to use this software under the MPL license.
118 * item->len to 0.
124 SECITEM_CopyItem(PRArenaPool *arena, SECItem *to, const SECItem *from,
127 to->type = from->type;
130 to->data = (unsigned char*) PORT_ArenaAlloc(arena, from->len,
133 to->data = (unsigned char*) PORT_Alloc(from->len, kmflag);
136 if (!to->data) {
139 PORT_Memcpy(to->data, from->data, from->len);
140 to->len = from->len;
142 to->data = 0;
143 to->len = 0;