Searched defs:clone (Results 1 - 7 of 7) sorted by relevance
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/ |
H A D | SLPHeaderV1.java | 369 hdr = (SLPHeaderV1)this.clone(); 455 hdr = (SLPHeaderV1)this.clone(); 851 // Reimplement clone() to get the header size right. 853 public Object clone() method in class:SLPHeaderV1 855 SLPHeaderV1 hdr = (SLPHeaderV1)super.clone();
|
H A D | SLPHeaderV2.java | 1171 // Reimplement clone() to get the header size right. 1173 public Object clone() method in class:SLPHeaderV2 1175 SLPHeaderV2 hdr = (SLPHeaderV2)super.clone();
|
H A D | SrvLocHeader.java | 649 // Allow clients to clone the header. 651 public Object clone() method in class:SrvLocHeader 653 SrvLocHeader hdr = (SrvLocHeader)super.clone();
|
/osnet-11/usr/src/lib/libipsecutil/common/ |
H A D | algs.c | 487 struct ipsecalgent *clone, **holder; local 533 clone = _duplicate_alg(newbie); 534 if (clone != NULL) { 537 current_proto->proto_algs[i] = clone; 558 clone = _duplicate_alg(newbie); 559 if (clone == NULL) { 566 current_proto->proto_algs[i] = clone;
|
/osnet-11/usr/src/lib/pkcs11/libpkcs11/common/ |
H A D | metaObject.c | 135 * Create a clone of the object 224 * Create a clone of the object in the first available slot. 226 * If creating a clone in a specific slot failed, it will 607 * on all the slots on which we have created a clone of this object. 639 * created a clone of this object. 722 * clones that have failed the operation. If any of the deleted clone is the 723 * master clone, use one of the remaining clone as the master clone. 764 * object has no clone, jus 848 slot_object_t *clone = object->clones[slotnum]; local [all...] |
H A D | metaObjectManager.c | 563 slot_object_t *clone; local 565 clone = object->clones[slotnum]; 566 if (clone == NULL) 580 clone->hObject); 590 meta_slot_object_deactivate(clone); 591 meta_slot_object_dealloc(clone); 967 * Create a clone of a non-sensitive and extractable object. 968 * If the template required for creating the clone doesn't exist, 969 * it will be retrieved from the master clone. 1004 /* Create the clone 1524 meta_object_get_clone(meta_object_t *object, CK_ULONG slot_num, slot_session_t *slot_session, slot_object_t **clone) argument [all...] |
/osnet-11/usr/src/lib/libnisdb/ |
H A D | db_dictionary.cc | 623 * This routine clones an entire hash bucket chain. If you clone a 625 * clone of that entry, as well as the entire linked list. This can cause 629 * entires or lose entries. If you wish to clone the entire bucket chain 634 db_dictionary::db_clone_bucket(db_table_desc *bucket, db_table_desc **clone) argument 660 *clone = (db_table_desc *) calloc(1, (size_t) size * sizeof (char)); 661 if (!*clone) { 671 if (!xdr_db_table_desc(&xdrs, *clone)) { 673 free(*clone); 689 db_dictionary::change_table_name(db_table_desc *clone, char *tok, char *repl) argument 695 while (clone) { 842 db_table_desc *bucket, *np, *clone, *next_np; local 948 db_table_desc *tbl = NULL, *clone = NULL, *next_td = NULL; local 1052 db_table_desc *tbl, *clone; local 2240 db_table_desc *clone, *savenext = tbl->next; local [all...] |
Completed in 73 milliseconds